Merge remote-tracking branch 'origin/dev' into feature/tools-system

This commit is contained in:
Oleg Yermolenko 2025-12-04 10:36:44 +02:00
commit 5f5a8fa7bd
119 changed files with 3183 additions and 828 deletions

View file

@ -5,6 +5,79 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.6.41] - 2025-12-02
### Added
- 🚦 Sign-in rate limiting was implemented to protect against brute force attacks, limiting login attempts to 15 per 3-minute window per email address using Redis with automatic fallback to in-memory storage when Redis is unavailable. [Commit](https://github.com/open-webui/open-webui/commit/7b166370432414ce8f186747fb098e0c70fb2d6b)
- 📂 Administrators can now globally disable the folders feature and control user-level folder permissions through the admin panel, enabling minimalist interface configurations for deployments that don't require workspace organization features. [#19529](https://github.com/open-webui/open-webui/pull/19529), [#19210](https://github.com/open-webui/open-webui/discussions/19210), [#18459](https://github.com/open-webui/open-webui/discussions/18459), [#18299](https://github.com/open-webui/open-webui/discussions/18299)
- 👥 Group channels were introduced as a new channel type enabling membership-based collaboration spaces where users explicitly join as members rather than accessing through permissions, with support for public or private visibility, automatic member inclusion from specified user groups, member role tracking with invitation metadata, and post-creation member management allowing channel managers to add or remove members through the channel info modal. [Commit](https://github.com/open-webui/open-webui/commit/f589b7c1895a6a77166c047891acfa21bc0936c4), [Commit](https://github.com/open-webui/open-webui/commit/3f1d9ccbf8443a2fa5278f36202bad930a216680)
- 💬 Direct Message channels were introduced with a dedicated channel type selector and multi-user member selection interface, enabling private conversations between specific users without requiring full channel visibility. [Commit](https://github.com/open-webui/open-webui/commit/64b4d5d9c280b926746584aaf92b447d09deb386)
- 📨 Direct Message channels now support a complete user-to-user messaging system with member-based access control, automatic deduplication for one-on-one conversations, optional channel naming, and distinct visual presentation using participant avatars instead of channel icons. [Commit](https://github.com/open-webui/open-webui/commit/acccb9afdd557274d6296c70258bb897bbb6652f)
- 🙈 Users can now hide Direct Message channels from their sidebar while preserving message history, with automatic reactivation when new messages arrive from other participants, providing a cleaner interface for managing active conversations. [Commit](https://github.com/open-webui/open-webui/commit/acccb9afdd557274d6296c70258bb897bbb6652f)
- ☑️ A comprehensive user selection component was added to the channel creation modal, featuring search functionality, sortable user lists, pagination support, and multi-select checkboxes for building Direct Message participant lists. [Commit](https://github.com/open-webui/open-webui/commit/acccb9afdd557274d6296c70258bb897bbb6652f)
- 🔴 Channel unread message count tracking was implemented with visual badge indicators in the sidebar, automatically updating counts in real-time and marking messages as read when users view channels, with join/leave functionality to manage membership status. [Commit](https://github.com/open-webui/open-webui/commit/64b4d5d9c280b926746584aaf92b447d09deb386)
- 📌 Message pinning functionality was added to channels, allowing users to pin important messages for easy reference with visual highlighting, a dedicated pinned messages modal accessible from the navbar, and complete backend support for tracking pinned status, pin timestamp, and the user who pinned each message. [Commit](https://github.com/open-webui/open-webui/commit/64b4d5d9c280b926746584aaf92b447d09deb386), [Commit](https://github.com/open-webui/open-webui/commit/aae2fce17355419d9c29f8100409108037895201)
- 🟢 Direct Message channels now display an active status indicator for one-on-one conversations, showing a green dot when the other participant is currently online or a gray dot when offline. [Commit](https://github.com/open-webui/open-webui/commit/4b6773885cd7527c5a56b963781dac5e95105eec), [Commit](https://github.com/open-webui/open-webui/commit/39645102d14f34e71b34e5ddce0625790be33f6f)
- 🆔 Users can now start Direct Message conversations directly from user profile previews by clicking the "Message" button, enabling quick access to private messaging without navigating away from the current channel. [Commit](https://github.com/open-webui/open-webui/commit/a0826ec9fedb56320532616d568fa59dda831d4e)
- ⚡ Channel messages now appear instantly when sent using optimistic UI rendering, displaying with a pending state while the server confirms delivery, providing a more responsive messaging experience. [Commit](https://github.com/open-webui/open-webui/commit/25994dd3da90600401f53596d4e4fb067c1b8eaa)
- 👍 Channel message reactions now display the names of users who reacted when hovering over the emoji, showing up to three names with a count for additional reactors. [Commit](https://github.com/open-webui/open-webui/commit/05e79bdd0c7af70b631e958924e3656db1013b80)
- 🛠️ Channel creators can now edit and delete their own group and DM channels without requiring administrator privileges, enabling users to manage the channels they create independently. [Commit](https://github.com/open-webui/open-webui/commit/f589b7c1895a6a77166c047891acfa21bc0936c4)
- 🔌 A new API endpoint was added to directly get or create a Direct Message channel with a specific user by their ID, streamlining programmatic DM channel creation for integrations and frontend workflows. [Commit](https://github.com/open-webui/open-webui/commit/f589b7c1895a6a77166c047891acfa21bc0936c4)
- 💭 Users can now set a custom status with an emoji and message that displays in profile previews, the sidebar user menu, and Direct Message channel items in the sidebar, with the ability to clear status at any time, providing visibility into availability or current focus similar to team communication platforms. [Commit](https://github.com/open-webui/open-webui/commit/51621ba91a982e52da168ce823abffd11ad3e4fa), [Commit](https://github.com/open-webui/open-webui/commit/f5e8d4d5a004115489c35725408b057e24dfe318)
- 📤 A group export API endpoint was added, enabling administrators to export complete group data including member lists for backup and migration purposes. [Commit](https://github.com/open-webui/open-webui/commit/09b6ea38c579659f8ca43ae5ea3746df3ac561ad)
- 📡 A new API endpoint was added to retrieve all users belonging to a specific group, enabling programmatic access to group membership information for administrative workflows. [Commit](https://github.com/open-webui/open-webui/commit/01868e856a10f474f74fbd1b4425dafdf949222f)
- 👁️ The admin user list now displays an active status indicator next to each user, showing a visual green dot for users who have been active within the last three minutes. [Commit](https://github.com/open-webui/open-webui/commit/1b095d12ff2465b83afa94af89ded9593f8a8655)
- 🔑 The admin user edit modal now displays OAuth identity information with a per-provider breakdown, showing each linked identity provider and its associated subject identifier separately. [#19573](https://github.com/open-webui/open-webui/pull/19573)
- 🧩 OAuth role claim parsing now respects the "OAUTH_ROLES_SEPARATOR" configuration, enabling proper parsing of roles returned as comma-separated strings and providing consistent behavior with group claim handling. [#19514](https://github.com/open-webui/open-webui/pull/19514)
- 🎛️ Channel feature access can now be controlled through both the "USER_PERMISSIONS_FEATURES_CHANNELS" environment variable and group permission toggles in the admin panel, allowing administrators to restrict channel functionality for specific users or groups while defaulting to enabled for all users. [Commit](https://github.com/open-webui/open-webui/commit/f589b7c1895a6a77166c047891acfa21bc0936c4)
- 🎨 The model editor interface was refined with access control settings moved to a dedicated modal, group member counts now displayed when configuring permissions, reorganized layout with improved visual hierarchy, and redesigned prompt suggestions cards with tooltips for field guidance. [Commit](https://github.com/open-webui/open-webui/commit/e65d92fc6f49da5ca059e1c65a729e7973354b99), [Commit](https://github.com/open-webui/open-webui/commit/9d39b9b42c653ee2acf2674b2df343ecbceb4954)
- 🏗️ Knowledge base file management was rebuilt with a dedicated database table replacing the previous JSON array storage, enabling pagination support for large knowledge bases, significantly faster file listing performance, and more reliable file-knowledge base relationship tracking. [Commit](https://github.com/open-webui/open-webui/commit/d19023288e2ca40f86e2dc3fd9f230540f3e70d7)
- ☁️ Azure Document Intelligence model selection was added, allowing administrators to specify which model to use for document processing via the "DOCUMENT_INTELLIGENCE_MODEL" environment variable or admin UI setting, with "prebuilt-layout" as the default. [#19692](https://github.com/open-webui/open-webui/pull/19692), [Docs:#872](https://github.com/open-webui/docs/pull/872)
- 🚀 Milvus multitenancy vector database performance was improved by removing manual flush calls after upsert operations, eliminating rate limit errors and reducing load on etcd and MinIO/S3 storage by allowing Milvus to manage segment persistence automatically via its WAL and auto-flush policies. [#19680](https://github.com/open-webui/open-webui/pull/19680)
- ✨ Various improvements were implemented across the frontend and backend to enhance performance, stability, and security.
- 🌍 Translations for German, French, Portuguese (Brazil), Catalan, Simplified Chinese, and Traditional Chinese were enhanced and expanded.
### Fixed
- 🔄 Tool call response token duplication was fixed by removing redundant message history additions in non-native function calling mode, resolving an issue where tool results were included twice in the context and causing 2x token consumption. [#19656](https://github.com/open-webui/open-webui/issues/19656), [Commit](https://github.com/open-webui/open-webui/commit/52ccab8)
- 🛡️ Web search domain filtering was corrected to properly block results when any resolved hostname or IP address matches a blocked domain, preventing blocked sites from appearing in search results due to permissive hostname resolution logic that previously allowed results through if any single resolved address passed the filter. [#19670](https://github.com/open-webui/open-webui/pull/19670), [#19669](https://github.com/open-webui/open-webui/issues/19669)
- 🧠 Custom models based on Ollama or OpenAI now properly inherit the connection type from their base model, ensuring they appear correctly in the "Local" or "External" model selection tabs instead of only appearing under "All". [#19183](https://github.com/open-webui/open-webui/issues/19183), [Commit](https://github.com/open-webui/open-webui/commit/39f7575)
- 🐍 SentenceTransformers embedding initialization was fixed by updating the transformers dependency to version 4.57.3, resolving a regression in v0.6.40 where document ingestion failed with "'NoneType' object has no attribute 'encode'" errors due to a bug in transformers 4.57.2. [#19512](https://github.com/open-webui/open-webui/issues/19512), [#19513](https://github.com/open-webui/open-webui/pull/19513)
- 📈 Active user count accuracy was significantly improved by replacing the socket-based USER_POOL tracking with a database-backed heartbeat mechanism, resolving long-standing issues where Redis deployments displayed inflated user counts due to stale sessions never being cleaned up on disconnect. [#16074](https://github.com/open-webui/open-webui/discussions/16074), [Commit](https://github.com/open-webui/open-webui/commit/70948f8803e417459d5203839f8077fdbfbbb213)
- 👥 Default group assignment now applies consistently across all user registration methods including OAuth/SSO, LDAP, and admin-created users, fixing an issue where the "DEFAULT_GROUP_ID" setting was only being applied to users who signed up via the email/password signup form. [#19685](https://github.com/open-webui/open-webui/pull/19685)
- 🔦 Model list filtering in workspaces was corrected to properly include models shared with user groups, ensuring members can view models they have write access to through group permissions. [#19461](https://github.com/open-webui/open-webui/issues/19461), [Commit](https://github.com/open-webui/open-webui/commit/69722ba973768a5f689f2e2351bf583a8db9bba8)
- 🖼️ User profile image display in preview contexts was fixed by resolving a Pydantic validation error that prevented proper rendering. [Commit](https://github.com/open-webui/open-webui/commit/c7eb7136893b0ddfdc5d55ffc7a05bd84a00f5d6)
- 🔒 Redis TLS connection failures were resolved by updating the python-socketio dependency to version 5.15.0, restoring support for the "rediss://" URL schema. [#19480](https://github.com/open-webui/open-webui/issues/19480), [#19488](https://github.com/open-webui/open-webui/pull/19488)
- 📝 MCP tool server configuration was corrected to properly handle the "Function Name Filter List" as both string and list types, preventing AttributeError when the field is empty and ensuring backward compatibility. [#19486](https://github.com/open-webui/open-webui/issues/19486), [Commit](https://github.com/open-webui/open-webui/commit/c5b73d71843edc024325d4a6e625ec939a747279), [Commit](https://github.com/open-webui/open-webui/commit/477097c2e42985c14892301d0127314629d07df1)
- 📎 Web page attachment failures causing TypeError on metadata checks were resolved by correcting async threadpool parameter passing in vector database operations. [#19493](https://github.com/open-webui/open-webui/issues/19493), [Commit](https://github.com/open-webui/open-webui/commit/4370dee79e19d77062c03fba81780cb3b779fca3)
- 💾 Model allowlist persistence in multi-worker deployments was fixed by implementing Redis-based shared state for the internal models dictionary, ensuring configuration changes are consistently visible across all worker processes. [#19395](https://github.com/open-webui/open-webui/issues/19395), [Commit](https://github.com/open-webui/open-webui/commit/b5e5617d7f7ad3e4eec9f15f4cc7f07cb5afc2fa)
- ⏳ Chat history infinite loading was prevented by enhancing message data structure to properly track parent message relationships, resolving issues where missing parentId fields caused perpetual loading states. [#19225](https://github.com/open-webui/open-webui/issues/19225), [Commit](https://github.com/open-webui/open-webui/commit/ff4b1b9862d15adfa15eac17d2ce066c3d8ae38f)
- 🩹 Database migration robustness was improved by automatically detecting and correcting missing primary key constraints on the user table, ensuring successful schema upgrades for databases with non-standard configurations. [#19487](https://github.com/open-webui/open-webui/discussions/19487), [Commit](https://github.com/open-webui/open-webui/commit/453ea9b9a167c0b03d86c46e6efd086bf10056ce)
- 🏷️ OAuth group assignment now updates correctly on first login when users transition from admin to user role, ensuring group memberships reflect immediately when group management is enabled. [#19475](https://github.com/open-webui/open-webui/issues/19475), [#19476](https://github.com/open-webui/open-webui/pull/19476)
- 💡 Knowledge base file tooltips now properly display the parent collection name when referencing files with the hash symbol, preventing confusion between identically-named files in different collections. [#19491](https://github.com/open-webui/open-webui/issues/19491), [Commit](https://github.com/open-webui/open-webui/commit/3fe5a47b0ff84ac97f8e4ff56a19fa2ec065bf66)
- 🔐 Knowledge base file access inconsistencies were resolved where authorized non-admin users received "Not found" or permission errors for certain files due to race conditions during upload causing mismatched collection_name values, with file access validation now properly checking against knowledge base file associations. [#18689](https://github.com/open-webui/open-webui/issues/18689), [#19523](https://github.com/open-webui/open-webui/pull/19523), [Commit](https://github.com/open-webui/open-webui/commit/e301d1962e45900ababd3eabb7e9a2ad275a5761)
- 📦 Knowledge API batch file addition endpoint was corrected to properly handle async operations, resolving 500 Internal Server Error responses when adding multiple files simultaneously. [#19538](https://github.com/open-webui/open-webui/issues/19538), [Commit](https://github.com/open-webui/open-webui/commit/28659f60d94feb4f6a99bb1a5b54d7f45e5ea10f)
- 🤖 Embedding model auto-update functionality was fixed to properly respect the "RAG_EMBEDDING_MODEL_AUTO_UPDATE" setting by correctly passing the flag to the model path resolver, ensuring models update as expected when the auto-update option is enabled. [#19687](https://github.com/open-webui/open-webui/pull/19687)
- 📉 API response payload sizes were dramatically reduced by removing base64-encoded profile images from most endpoints, eliminating multi-megabyte responses caused by high-resolution avatars and enabling better browser caching. [#19519](https://github.com/open-webui/open-webui/issues/19519), [Commit](https://github.com/open-webui/open-webui/commit/384753c4c17f62a68d38af4bbcf55a21ee08e0f2)
- 📞 Redundant API calls on the admin user overview page were eliminated by consolidating reactive statements, reducing four duplicate requests to a single efficient call and significantly improving page load performance. [#19509](https://github.com/open-webui/open-webui/issues/19509), [Commit](https://github.com/open-webui/open-webui/commit/9f89cc5e9f7e1c6c9e2bc91177e08df7c79f66f9)
- 🧹 Duplicate API calls on the workspace models page were eliminated by removing redundant model list fetching, reducing two identical requests to a single call and improving page responsiveness. [#19517](https://github.com/open-webui/open-webui/issues/19517), [Commit](https://github.com/open-webui/open-webui/commit/d1bbf6be7a4d1d53fa8ad46ca4f62fc4b2e6a8cb)
- 🔘 The model valves button was corrected to prevent unintended form submission by adding explicit button type attribute, ensuring it no longer triggers message sending when the input area contains text. [#19534](https://github.com/open-webui/open-webui/pull/19534)
- 🗑️ Ollama model deletion was fixed by correcting the request payload format and ensuring the model selector properly displays the placeholder option. [Commit](https://github.com/open-webui/open-webui/commit/0f3156651c64bc5af188a65fc2908bdcecf30c74)
- 🎨 Image generation in temporary chats was fixed by correctly handling local chat sessions that are not persisted to the database. [Commit](https://github.com/open-webui/open-webui/commit/a7c7993bbf3a21cb7ba416525b89233cf2ad877f)
- 🕵️‍♂️ Audit logging was fixed by correctly awaiting the async user authentication call, resolving failures where coroutine objects were passed instead of user data. [#19658](https://github.com/open-webui/open-webui/pull/19658), [Commit](https://github.com/open-webui/open-webui/commit/dba86bc)
- 🌙 Dark mode select dropdown styling was corrected to use proper background colors, fixing an issue where dropdown borders and hover states appeared white instead of matching the dark theme. [#19693](https://github.com/open-webui/open-webui/pull/19693), [#19442](https://github.com/open-webui/open-webui/issues/19442)
- 🔍 Milvus vector database query filtering was fixed by correcting string quote handling in filter expressions and using the proper parameter name for queries, resolving false "duplicate content detected" errors that prevented uploading multiple files to knowledge bases. [#19602](https://github.com/open-webui/open-webui/pull/19602), [#18119](https://github.com/open-webui/open-webui/issues/18119), [#16345](https://github.com/open-webui/open-webui/issues/16345), [#17088](https://github.com/open-webui/open-webui/issues/17088), [#18485](https://github.com/open-webui/open-webui/issues/18485)
- 🆙 Milvus multitenancy vector database was updated to use query_iterator() for improved robustness and consistency with the standard Milvus implementation, fixing the same false duplicate detection errors and improving handling of large result sets in multi-tenant deployments. [#19695](https://github.com/open-webui/open-webui/pull/19695)
### Changed
- ⚠️ **IMPORTANT for Multi-Instance Deployments** — This release includes database schema changes; multi-worker, multi-server, or load-balanced deployments must update all instances simultaneously rather than performing rolling updates, as running mixed versions will cause application failures due to schema incompatibility between old and new instances.
- 👮 Channel creation is now restricted to administrators only, with the channel add button hidden for regular users to maintain organizational control over communication channels. [Commit](https://github.com/open-webui/open-webui/commit/421aba7cd7cd708168b1f2565026c74525a67905)
- The active user count indicator was removed from the bottom-left user menu in the sidebar to streamline the interface. [Commit](https://github.com/open-webui/open-webui/commit/848f3fd4d86ca66656e0ff0335773945af8d7d8d)
- 🗂️ The user table was restructured with API keys migrated to a dedicated table supporting future multi-key functionality, OAuth data storage converted to a JSON structure enabling multiple identity providers per user account, and internal column types optimized from TEXT to JSON for the "info" and "settings" fields, with automatic migration preserving all existing data and associations. [#19573](https://github.com/open-webui/open-webui/pull/19573)
- 🔄 The knowledge base API was restructured to support the new file relationship model.
## [0.6.40] - 2025-11-25 ## [0.6.40] - 2025-11-25
### Fixed ### Fixed

View file

@ -1,4 +1,4 @@
Copyright (c) 2023-2025 Timothy Jaeryang Baek (Open WebUI) Copyright (c) 2023- Open WebUI Inc. [Created by Timothy Jaeryang Baek]
All rights reserved. All rights reserved.
Redistribution and use in source and binary forms, with or without Redistribution and use in source and binary forms, with or without

View file

@ -2590,6 +2590,12 @@ DOCUMENT_INTELLIGENCE_KEY = PersistentConfig(
os.getenv("DOCUMENT_INTELLIGENCE_KEY", ""), os.getenv("DOCUMENT_INTELLIGENCE_KEY", ""),
) )
DOCUMENT_INTELLIGENCE_MODEL = PersistentConfig(
"DOCUMENT_INTELLIGENCE_MODEL",
"rag.document_intelligence_model",
os.getenv("DOCUMENT_INTELLIGENCE_MODEL", "prebuilt-layout"),
)
MISTRAL_OCR_API_BASE_URL = PersistentConfig( MISTRAL_OCR_API_BASE_URL = PersistentConfig(
"MISTRAL_OCR_API_BASE_URL", "MISTRAL_OCR_API_BASE_URL",
"rag.MISTRAL_OCR_API_BASE_URL", "rag.MISTRAL_OCR_API_BASE_URL",

View file

@ -273,6 +273,7 @@ from open_webui.config import (
DOCLING_PARAMS, DOCLING_PARAMS,
DOCUMENT_INTELLIGENCE_ENDPOINT, DOCUMENT_INTELLIGENCE_ENDPOINT,
DOCUMENT_INTELLIGENCE_KEY, DOCUMENT_INTELLIGENCE_KEY,
DOCUMENT_INTELLIGENCE_MODEL,
MISTRAL_OCR_API_BASE_URL, MISTRAL_OCR_API_BASE_URL,
MISTRAL_OCR_API_KEY, MISTRAL_OCR_API_KEY,
RAG_TEXT_SPLITTER, RAG_TEXT_SPLITTER,
@ -871,6 +872,7 @@ app.state.config.DOCLING_API_KEY = DOCLING_API_KEY
app.state.config.DOCLING_PARAMS = DOCLING_PARAMS app.state.config.DOCLING_PARAMS = DOCLING_PARAMS
app.state.config.DOCUMENT_INTELLIGENCE_ENDPOINT = DOCUMENT_INTELLIGENCE_ENDPOINT app.state.config.DOCUMENT_INTELLIGENCE_ENDPOINT = DOCUMENT_INTELLIGENCE_ENDPOINT
app.state.config.DOCUMENT_INTELLIGENCE_KEY = DOCUMENT_INTELLIGENCE_KEY app.state.config.DOCUMENT_INTELLIGENCE_KEY = DOCUMENT_INTELLIGENCE_KEY
app.state.config.DOCUMENT_INTELLIGENCE_MODEL = DOCUMENT_INTELLIGENCE_MODEL
app.state.config.MISTRAL_OCR_API_BASE_URL = MISTRAL_OCR_API_BASE_URL app.state.config.MISTRAL_OCR_API_BASE_URL = MISTRAL_OCR_API_BASE_URL
app.state.config.MISTRAL_OCR_API_KEY = MISTRAL_OCR_API_KEY app.state.config.MISTRAL_OCR_API_KEY = MISTRAL_OCR_API_KEY
app.state.config.MINERU_API_MODE = MINERU_API_MODE app.state.config.MINERU_API_MODE = MINERU_API_MODE
@ -982,9 +984,7 @@ app.state.YOUTUBE_LOADER_TRANSLATION = None
try: try:
app.state.ef = get_ef( app.state.ef = get_ef(
app.state.config.RAG_EMBEDDING_ENGINE, app.state.config.RAG_EMBEDDING_ENGINE, app.state.config.RAG_EMBEDDING_MODEL
app.state.config.RAG_EMBEDDING_MODEL,
RAG_EMBEDDING_MODEL_AUTO_UPDATE,
) )
if ( if (
app.state.config.ENABLE_RAG_HYBRID_SEARCH app.state.config.ENABLE_RAG_HYBRID_SEARCH
@ -995,7 +995,6 @@ try:
app.state.config.RAG_RERANKING_MODEL, app.state.config.RAG_RERANKING_MODEL,
app.state.config.RAG_EXTERNAL_RERANKER_URL, app.state.config.RAG_EXTERNAL_RERANKER_URL,
app.state.config.RAG_EXTERNAL_RERANKER_API_KEY, app.state.config.RAG_EXTERNAL_RERANKER_API_KEY,
RAG_RERANKING_MODEL_AUTO_UPDATE,
) )
else: else:
app.state.rf = None app.state.rf = None
@ -2086,7 +2085,7 @@ except Exception as e:
) )
async def register_client(self, request, client_id: str) -> bool: async def register_client(request, client_id: str) -> bool:
server_type, server_id = client_id.split(":", 1) server_type, server_id = client_id.split(":", 1)
connection = None connection = None

View file

@ -0,0 +1,169 @@
"""Add knowledge_file table
Revision ID: 3e0e00844bb0
Revises: 90ef40d4714e
Create Date: 2025-12-02 06:54:19.401334
"""
from typing import Sequence, Union
from alembic import op
import sqlalchemy as sa
from sqlalchemy import inspect
import open_webui.internal.db
import time
import json
import uuid
# revision identifiers, used by Alembic.
revision: str = "3e0e00844bb0"
down_revision: Union[str, None] = "90ef40d4714e"
branch_labels: Union[str, Sequence[str], None] = None
depends_on: Union[str, Sequence[str], None] = None
def upgrade() -> None:
op.create_table(
"knowledge_file",
sa.Column("id", sa.Text(), primary_key=True),
sa.Column("user_id", sa.Text(), nullable=False),
sa.Column(
"knowledge_id",
sa.Text(),
sa.ForeignKey("knowledge.id", ondelete="CASCADE"),
nullable=False,
),
sa.Column(
"file_id",
sa.Text(),
sa.ForeignKey("file.id", ondelete="CASCADE"),
nullable=False,
),
sa.Column("created_at", sa.BigInteger(), nullable=False),
sa.Column("updated_at", sa.BigInteger(), nullable=False),
# indexes
sa.Index("ix_knowledge_file_knowledge_id", "knowledge_id"),
sa.Index("ix_knowledge_file_file_id", "file_id"),
sa.Index("ix_knowledge_file_user_id", "user_id"),
# unique constraints
sa.UniqueConstraint(
"knowledge_id", "file_id", name="uq_knowledge_file_knowledge_file"
), # prevent duplicate entries
)
connection = op.get_bind()
# 2. Read existing group with user_ids JSON column
knowledge_table = sa.Table(
"knowledge",
sa.MetaData(),
sa.Column("id", sa.Text()),
sa.Column("user_id", sa.Text()),
sa.Column("data", sa.JSON()), # JSON stored as text in SQLite + PG
)
results = connection.execute(
sa.select(
knowledge_table.c.id, knowledge_table.c.user_id, knowledge_table.c.data
)
).fetchall()
# 3. Insert members into group_member table
kf_table = sa.Table(
"knowledge_file",
sa.MetaData(),
sa.Column("id", sa.Text()),
sa.Column("user_id", sa.Text()),
sa.Column("knowledge_id", sa.Text()),
sa.Column("file_id", sa.Text()),
sa.Column("created_at", sa.BigInteger()),
sa.Column("updated_at", sa.BigInteger()),
)
file_table = sa.Table(
"file",
sa.MetaData(),
sa.Column("id", sa.Text()),
)
now = int(time.time())
for knowledge_id, user_id, data in results:
if not data:
continue
if isinstance(data, str):
try:
data = json.loads(data)
except Exception:
continue # skip invalid JSON
if not isinstance(data, dict):
continue
file_ids = data.get("file_ids", [])
for file_id in file_ids:
file_exists = connection.execute(
sa.select(file_table.c.id).where(file_table.c.id == file_id)
).fetchone()
if not file_exists:
continue # skip non-existing files
row = {
"id": str(uuid.uuid4()),
"user_id": user_id,
"knowledge_id": knowledge_id,
"file_id": file_id,
"created_at": now,
"updated_at": now,
}
connection.execute(kf_table.insert().values(**row))
with op.batch_alter_table("knowledge") as batch:
batch.drop_column("data")
def downgrade() -> None:
# 1. Add back the old data column
op.add_column("knowledge", sa.Column("data", sa.JSON(), nullable=True))
connection = op.get_bind()
# 2. Read knowledge_file entries and reconstruct data JSON
knowledge_table = sa.Table(
"knowledge",
sa.MetaData(),
sa.Column("id", sa.Text()),
sa.Column("data", sa.JSON()),
)
kf_table = sa.Table(
"knowledge_file",
sa.MetaData(),
sa.Column("id", sa.Text()),
sa.Column("knowledge_id", sa.Text()),
sa.Column("file_id", sa.Text()),
)
results = connection.execute(sa.select(knowledge_table.c.id)).fetchall()
for (knowledge_id,) in results:
file_ids = connection.execute(
sa.select(kf_table.c.file_id).where(kf_table.c.knowledge_id == knowledge_id)
).fetchall()
file_ids_list = [fid for (fid,) in file_ids]
data_json = {"file_ids": file_ids_list}
connection.execute(
knowledge_table.update()
.where(knowledge_table.c.id == knowledge_id)
.values(data=data_json)
)
# 3. Drop the knowledge_file table
op.drop_table("knowledge_file")

View file

@ -7,13 +7,21 @@ import uuid
from open_webui.internal.db import Base, get_db from open_webui.internal.db import Base, get_db
from open_webui.env import SRC_LOG_LEVELS from open_webui.env import SRC_LOG_LEVELS
from open_webui.models.files import FileMetadataResponse from open_webui.models.files import File, FileModel, FileMetadataResponse
from open_webui.models.groups import Groups from open_webui.models.groups import Groups
from open_webui.models.users import Users, UserResponse from open_webui.models.users import Users, UserResponse
from pydantic import BaseModel, ConfigDict from pydantic import BaseModel, ConfigDict
from sqlalchemy import BigInteger, Column, String, Text, JSON from sqlalchemy import (
BigInteger,
Column,
ForeignKey,
String,
Text,
JSON,
UniqueConstraint,
)
from open_webui.utils.access_control import has_access from open_webui.utils.access_control import has_access
@ -34,9 +42,7 @@ class Knowledge(Base):
name = Column(Text) name = Column(Text)
description = Column(Text) description = Column(Text)
data = Column(JSON, nullable=True)
meta = Column(JSON, nullable=True) meta = Column(JSON, nullable=True)
access_control = Column(JSON, nullable=True) # Controls data access levels. access_control = Column(JSON, nullable=True) # Controls data access levels.
# Defines access control rules for this entry. # Defines access control rules for this entry.
# - `None`: Public access, available to all users with the "user" role. # - `None`: Public access, available to all users with the "user" role.
@ -67,7 +73,6 @@ class KnowledgeModel(BaseModel):
name: str name: str
description: str description: str
data: Optional[dict] = None
meta: Optional[dict] = None meta: Optional[dict] = None
access_control: Optional[dict] = None access_control: Optional[dict] = None
@ -76,11 +81,42 @@ class KnowledgeModel(BaseModel):
updated_at: int # timestamp in epoch updated_at: int # timestamp in epoch
class KnowledgeFile(Base):
__tablename__ = "knowledge_file"
id = Column(Text, unique=True, primary_key=True)
knowledge_id = Column(
Text, ForeignKey("knowledge.id", ondelete="CASCADE"), nullable=False
)
file_id = Column(Text, ForeignKey("file.id", ondelete="CASCADE"), nullable=False)
user_id = Column(Text, nullable=False)
created_at = Column(BigInteger, nullable=False)
updated_at = Column(BigInteger, nullable=False)
__table_args__ = (
UniqueConstraint(
"knowledge_id", "file_id", name="uq_knowledge_file_knowledge_file"
),
)
class KnowledgeFileModel(BaseModel):
id: str
knowledge_id: str
file_id: str
user_id: str
created_at: int # timestamp in epoch
updated_at: int # timestamp in epoch
model_config = ConfigDict(from_attributes=True)
#################### ####################
# Forms # Forms
#################### ####################
class KnowledgeUserModel(KnowledgeModel): class KnowledgeUserModel(KnowledgeModel):
user: Optional[UserResponse] = None user: Optional[UserResponse] = None
@ -96,7 +132,6 @@ class KnowledgeUserResponse(KnowledgeUserModel):
class KnowledgeForm(BaseModel): class KnowledgeForm(BaseModel):
name: str name: str
description: str description: str
data: Optional[dict] = None
access_control: Optional[dict] = None access_control: Optional[dict] = None
@ -182,6 +217,100 @@ class KnowledgeTable:
except Exception: except Exception:
return None return None
def get_knowledges_by_file_id(self, file_id: str) -> list[KnowledgeModel]:
try:
with get_db() as db:
knowledges = (
db.query(Knowledge)
.join(KnowledgeFile, Knowledge.id == KnowledgeFile.knowledge_id)
.filter(KnowledgeFile.file_id == file_id)
.all()
)
return [
KnowledgeModel.model_validate(knowledge) for knowledge in knowledges
]
except Exception:
return []
def get_files_by_id(self, knowledge_id: str) -> list[FileModel]:
try:
with get_db() as db:
files = (
db.query(File)
.join(KnowledgeFile, File.id == KnowledgeFile.file_id)
.filter(KnowledgeFile.knowledge_id == knowledge_id)
.all()
)
return [FileModel.model_validate(file) for file in files]
except Exception:
return []
def get_file_metadatas_by_id(self, knowledge_id: str) -> list[FileMetadataResponse]:
try:
with get_db() as db:
files = self.get_files_by_id(knowledge_id)
return [FileMetadataResponse(**file.model_dump()) for file in files]
except Exception:
return []
def add_file_to_knowledge_by_id(
self, knowledge_id: str, file_id: str, user_id: str
) -> Optional[KnowledgeFileModel]:
with get_db() as db:
knowledge_file = KnowledgeFileModel(
**{
"id": str(uuid.uuid4()),
"knowledge_id": knowledge_id,
"file_id": file_id,
"user_id": user_id,
"created_at": int(time.time()),
"updated_at": int(time.time()),
}
)
try:
result = KnowledgeFile(**knowledge_file.model_dump())
db.add(result)
db.commit()
db.refresh(result)
if result:
return KnowledgeFileModel.model_validate(result)
else:
return None
except Exception:
return None
def remove_file_from_knowledge_by_id(self, knowledge_id: str, file_id: str) -> bool:
try:
with get_db() as db:
db.query(KnowledgeFile).filter_by(
knowledge_id=knowledge_id, file_id=file_id
).delete()
db.commit()
return True
except Exception:
return False
def reset_knowledge_by_id(self, id: str) -> Optional[KnowledgeModel]:
try:
with get_db() as db:
# Delete all knowledge_file entries for this knowledge_id
db.query(KnowledgeFile).filter_by(knowledge_id=id).delete()
db.commit()
# Update the knowledge entry's updated_at timestamp
db.query(Knowledge).filter_by(id=id).update(
{
"updated_at": int(time.time()),
}
)
db.commit()
return self.get_knowledge_by_id(id=id)
except Exception as e:
log.exception(e)
return None
def update_knowledge_by_id( def update_knowledge_by_id(
self, id: str, form_data: KnowledgeForm, overwrite: bool = False self, id: str, form_data: KnowledgeForm, overwrite: bool = False
) -> Optional[KnowledgeModel]: ) -> Optional[KnowledgeModel]:

View file

@ -9,7 +9,7 @@ from open_webui.models.users import Users, User, UserNameResponse
from open_webui.models.channels import Channels, ChannelMember from open_webui.models.channels import Channels, ChannelMember
from pydantic import BaseModel, ConfigDict from pydantic import BaseModel, ConfigDict, field_validator
from sqlalchemy import BigInteger, Boolean, Column, String, Text, JSON from sqlalchemy import BigInteger, Boolean, Column, String, Text, JSON
from sqlalchemy import or_, func, select, and_, text from sqlalchemy import or_, func, select, and_, text
from sqlalchemy.sql import exists from sqlalchemy.sql import exists
@ -108,11 +108,24 @@ class MessageUserResponse(MessageModel):
user: Optional[UserNameResponse] = None user: Optional[UserNameResponse] = None
class MessageUserSlimResponse(MessageUserResponse):
data: bool | None = None
@field_validator("data", mode="before")
def convert_data_to_bool(cls, v):
# No data or not a dict → False
if not isinstance(v, dict):
return False
# True if ANY value in the dict is non-empty
return any(bool(val) for val in v.values())
class MessageReplyToResponse(MessageUserResponse): class MessageReplyToResponse(MessageUserResponse):
reply_to_message: Optional[MessageUserResponse] = None reply_to_message: Optional[MessageUserSlimResponse] = None
class MessageWithReactionsResponse(MessageUserResponse): class MessageWithReactionsResponse(MessageUserSlimResponse):
reactions: list[Reactions] reactions: list[Reactions]

View file

@ -24,8 +24,10 @@ from sqlalchemy import (
Date, Date,
exists, exists,
select, select,
cast,
) )
from sqlalchemy import or_, case from sqlalchemy import or_, case
from sqlalchemy.dialects.postgresql import JSONB
import datetime import datetime
@ -188,7 +190,7 @@ class UserIdNameResponse(BaseModel):
name: str name: str
class UserIdNameStatusResponse(BaseModel): class UserIdNameStatusResponse(UserStatus):
id: str id: str
name: str name: str
is_active: Optional[bool] = None is_active: Optional[bool] = None
@ -296,14 +298,21 @@ class UsersTable:
def get_user_by_oauth_sub(self, provider: str, sub: str) -> Optional[UserModel]: def get_user_by_oauth_sub(self, provider: str, sub: str) -> Optional[UserModel]:
try: try:
with get_db() as db: with get_db() as db: # type: Session
user = ( dialect_name = db.bind.dialect.name
db.query(User)
.filter(User.oauth.contains({provider: {"sub": sub}})) query = db.query(User)
.first() if dialect_name == "sqlite":
query = query.filter(User.oauth.contains({provider: {"sub": sub}}))
elif dialect_name == "postgresql":
query = query.filter(
User.oauth[provider].cast(JSONB)["sub"].astext == sub
) )
user = query.first()
return UserModel.model_validate(user) if user else None return UserModel.model_validate(user) if user else None
except Exception: except Exception as e:
# You may want to log the exception here
return None return None
def get_users( def get_users(
@ -443,6 +452,16 @@ class UsersTable:
"total": total, "total": total,
} }
def get_users_by_group_id(self, group_id: str) -> list[UserModel]:
with get_db() as db:
users = (
db.query(User)
.join(GroupMember, User.id == GroupMember.user_id)
.filter(GroupMember.group_id == group_id)
.all()
)
return [UserModel.model_validate(user) for user in users]
def get_users_by_user_ids(self, user_ids: list[str]) -> list[UserStatusModel]: def get_users_by_user_ids(self, user_ids: list[str]) -> list[UserStatusModel]:
with get_db() as db: with get_db() as db:
users = db.query(User).filter(User.id.in_(user_ids)).all() users = db.query(User).filter(User.id.in_(user_ids)).all()

View file

@ -322,12 +322,14 @@ class Loader:
file_path=file_path, file_path=file_path,
api_endpoint=self.kwargs.get("DOCUMENT_INTELLIGENCE_ENDPOINT"), api_endpoint=self.kwargs.get("DOCUMENT_INTELLIGENCE_ENDPOINT"),
api_key=self.kwargs.get("DOCUMENT_INTELLIGENCE_KEY"), api_key=self.kwargs.get("DOCUMENT_INTELLIGENCE_KEY"),
api_model=self.kwargs.get("DOCUMENT_INTELLIGENCE_MODEL"),
) )
else: else:
loader = AzureAIDocumentIntelligenceLoader( loader = AzureAIDocumentIntelligenceLoader(
file_path=file_path, file_path=file_path,
api_endpoint=self.kwargs.get("DOCUMENT_INTELLIGENCE_ENDPOINT"), api_endpoint=self.kwargs.get("DOCUMENT_INTELLIGENCE_ENDPOINT"),
azure_credential=DefaultAzureCredential(), azure_credential=DefaultAzureCredential(),
api_model=self.kwargs.get("DOCUMENT_INTELLIGENCE_MODEL"),
) )
elif self.engine == "mineru" and file_ext in [ elif self.engine == "mineru" and file_ext in [
"pdf" "pdf"

View file

@ -1088,21 +1088,17 @@ async def get_sources_from_items(
or knowledge_base.user_id == user.id or knowledge_base.user_id == user.id
or has_access(user.id, "read", knowledge_base.access_control) or has_access(user.id, "read", knowledge_base.access_control)
): ):
files = Knowledges.get_files_by_id(knowledge_base.id)
file_ids = knowledge_base.data.get("file_ids", [])
documents = [] documents = []
metadatas = [] metadatas = []
for file_id in file_ids: for file in files:
file_object = Files.get_file_by_id(file_id) documents.append(file.data.get("content", ""))
if file_object:
documents.append(file_object.data.get("content", ""))
metadatas.append( metadatas.append(
{ {
"file_id": file_id, "file_id": file.id,
"name": file_object.filename, "name": file.filename,
"source": file_object.filename, "source": file.filename,
} }
) )

View file

@ -200,23 +200,24 @@ class MilvusClient(VectorDBBase):
def query(self, collection_name: str, filter: dict, limit: int = -1): def query(self, collection_name: str, filter: dict, limit: int = -1):
connections.connect(uri=MILVUS_URI, token=MILVUS_TOKEN, db_name=MILVUS_DB) connections.connect(uri=MILVUS_URI, token=MILVUS_TOKEN, db_name=MILVUS_DB)
# Construct the filter string for querying
collection_name = collection_name.replace("-", "_") collection_name = collection_name.replace("-", "_")
if not self.has_collection(collection_name): if not self.has_collection(collection_name):
log.warning( log.warning(
f"Query attempted on non-existent collection: {self.collection_prefix}_{collection_name}" f"Query attempted on non-existent collection: {self.collection_prefix}_{collection_name}"
) )
return None return None
filter_string = " && ".join(
[ filter_expressions = []
f'metadata["{key}"] == {json.dumps(value)}' for key, value in filter.items():
for key, value in filter.items() if isinstance(value, str):
] filter_expressions.append(f'metadata["{key}"] == "{value}"')
) else:
filter_expressions.append(f'metadata["{key}"] == {value}')
filter_string = " && ".join(filter_expressions)
collection = Collection(f"{self.collection_prefix}_{collection_name}") collection = Collection(f"{self.collection_prefix}_{collection_name}")
collection.load() collection.load()
all_results = []
try: try:
log.info( log.info(
@ -224,24 +225,25 @@ class MilvusClient(VectorDBBase):
) )
iterator = collection.query_iterator( iterator = collection.query_iterator(
filter=filter_string, expr=filter_string,
output_fields=[ output_fields=[
"id", "id",
"data", "data",
"metadata", "metadata",
], ],
limit=limit, # Pass the limit directly; -1 means no limit. limit=limit if limit > 0 else -1,
) )
all_results = []
while True: while True:
result = iterator.next() batch = iterator.next()
if not result: if not batch:
iterator.close() iterator.close()
break break
all_results += result all_results.extend(batch)
log.info(f"Total results from query: {len(all_results)}") log.debug(f"Total results from query: {len(all_results)}")
return self._result_to_get_result([all_results]) return self._result_to_get_result([all_results] if all_results else [[]])
except Exception as e: except Exception as e:
log.exception( log.exception(

View file

@ -157,7 +157,6 @@ class MilvusClient(VectorDBBase):
for item in items for item in items
] ]
collection.insert(entities) collection.insert(entities)
collection.flush()
def search( def search(
self, collection_name: str, vectors: List[List[float]], limit: int self, collection_name: str, vectors: List[List[float]], limit: int
@ -263,15 +262,23 @@ class MilvusClient(VectorDBBase):
else: else:
expr.append(f"metadata['{key}'] == {value}") expr.append(f"metadata['{key}'] == {value}")
results = collection.query( iterator = collection.query_iterator(
expr=" and ".join(expr), expr=" and ".join(expr),
output_fields=["id", "text", "metadata"], output_fields=["id", "text", "metadata"],
limit=limit, limit=limit if limit else -1,
) )
ids = [res["id"] for res in results] all_results = []
documents = [res["text"] for res in results] while True:
metadatas = [res["metadata"] for res in results] batch = iterator.next()
if not batch:
iterator.close()
break
all_results.extend(batch)
ids = [res["id"] for res in all_results]
documents = [res["text"] for res in all_results]
metadatas = [res["metadata"] for res in all_results]
return GetResult(ids=[ids], documents=[documents], metadatas=[metadatas]) return GetResult(ids=[ids], documents=[documents], metadatas=[metadatas])

View file

@ -33,7 +33,7 @@ def get_filtered_results(results, filter_list):
except Exception: except Exception:
pass pass
if any(is_string_allowed(hostname, filter_list) for hostname in hostnames): if is_string_allowed(hostnames, filter_list):
filtered_results.append(result) filtered_results.append(result)
continue continue

View file

@ -6,6 +6,7 @@ import logging
from aiohttp import ClientSession from aiohttp import ClientSession
import urllib import urllib
from open_webui.models.auths import ( from open_webui.models.auths import (
AddUserForm, AddUserForm,
ApiKey, ApiKey,
@ -64,6 +65,11 @@ from open_webui.utils.auth import (
) )
from open_webui.utils.webhook import post_webhook from open_webui.utils.webhook import post_webhook
from open_webui.utils.access_control import get_permissions, has_permission from open_webui.utils.access_control import get_permissions, has_permission
from open_webui.utils.groups import apply_default_group_assignment
from open_webui.utils.redis import get_redis_client
from open_webui.utils.rate_limit import RateLimiter
from typing import Optional, List from typing import Optional, List
@ -77,6 +83,10 @@ router = APIRouter()
log = logging.getLogger(__name__) log = logging.getLogger(__name__)
log.setLevel(SRC_LOG_LEVELS["MAIN"]) log.setLevel(SRC_LOG_LEVELS["MAIN"])
signin_rate_limiter = RateLimiter(
redis_client=get_redis_client(), limit=5 * 3, window=60 * 3
)
############################ ############################
# GetSessionUser # GetSessionUser
############################ ############################
@ -408,6 +418,11 @@ async def ldap_auth(request: Request, response: Response, form_data: LdapForm):
500, detail=ERROR_MESSAGES.CREATE_USER_ERROR 500, detail=ERROR_MESSAGES.CREATE_USER_ERROR
) )
apply_default_group_assignment(
request.app.state.config.DEFAULT_GROUP_ID,
user.id,
)
except HTTPException: except HTTPException:
raise raise
except Exception as err: except Exception as err:
@ -456,7 +471,6 @@ async def ldap_auth(request: Request, response: Response, form_data: LdapForm):
): ):
if ENABLE_LDAP_GROUP_CREATION: if ENABLE_LDAP_GROUP_CREATION:
Groups.create_groups_by_group_names(user.id, user_groups) Groups.create_groups_by_group_names(user.id, user_groups)
try: try:
Groups.sync_groups_by_group_names(user.id, user_groups) Groups.sync_groups_by_group_names(user.id, user_groups)
log.info( log.info(
@ -551,6 +565,12 @@ async def signin(request: Request, response: Response, form_data: SigninForm):
admin_email.lower(), lambda pw: verify_password(admin_password, pw) admin_email.lower(), lambda pw: verify_password(admin_password, pw)
) )
else: else:
if signin_rate_limiter.is_limited(form_data.email.lower()):
raise HTTPException(
status_code=status.HTTP_429_TOO_MANY_REQUESTS,
detail=ERROR_MESSAGES.RATE_LIMIT_EXCEEDED,
)
password_bytes = form_data.password.encode("utf-8") password_bytes = form_data.password.encode("utf-8")
if len(password_bytes) > 72: if len(password_bytes) > 72:
# TODO: Implement other hashing algorithms that support longer passwords # TODO: Implement other hashing algorithms that support longer passwords
@ -707,9 +727,10 @@ async def signup(request: Request, response: Response, form_data: SignupForm):
# Disable signup after the first user is created # Disable signup after the first user is created
request.app.state.config.ENABLE_SIGNUP = False request.app.state.config.ENABLE_SIGNUP = False
default_group_id = getattr(request.app.state.config, "DEFAULT_GROUP_ID", "") apply_default_group_assignment(
if default_group_id and default_group_id: request.app.state.config.DEFAULT_GROUP_ID,
Groups.add_users_to_group(default_group_id, [user.id]) user.id,
)
return { return {
"token": token, "token": token,
@ -814,7 +835,9 @@ async def signout(request: Request, response: Response):
@router.post("/add", response_model=SigninResponse) @router.post("/add", response_model=SigninResponse)
async def add_user(form_data: AddUserForm, user=Depends(get_admin_user)): async def add_user(
request: Request, form_data: AddUserForm, user=Depends(get_admin_user)
):
if not validate_email_format(form_data.email.lower()): if not validate_email_format(form_data.email.lower()):
raise HTTPException( raise HTTPException(
status.HTTP_400_BAD_REQUEST, detail=ERROR_MESSAGES.INVALID_EMAIL_FORMAT status.HTTP_400_BAD_REQUEST, detail=ERROR_MESSAGES.INVALID_EMAIL_FORMAT
@ -839,6 +862,11 @@ async def add_user(form_data: AddUserForm, user=Depends(get_admin_user)):
) )
if user: if user:
apply_default_group_assignment(
request.app.state.config.DEFAULT_GROUP_ID,
user.id,
)
token = create_token(data={"id": user.id}) token = create_token(data={"id": user.id})
return { return {
"token": token, "token": token,

View file

@ -5,7 +5,7 @@ from typing import Optional
from fastapi import APIRouter, Depends, HTTPException, Request, status, BackgroundTasks from fastapi import APIRouter, Depends, HTTPException, Request, status, BackgroundTasks
from pydantic import BaseModel from pydantic import BaseModel
from pydantic import field_validator
from open_webui.socket.main import ( from open_webui.socket.main import (
emit_to_users, emit_to_users,
@ -39,6 +39,8 @@ from open_webui.models.messages import (
) )
from open_webui.utils.files import get_image_base64_from_file_id
from open_webui.config import ENABLE_ADMIN_CHAT_ACCESS, ENABLE_ADMIN_EXPORT from open_webui.config import ENABLE_ADMIN_CHAT_ACCESS, ENABLE_ADMIN_EXPORT
from open_webui.constants import ERROR_MESSAGES from open_webui.constants import ERROR_MESSAGES
from open_webui.env import SRC_LOG_LEVELS from open_webui.env import SRC_LOG_LEVELS
@ -666,7 +668,16 @@ async def delete_channel_by_id(
class MessageUserResponse(MessageResponse): class MessageUserResponse(MessageResponse):
pass data: bool | None = None
@field_validator("data", mode="before")
def convert_data_to_bool(cls, v):
# No data or not a dict → False
if not isinstance(v, dict):
return False
# True if ANY value in the dict is non-empty
return any(bool(val) for val in v.values())
@router.get("/{id}/messages", response_model=list[MessageUserResponse]) @router.get("/{id}/messages", response_model=list[MessageUserResponse])
@ -906,6 +917,10 @@ async def model_response_handler(request, channel, message, user):
for file in thread_message_files: for file in thread_message_files:
if file.get("type", "") == "image": if file.get("type", "") == "image":
images.append(file.get("url", "")) images.append(file.get("url", ""))
elif file.get("content_type", "").startswith("image/"):
image = get_image_base64_from_file_id(file.get("id", ""))
if image:
images.append(image)
thread_history_string = "\n\n".join(thread_history) thread_history_string = "\n\n".join(thread_history)
system_message = { system_message = {
@ -1108,7 +1123,7 @@ async def post_new_message(
############################ ############################
@router.get("/{id}/messages/{message_id}", response_model=Optional[MessageUserResponse]) @router.get("/{id}/messages/{message_id}", response_model=Optional[MessageResponse])
async def get_channel_message( async def get_channel_message(
id: str, message_id: str, user=Depends(get_verified_user) id: str, message_id: str, user=Depends(get_verified_user)
): ):
@ -1142,7 +1157,7 @@ async def get_channel_message(
status_code=status.HTTP_400_BAD_REQUEST, detail=ERROR_MESSAGES.DEFAULT() status_code=status.HTTP_400_BAD_REQUEST, detail=ERROR_MESSAGES.DEFAULT()
) )
return MessageUserResponse( return MessageResponse(
**{ **{
**message.model_dump(), **message.model_dump(),
"user": UserNameResponse( "user": UserNameResponse(
@ -1152,6 +1167,48 @@ async def get_channel_message(
) )
############################
# GetChannelMessageData
############################
@router.get("/{id}/messages/{message_id}/data", response_model=Optional[dict])
async def get_channel_message_data(
id: str, message_id: str, user=Depends(get_verified_user)
):
channel = Channels.get_channel_by_id(id)
if not channel:
raise HTTPException(
status_code=status.HTTP_404_NOT_FOUND, detail=ERROR_MESSAGES.NOT_FOUND
)
if channel.type in ["group", "dm"]:
if not Channels.is_user_channel_member(channel.id, user.id):
raise HTTPException(
status_code=status.HTTP_403_FORBIDDEN, detail=ERROR_MESSAGES.DEFAULT()
)
else:
if user.role != "admin" and not has_access(
user.id, type="read", access_control=channel.access_control
):
raise HTTPException(
status_code=status.HTTP_403_FORBIDDEN, detail=ERROR_MESSAGES.DEFAULT()
)
message = Messages.get_message_by_id(message_id)
if not message:
raise HTTPException(
status_code=status.HTTP_404_NOT_FOUND, detail=ERROR_MESSAGES.NOT_FOUND
)
if message.channel_id != id:
raise HTTPException(
status_code=status.HTTP_400_BAD_REQUEST, detail=ERROR_MESSAGES.DEFAULT()
)
return message.data
############################ ############################
# PinChannelMessage # PinChannelMessage
############################ ############################

View file

@ -22,6 +22,7 @@ from fastapi import (
) )
from fastapi.responses import FileResponse, StreamingResponse from fastapi.responses import FileResponse, StreamingResponse
from open_webui.constants import ERROR_MESSAGES from open_webui.constants import ERROR_MESSAGES
from open_webui.env import SRC_LOG_LEVELS from open_webui.env import SRC_LOG_LEVELS
from open_webui.retrieval.vector.factory import VECTOR_DB_CLIENT from open_webui.retrieval.vector.factory import VECTOR_DB_CLIENT
@ -34,12 +35,19 @@ from open_webui.models.files import (
Files, Files,
) )
from open_webui.models.knowledge import Knowledges from open_webui.models.knowledge import Knowledges
from open_webui.models.groups import Groups
from open_webui.routers.knowledge import get_knowledge, get_knowledge_list from open_webui.routers.knowledge import get_knowledge, get_knowledge_list
from open_webui.routers.retrieval import ProcessFileForm, process_file from open_webui.routers.retrieval import ProcessFileForm, process_file
from open_webui.routers.audio import transcribe from open_webui.routers.audio import transcribe
from open_webui.storage.provider import Storage from open_webui.storage.provider import Storage
from open_webui.utils.auth import get_admin_user, get_verified_user from open_webui.utils.auth import get_admin_user, get_verified_user
from open_webui.utils.access_control import has_access
from pydantic import BaseModel from pydantic import BaseModel
log = logging.getLogger(__name__) log = logging.getLogger(__name__)
@ -53,31 +61,37 @@ router = APIRouter()
############################ ############################
# TODO: Optimize this function to use the knowledge_file table for faster lookups.
def has_access_to_file( def has_access_to_file(
file_id: Optional[str], access_type: str, user=Depends(get_verified_user) file_id: Optional[str], access_type: str, user=Depends(get_verified_user)
) -> bool: ) -> bool:
file = Files.get_file_by_id(file_id) file = Files.get_file_by_id(file_id)
log.debug(f"Checking if user has {access_type} access to file") log.debug(f"Checking if user has {access_type} access to file")
if not file: if not file:
raise HTTPException( raise HTTPException(
status_code=status.HTTP_404_NOT_FOUND, status_code=status.HTTP_404_NOT_FOUND,
detail=ERROR_MESSAGES.NOT_FOUND, detail=ERROR_MESSAGES.NOT_FOUND,
) )
has_access = False knowledge_bases = Knowledges.get_knowledges_by_file_id(file_id)
knowledge_base_id = file.meta.get("collection_name") if file.meta else None user_group_ids = {group.id for group in Groups.get_groups_by_member_id(user.id)}
for knowledge_base in knowledge_bases:
if knowledge_base.user_id == user.id or has_access(
user.id, access_type, knowledge_base.access_control, user_group_ids
):
return True
knowledge_base_id = file.meta.get("collection_name") if file.meta else None
if knowledge_base_id: if knowledge_base_id:
knowledge_bases = Knowledges.get_knowledge_bases_by_user_id( knowledge_bases = Knowledges.get_knowledge_bases_by_user_id(
user.id, access_type user.id, access_type
) )
for knowledge_base in knowledge_bases: for knowledge_base in knowledge_bases:
if knowledge_base.id == knowledge_base_id: if knowledge_base.id == knowledge_base_id:
has_access = True return True
break
return has_access return False
############################ ############################
@ -165,7 +179,7 @@ def upload_file_handler(
user=Depends(get_verified_user), user=Depends(get_verified_user),
background_tasks: Optional[BackgroundTasks] = None, background_tasks: Optional[BackgroundTasks] = None,
): ):
log.info(f"file.content_type: {file.content_type}") log.info(f"file.content_type: {file.content_type} {process}")
if isinstance(metadata, str): if isinstance(metadata, str):
try: try:

View file

@ -3,7 +3,7 @@ from pathlib import Path
from typing import Optional from typing import Optional
import logging import logging
from open_webui.models.users import Users from open_webui.models.users import Users, UserInfoResponse
from open_webui.models.groups import ( from open_webui.models.groups import (
Groups, Groups,
GroupForm, GroupForm,
@ -118,6 +118,24 @@ async def export_group_by_id(id: str, user=Depends(get_admin_user)):
) )
############################
# GetUsersInGroupById
############################
@router.post("/id/{id}/users", response_model=list[UserInfoResponse])
async def get_users_in_group(id: str, user=Depends(get_admin_user)):
try:
users = Users.get_users_by_group_id(id)
return users
except Exception as e:
log.exception(f"Error adding users to group {id}: {e}")
raise HTTPException(
status_code=status.HTTP_400_BAD_REQUEST,
detail=ERROR_MESSAGES.DEFAULT(e),
)
############################ ############################
# UpdateGroupById # UpdateGroupById
############################ ############################

View file

@ -42,97 +42,38 @@ router = APIRouter()
@router.get("/", response_model=list[KnowledgeUserResponse]) @router.get("/", response_model=list[KnowledgeUserResponse])
async def get_knowledge(user=Depends(get_verified_user)): async def get_knowledge(user=Depends(get_verified_user)):
# Return knowledge bases with read access
knowledge_bases = [] knowledge_bases = []
if user.role == "admin" and BYPASS_ADMIN_ACCESS_CONTROL: if user.role == "admin" and BYPASS_ADMIN_ACCESS_CONTROL:
knowledge_bases = Knowledges.get_knowledge_bases() knowledge_bases = Knowledges.get_knowledge_bases()
else: else:
knowledge_bases = Knowledges.get_knowledge_bases_by_user_id(user.id, "read") knowledge_bases = Knowledges.get_knowledge_bases_by_user_id(user.id, "read")
# Get files for each knowledge base return [
knowledge_with_files = []
for knowledge_base in knowledge_bases:
files = []
if knowledge_base.data:
files = Files.get_file_metadatas_by_ids(
knowledge_base.data.get("file_ids", [])
)
# Check if all files exist
if len(files) != len(knowledge_base.data.get("file_ids", [])):
missing_files = list(
set(knowledge_base.data.get("file_ids", []))
- set([file.id for file in files])
)
if missing_files:
data = knowledge_base.data or {}
file_ids = data.get("file_ids", [])
for missing_file in missing_files:
file_ids.remove(missing_file)
data["file_ids"] = file_ids
Knowledges.update_knowledge_data_by_id(
id=knowledge_base.id, data=data
)
files = Files.get_file_metadatas_by_ids(file_ids)
knowledge_with_files.append(
KnowledgeUserResponse( KnowledgeUserResponse(
**knowledge_base.model_dump(), **knowledge_base.model_dump(),
files=files, files=Knowledges.get_file_metadatas_by_id(knowledge_base.id),
) )
) for knowledge_base in knowledge_bases
]
return knowledge_with_files
@router.get("/list", response_model=list[KnowledgeUserResponse]) @router.get("/list", response_model=list[KnowledgeUserResponse])
async def get_knowledge_list(user=Depends(get_verified_user)): async def get_knowledge_list(user=Depends(get_verified_user)):
# Return knowledge bases with write access
knowledge_bases = [] knowledge_bases = []
if user.role == "admin" and BYPASS_ADMIN_ACCESS_CONTROL: if user.role == "admin" and BYPASS_ADMIN_ACCESS_CONTROL:
knowledge_bases = Knowledges.get_knowledge_bases() knowledge_bases = Knowledges.get_knowledge_bases()
else: else:
knowledge_bases = Knowledges.get_knowledge_bases_by_user_id(user.id, "write") knowledge_bases = Knowledges.get_knowledge_bases_by_user_id(user.id, "write")
# Get files for each knowledge base return [
knowledge_with_files = []
for knowledge_base in knowledge_bases:
files = []
if knowledge_base.data:
files = Files.get_file_metadatas_by_ids(
knowledge_base.data.get("file_ids", [])
)
# Check if all files exist
if len(files) != len(knowledge_base.data.get("file_ids", [])):
missing_files = list(
set(knowledge_base.data.get("file_ids", []))
- set([file.id for file in files])
)
if missing_files:
data = knowledge_base.data or {}
file_ids = data.get("file_ids", [])
for missing_file in missing_files:
file_ids.remove(missing_file)
data["file_ids"] = file_ids
Knowledges.update_knowledge_data_by_id(
id=knowledge_base.id, data=data
)
files = Files.get_file_metadatas_by_ids(file_ids)
knowledge_with_files.append(
KnowledgeUserResponse( KnowledgeUserResponse(
**knowledge_base.model_dump(), **knowledge_base.model_dump(),
files=files, files=Knowledges.get_file_metadatas_by_id(knowledge_base.id),
) )
) for knowledge_base in knowledge_bases
return knowledge_with_files ]
############################ ############################
@ -192,26 +133,9 @@ async def reindex_knowledge_files(request: Request, user=Depends(get_verified_us
log.info(f"Starting reindexing for {len(knowledge_bases)} knowledge bases") log.info(f"Starting reindexing for {len(knowledge_bases)} knowledge bases")
deleted_knowledge_bases = []
for knowledge_base in knowledge_bases: for knowledge_base in knowledge_bases:
# -- Robust error handling for missing or invalid data
if not knowledge_base.data or not isinstance(knowledge_base.data, dict):
log.warning(
f"Knowledge base {knowledge_base.id} has no data or invalid data ({knowledge_base.data!r}). Deleting."
)
try: try:
Knowledges.delete_knowledge_by_id(id=knowledge_base.id) files = Knowledges.get_files_by_id(knowledge_base.id)
deleted_knowledge_bases.append(knowledge_base.id)
except Exception as e:
log.error(
f"Failed to delete invalid knowledge base {knowledge_base.id}: {e}"
)
continue
try:
file_ids = knowledge_base.data.get("file_ids", [])
files = Files.get_files_by_ids(file_ids)
try: try:
if VECTOR_DB_CLIENT.has_collection(collection_name=knowledge_base.id): if VECTOR_DB_CLIENT.has_collection(collection_name=knowledge_base.id):
VECTOR_DB_CLIENT.delete_collection( VECTOR_DB_CLIENT.delete_collection(
@ -251,9 +175,7 @@ async def reindex_knowledge_files(request: Request, user=Depends(get_verified_us
for failed in failed_files: for failed in failed_files:
log.warning(f"File ID: {failed['file_id']}, Error: {failed['error']}") log.warning(f"File ID: {failed['file_id']}, Error: {failed['error']}")
log.info( log.info(f"Reindexing completed.")
f"Reindexing completed. Deleted {len(deleted_knowledge_bases)} invalid knowledge bases: {deleted_knowledge_bases}"
)
return True return True
@ -271,19 +193,15 @@ async def get_knowledge_by_id(id: str, user=Depends(get_verified_user)):
knowledge = Knowledges.get_knowledge_by_id(id=id) knowledge = Knowledges.get_knowledge_by_id(id=id)
if knowledge: if knowledge:
if ( if (
user.role == "admin" user.role == "admin"
or knowledge.user_id == user.id or knowledge.user_id == user.id
or has_access(user.id, "read", knowledge.access_control) or has_access(user.id, "read", knowledge.access_control)
): ):
file_ids = knowledge.data.get("file_ids", []) if knowledge.data else []
files = Files.get_file_metadatas_by_ids(file_ids)
return KnowledgeFilesResponse( return KnowledgeFilesResponse(
**knowledge.model_dump(), **knowledge.model_dump(),
files=files, files=Knowledges.get_file_metadatas_by_id(knowledge.id),
) )
else: else:
raise HTTPException( raise HTTPException(
@ -335,12 +253,9 @@ async def update_knowledge_by_id(
knowledge = Knowledges.update_knowledge_by_id(id=id, form_data=form_data) knowledge = Knowledges.update_knowledge_by_id(id=id, form_data=form_data)
if knowledge: if knowledge:
file_ids = knowledge.data.get("file_ids", []) if knowledge.data else []
files = Files.get_file_metadatas_by_ids(file_ids)
return KnowledgeFilesResponse( return KnowledgeFilesResponse(
**knowledge.model_dump(), **knowledge.model_dump(),
files=files, files=Knowledges.get_file_metadatas_by_id(knowledge.id),
) )
else: else:
raise HTTPException( raise HTTPException(
@ -366,7 +281,6 @@ def add_file_to_knowledge_by_id(
user=Depends(get_verified_user), user=Depends(get_verified_user),
): ):
knowledge = Knowledges.get_knowledge_by_id(id=id) knowledge = Knowledges.get_knowledge_by_id(id=id)
if not knowledge: if not knowledge:
raise HTTPException( raise HTTPException(
status_code=status.HTTP_400_BAD_REQUEST, status_code=status.HTTP_400_BAD_REQUEST,
@ -395,6 +309,11 @@ def add_file_to_knowledge_by_id(
detail=ERROR_MESSAGES.FILE_NOT_PROCESSED, detail=ERROR_MESSAGES.FILE_NOT_PROCESSED,
) )
# Add file to knowledge base
Knowledges.add_file_to_knowledge_by_id(
knowledge_id=id, file_id=form_data.file_id, user_id=user.id
)
# Add content to the vector database # Add content to the vector database
try: try:
process_file( process_file(
@ -410,31 +329,9 @@ def add_file_to_knowledge_by_id(
) )
if knowledge: if knowledge:
data = knowledge.data or {}
file_ids = data.get("file_ids", [])
if form_data.file_id not in file_ids:
file_ids.append(form_data.file_id)
data["file_ids"] = file_ids
knowledge = Knowledges.update_knowledge_data_by_id(id=id, data=data)
if knowledge:
files = Files.get_file_metadatas_by_ids(file_ids)
return KnowledgeFilesResponse( return KnowledgeFilesResponse(
**knowledge.model_dump(), **knowledge.model_dump(),
files=files, files=Knowledges.get_file_metadatas_by_id(knowledge.id),
)
else:
raise HTTPException(
status_code=status.HTTP_400_BAD_REQUEST,
detail=ERROR_MESSAGES.DEFAULT("knowledge"),
)
else:
raise HTTPException(
status_code=status.HTTP_400_BAD_REQUEST,
detail=ERROR_MESSAGES.DEFAULT("file_id"),
) )
else: else:
raise HTTPException( raise HTTPException(
@ -494,14 +391,9 @@ def update_file_from_knowledge_by_id(
) )
if knowledge: if knowledge:
data = knowledge.data or {}
file_ids = data.get("file_ids", [])
files = Files.get_file_metadatas_by_ids(file_ids)
return KnowledgeFilesResponse( return KnowledgeFilesResponse(
**knowledge.model_dump(), **knowledge.model_dump(),
files=files, files=Knowledges.get_file_metadatas_by_id(knowledge.id),
) )
else: else:
raise HTTPException( raise HTTPException(
@ -546,6 +438,10 @@ def remove_file_from_knowledge_by_id(
detail=ERROR_MESSAGES.NOT_FOUND, detail=ERROR_MESSAGES.NOT_FOUND,
) )
Knowledges.remove_file_from_knowledge_by_id(
knowledge_id=id, file_id=form_data.file_id
)
# Remove content from the vector database # Remove content from the vector database
try: try:
VECTOR_DB_CLIENT.delete( VECTOR_DB_CLIENT.delete(
@ -575,30 +471,9 @@ def remove_file_from_knowledge_by_id(
Files.delete_file_by_id(form_data.file_id) Files.delete_file_by_id(form_data.file_id)
if knowledge: if knowledge:
data = knowledge.data or {}
file_ids = data.get("file_ids", [])
if form_data.file_id in file_ids:
file_ids.remove(form_data.file_id)
data["file_ids"] = file_ids
knowledge = Knowledges.update_knowledge_data_by_id(id=id, data=data)
if knowledge:
files = Files.get_file_metadatas_by_ids(file_ids)
return KnowledgeFilesResponse( return KnowledgeFilesResponse(
**knowledge.model_dump(), **knowledge.model_dump(),
files=files, files=Knowledges.get_file_metadatas_by_id(knowledge.id),
)
else:
raise HTTPException(
status_code=status.HTTP_400_BAD_REQUEST,
detail=ERROR_MESSAGES.DEFAULT("knowledge"),
)
else:
raise HTTPException(
status_code=status.HTTP_400_BAD_REQUEST,
detail=ERROR_MESSAGES.DEFAULT("file_id"),
) )
else: else:
raise HTTPException( raise HTTPException(
@ -700,8 +575,7 @@ async def reset_knowledge_by_id(id: str, user=Depends(get_verified_user)):
log.debug(e) log.debug(e)
pass pass
knowledge = Knowledges.update_knowledge_data_by_id(id=id, data={"file_ids": []}) knowledge = Knowledges.reset_knowledge_by_id(id=id)
return knowledge return knowledge
@ -762,25 +636,19 @@ async def add_files_to_knowledge_batch(
) )
raise HTTPException(status_code=status.HTTP_400_BAD_REQUEST, detail=str(e)) raise HTTPException(status_code=status.HTTP_400_BAD_REQUEST, detail=str(e))
# Add successful files to knowledge base
data = knowledge.data or {}
existing_file_ids = data.get("file_ids", [])
# Only add files that were successfully processed # Only add files that were successfully processed
successful_file_ids = [r.file_id for r in result.results if r.status == "completed"] successful_file_ids = [r.file_id for r in result.results if r.status == "completed"]
for file_id in successful_file_ids: for file_id in successful_file_ids:
if file_id not in existing_file_ids: Knowledges.add_file_to_knowledge_by_id(
existing_file_ids.append(file_id) knowledge_id=id, file_id=file_id, user_id=user.id
)
data["file_ids"] = existing_file_ids
knowledge = Knowledges.update_knowledge_data_by_id(id=id, data=data)
# If there were any errors, include them in the response # If there were any errors, include them in the response
if result.errors: if result.errors:
error_details = [f"{err.file_id}: {err.error}" for err in result.errors] error_details = [f"{err.file_id}: {err.error}" for err in result.errors]
return KnowledgeFilesResponse( return KnowledgeFilesResponse(
**knowledge.model_dump(), **knowledge.model_dump(),
files=Files.get_file_metadatas_by_ids(existing_file_ids), files=Knowledges.get_file_metadatas_by_id(knowledge.id),
warnings={ warnings={
"message": "Some files failed to process", "message": "Some files failed to process",
"errors": error_details, "errors": error_details,
@ -789,5 +657,5 @@ async def add_files_to_knowledge_batch(
return KnowledgeFilesResponse( return KnowledgeFilesResponse(
**knowledge.model_dump(), **knowledge.model_dump(),
files=Files.get_file_metadatas_by_ids(existing_file_ids), files=Knowledges.get_file_metadatas_by_id(knowledge.id),
) )

View file

@ -123,7 +123,7 @@ log.setLevel(SRC_LOG_LEVELS["RAG"])
def get_ef( def get_ef(
engine: str, engine: str,
embedding_model: str, embedding_model: str,
auto_update: bool = False, auto_update: bool = RAG_EMBEDDING_MODEL_AUTO_UPDATE,
): ):
ef = None ef = None
if embedding_model and engine == "": if embedding_model and engine == "":
@ -148,7 +148,7 @@ def get_rf(
reranking_model: Optional[str] = None, reranking_model: Optional[str] = None,
external_reranker_url: str = "", external_reranker_url: str = "",
external_reranker_api_key: str = "", external_reranker_api_key: str = "",
auto_update: bool = False, auto_update: bool = RAG_RERANKING_MODEL_AUTO_UPDATE,
): ):
rf = None rf = None
if reranking_model: if reranking_model:
@ -468,6 +468,7 @@ async def get_rag_config(request: Request, user=Depends(get_admin_user)):
"DOCLING_PARAMS": request.app.state.config.DOCLING_PARAMS, "DOCLING_PARAMS": request.app.state.config.DOCLING_PARAMS,
"DOCUMENT_INTELLIGENCE_ENDPOINT": request.app.state.config.DOCUMENT_INTELLIGENCE_ENDPOINT, "DOCUMENT_INTELLIGENCE_ENDPOINT": request.app.state.config.DOCUMENT_INTELLIGENCE_ENDPOINT,
"DOCUMENT_INTELLIGENCE_KEY": request.app.state.config.DOCUMENT_INTELLIGENCE_KEY, "DOCUMENT_INTELLIGENCE_KEY": request.app.state.config.DOCUMENT_INTELLIGENCE_KEY,
"DOCUMENT_INTELLIGENCE_MODEL": request.app.state.config.DOCUMENT_INTELLIGENCE_MODEL,
"MISTRAL_OCR_API_BASE_URL": request.app.state.config.MISTRAL_OCR_API_BASE_URL, "MISTRAL_OCR_API_BASE_URL": request.app.state.config.MISTRAL_OCR_API_BASE_URL,
"MISTRAL_OCR_API_KEY": request.app.state.config.MISTRAL_OCR_API_KEY, "MISTRAL_OCR_API_KEY": request.app.state.config.MISTRAL_OCR_API_KEY,
# MinerU settings # MinerU settings
@ -647,6 +648,7 @@ class ConfigForm(BaseModel):
DOCLING_PARAMS: Optional[dict] = None DOCLING_PARAMS: Optional[dict] = None
DOCUMENT_INTELLIGENCE_ENDPOINT: Optional[str] = None DOCUMENT_INTELLIGENCE_ENDPOINT: Optional[str] = None
DOCUMENT_INTELLIGENCE_KEY: Optional[str] = None DOCUMENT_INTELLIGENCE_KEY: Optional[str] = None
DOCUMENT_INTELLIGENCE_MODEL: Optional[str] = None
MISTRAL_OCR_API_BASE_URL: Optional[str] = None MISTRAL_OCR_API_BASE_URL: Optional[str] = None
MISTRAL_OCR_API_KEY: Optional[str] = None MISTRAL_OCR_API_KEY: Optional[str] = None
@ -842,6 +844,11 @@ async def update_rag_config(
if form_data.DOCUMENT_INTELLIGENCE_KEY is not None if form_data.DOCUMENT_INTELLIGENCE_KEY is not None
else request.app.state.config.DOCUMENT_INTELLIGENCE_KEY else request.app.state.config.DOCUMENT_INTELLIGENCE_KEY
) )
request.app.state.config.DOCUMENT_INTELLIGENCE_MODEL = (
form_data.DOCUMENT_INTELLIGENCE_MODEL
if form_data.DOCUMENT_INTELLIGENCE_MODEL is not None
else request.app.state.config.DOCUMENT_INTELLIGENCE_MODEL
)
request.app.state.config.MISTRAL_OCR_API_BASE_URL = ( request.app.state.config.MISTRAL_OCR_API_BASE_URL = (
form_data.MISTRAL_OCR_API_BASE_URL form_data.MISTRAL_OCR_API_BASE_URL
@ -927,7 +934,6 @@ async def update_rag_config(
request.app.state.config.RAG_RERANKING_MODEL, request.app.state.config.RAG_RERANKING_MODEL,
request.app.state.config.RAG_EXTERNAL_RERANKER_URL, request.app.state.config.RAG_EXTERNAL_RERANKER_URL,
request.app.state.config.RAG_EXTERNAL_RERANKER_API_KEY, request.app.state.config.RAG_EXTERNAL_RERANKER_API_KEY,
True,
) )
request.app.state.RERANKING_FUNCTION = get_reranking_function( request.app.state.RERANKING_FUNCTION = get_reranking_function(
@ -1132,6 +1138,7 @@ async def update_rag_config(
"DOCLING_PARAMS": request.app.state.config.DOCLING_PARAMS, "DOCLING_PARAMS": request.app.state.config.DOCLING_PARAMS,
"DOCUMENT_INTELLIGENCE_ENDPOINT": request.app.state.config.DOCUMENT_INTELLIGENCE_ENDPOINT, "DOCUMENT_INTELLIGENCE_ENDPOINT": request.app.state.config.DOCUMENT_INTELLIGENCE_ENDPOINT,
"DOCUMENT_INTELLIGENCE_KEY": request.app.state.config.DOCUMENT_INTELLIGENCE_KEY, "DOCUMENT_INTELLIGENCE_KEY": request.app.state.config.DOCUMENT_INTELLIGENCE_KEY,
"DOCUMENT_INTELLIGENCE_MODEL": request.app.state.config.DOCUMENT_INTELLIGENCE_MODEL,
"MISTRAL_OCR_API_BASE_URL": request.app.state.config.MISTRAL_OCR_API_BASE_URL, "MISTRAL_OCR_API_BASE_URL": request.app.state.config.MISTRAL_OCR_API_BASE_URL,
"MISTRAL_OCR_API_KEY": request.app.state.config.MISTRAL_OCR_API_KEY, "MISTRAL_OCR_API_KEY": request.app.state.config.MISTRAL_OCR_API_KEY,
# MinerU settings # MinerU settings
@ -1544,6 +1551,7 @@ def process_file(
PDF_EXTRACT_IMAGES=request.app.state.config.PDF_EXTRACT_IMAGES, PDF_EXTRACT_IMAGES=request.app.state.config.PDF_EXTRACT_IMAGES,
DOCUMENT_INTELLIGENCE_ENDPOINT=request.app.state.config.DOCUMENT_INTELLIGENCE_ENDPOINT, DOCUMENT_INTELLIGENCE_ENDPOINT=request.app.state.config.DOCUMENT_INTELLIGENCE_ENDPOINT,
DOCUMENT_INTELLIGENCE_KEY=request.app.state.config.DOCUMENT_INTELLIGENCE_KEY, DOCUMENT_INTELLIGENCE_KEY=request.app.state.config.DOCUMENT_INTELLIGENCE_KEY,
DOCUMENT_INTELLIGENCE_MODEL=request.app.state.config.DOCUMENT_INTELLIGENCE_MODEL,
MISTRAL_OCR_API_BASE_URL=request.app.state.config.MISTRAL_OCR_API_BASE_URL, MISTRAL_OCR_API_BASE_URL=request.app.state.config.MISTRAL_OCR_API_BASE_URL,
MISTRAL_OCR_API_KEY=request.app.state.config.MISTRAL_OCR_API_KEY, MISTRAL_OCR_API_KEY=request.app.state.config.MISTRAL_OCR_API_KEY,
MINERU_API_MODE=request.app.state.config.MINERU_API_MODE, MINERU_API_MODE=request.app.state.config.MINERU_API_MODE,

View file

@ -235,7 +235,7 @@ async def invalidate_token(request, token):
jti = decoded.get("jti") jti = decoded.get("jti")
exp = decoded.get("exp") exp = decoded.get("exp")
if jti: if jti and exp:
ttl = exp - int( ttl = exp - int(
datetime.now(UTC).timestamp() datetime.now(UTC).timestamp()
) # Calculate time-to-live for the token ) # Calculate time-to-live for the token

View file

@ -10,7 +10,11 @@ from fastapi import (
Request, Request,
UploadFile, UploadFile,
) )
from typing import Optional
from pathlib import Path
from open_webui.storage.provider import Storage
from open_webui.models.files import Files
from open_webui.routers.files import upload_file_handler from open_webui.routers.files import upload_file_handler
import mimetypes import mimetypes
@ -113,3 +117,26 @@ def get_file_url_from_base64(request, base64_file_string, metadata, user):
elif "data:audio/wav;base64" in base64_file_string: elif "data:audio/wav;base64" in base64_file_string:
return get_audio_url_from_base64(request, base64_file_string, metadata, user) return get_audio_url_from_base64(request, base64_file_string, metadata, user)
return None return None
def get_image_base64_from_file_id(id: str) -> Optional[str]:
file = Files.get_file_by_id(id)
if not file:
return None
try:
file_path = Storage.get_file(file.path)
file_path = Path(file_path)
# Check if the file already exists in the cache
if file_path.is_file():
import base64
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)
return f"data:{content_type};base64,{encoded_string}"
else:
return None
except Exception as e:
return None

View file

@ -0,0 +1,24 @@
import logging
from open_webui.models.groups import Groups
log = logging.getLogger(__name__)
def apply_default_group_assignment(
default_group_id: str,
user_id: str,
) -> None:
"""
Apply default group assignment to a user if default_group_id is provided.
Args:
default_group_id: ID of the default group to add the user to
user_id: ID of the user to add to the default group
"""
if default_group_id:
try:
Groups.add_users_to_group(default_group_id, [user_id])
except Exception as e:
log.error(
f"Failed to add user {user_id} to default group {default_group_id}: {e}"
)

View file

@ -468,12 +468,6 @@ async def chat_completion_tools_handler(
} }
) )
print(
f"Tool {tool_function_name} result: {tool_result}",
tool_result_files,
tool_result_embeds,
)
if tool_result: if tool_result:
tool = tools[tool_function_name] tool = tools[tool_function_name]
tool_id = tool.get("tool_id", "") tool_id = tool.get("tool_id", "")
@ -501,12 +495,6 @@ async def chat_completion_tools_handler(
} }
) )
# Citation is not enabled for this tool
body["messages"] = add_or_update_user_message(
f"\nTool `{tool_name}` Output: {tool_result}",
body["messages"],
)
if ( if (
tools[tool_function_name] tools[tool_function_name]
.get("metadata", {}) .get("metadata", {})

View file

@ -6,7 +6,7 @@ import uuid
import logging import logging
from datetime import timedelta from datetime import timedelta
from pathlib import Path from pathlib import Path
from typing import Callable, Optional from typing import Callable, Optional, Sequence, Union
import json import json
import aiohttp import aiohttp
@ -43,25 +43,28 @@ def get_allow_block_lists(filter_list):
return allow_list, block_list return allow_list, block_list
def is_string_allowed(string: str, filter_list: Optional[list[str]] = None) -> bool: def is_string_allowed(
string: Union[str, Sequence[str]], filter_list: Optional[list[str]] = None
) -> bool:
""" """
Checks if a string is allowed based on the provided filter list. Checks if a string is allowed based on the provided filter list.
:param string: The string to check (e.g., domain or hostname). :param string: The string or sequence of strings to check (e.g., domain or hostname).
:param filter_list: List of allowed/blocked strings. Strings starting with "!" are blocked. :param filter_list: List of allowed/blocked strings. Strings starting with "!" are blocked.
:return: True if the string is allowed, False otherwise. :return: True if the string or sequence of strings is allowed, False otherwise.
""" """
if not filter_list: if not filter_list:
return True return True
allow_list, block_list = get_allow_block_lists(filter_list) allow_list, block_list = get_allow_block_lists(filter_list)
strings = [string] if isinstance(string, str) else list(string)
# If allow list is non-empty, require domain to match one of them # If allow list is non-empty, require domain to match one of them
if allow_list: if allow_list:
if not any(string.endswith(allowed) for allowed in allow_list): if not any(s.endswith(allowed) for s in strings for allowed in allow_list):
return False return False
# Block list always removes matches # Block list always removes matches
if any(string.endswith(blocked) for blocked in block_list): if any(s.endswith(blocked) for s in strings for blocked in block_list):
return False return False
return True return True

View file

@ -191,6 +191,8 @@ async def get_all_models(request, refresh: bool = False, user: UserModel = None)
): ):
# Custom model based on a base model # Custom model based on a base model
owned_by = "openai" owned_by = "openai"
connection_type = None
pipe = None pipe = None
for m in models: for m in models:
@ -201,6 +203,8 @@ async def get_all_models(request, refresh: bool = False, user: UserModel = None)
owned_by = m.get("owned_by", "unknown") owned_by = m.get("owned_by", "unknown")
if "pipe" in m: if "pipe" in m:
pipe = m["pipe"] pipe = m["pipe"]
connection_type = m.get("connection_type", None)
break break
model = { model = {
@ -209,6 +213,7 @@ async def get_all_models(request, refresh: bool = False, user: UserModel = None)
"object": "model", "object": "model",
"created": custom_model.created_at, "created": custom_model.created_at,
"owned_by": owned_by, "owned_by": owned_by,
"connection_type": connection_type,
"preset": True, "preset": True,
**({"pipe": pipe} if pipe is not None else {}), **({"pipe": pipe} if pipe is not None else {}),
} }

View file

@ -72,6 +72,7 @@ from open_webui.env import (
from open_webui.utils.misc import parse_duration from open_webui.utils.misc import parse_duration
from open_webui.utils.auth import get_password_hash, create_token from open_webui.utils.auth import get_password_hash, create_token
from open_webui.utils.webhook import post_webhook from open_webui.utils.webhook import post_webhook
from open_webui.utils.groups import apply_default_group_assignment
from mcp.shared.auth import ( from mcp.shared.auth import (
OAuthClientMetadata as MCPOAuthClientMetadata, OAuthClientMetadata as MCPOAuthClientMetadata,
@ -1167,7 +1168,6 @@ class OAuthManager:
log.debug( log.debug(
f"Removing user from group {group_model.name} as it is no longer in their oauth groups" f"Removing user from group {group_model.name} as it is no longer in their oauth groups"
) )
Groups.remove_users_from_group(group_model.id, [user.id]) Groups.remove_users_from_group(group_model.id, [user.id])
# In case a group is created, but perms are never assigned to the group by hitting "save" # In case a group is created, but perms are never assigned to the group by hitting "save"
@ -1478,6 +1478,12 @@ class OAuthManager:
"user": user.model_dump_json(exclude_none=True), "user": user.model_dump_json(exclude_none=True),
}, },
) )
apply_default_group_assignment(
request.app.state.config.DEFAULT_GROUP_ID,
user.id,
)
else: else:
raise HTTPException( raise HTTPException(
status.HTTP_403_FORBIDDEN, status.HTTP_403_FORBIDDEN,

View file

@ -0,0 +1,139 @@
import time
from typing import Optional, Dict
from open_webui.env import REDIS_KEY_PREFIX
class RateLimiter:
"""
General-purpose rate limiter using Redis with a rolling window strategy.
Falls back to in-memory storage if Redis is not available.
"""
# In-memory fallback storage
_memory_store: Dict[str, Dict[int, int]] = {}
def __init__(
self,
redis_client,
limit: int,
window: int,
bucket_size: int = 60,
enabled: bool = True,
):
"""
:param redis_client: Redis client instance or None
:param limit: Max allowed events in the window
:param window: Time window in seconds
:param bucket_size: Bucket resolution
:param enabled: Turn on/off rate limiting globally
"""
self.r = redis_client
self.limit = limit
self.window = window
self.bucket_size = bucket_size
self.num_buckets = window // bucket_size
self.enabled = enabled
def _bucket_key(self, key: str, bucket_index: int) -> str:
return f"{REDIS_KEY_PREFIX}:ratelimit:{key.lower()}:{bucket_index}"
def _current_bucket(self) -> int:
return int(time.time()) // self.bucket_size
def _redis_available(self) -> bool:
return self.r is not None
def is_limited(self, key: str) -> bool:
"""
Main rate-limit check.
Gracefully handles missing or failing Redis.
"""
if not self.enabled:
return False
if self._redis_available():
try:
return self._is_limited_redis(key)
except Exception:
return self._is_limited_memory(key)
else:
return self._is_limited_memory(key)
def get_count(self, key: str) -> int:
if not self.enabled:
return 0
if self._redis_available():
try:
return self._get_count_redis(key)
except Exception:
return self._get_count_memory(key)
else:
return self._get_count_memory(key)
def remaining(self, key: str) -> int:
used = self.get_count(key)
return max(0, self.limit - used)
def _is_limited_redis(self, key: str) -> bool:
now_bucket = self._current_bucket()
bucket_key = self._bucket_key(key, now_bucket)
attempts = self.r.incr(bucket_key)
if attempts == 1:
self.r.expire(bucket_key, self.window + self.bucket_size)
# Collect buckets
buckets = [
self._bucket_key(key, now_bucket - i) for i in range(self.num_buckets + 1)
]
counts = self.r.mget(buckets)
total = sum(int(c) for c in counts if c)
return total > self.limit
def _get_count_redis(self, key: str) -> int:
now_bucket = self._current_bucket()
buckets = [
self._bucket_key(key, now_bucket - i) for i in range(self.num_buckets + 1)
]
counts = self.r.mget(buckets)
return sum(int(c) for c in counts if c)
def _is_limited_memory(self, key: str) -> bool:
now_bucket = self._current_bucket()
# Init storage
if key not in self._memory_store:
self._memory_store[key] = {}
store = self._memory_store[key]
# Increment bucket
store[now_bucket] = store.get(now_bucket, 0) + 1
# Drop expired buckets
min_bucket = now_bucket - self.num_buckets
expired = [b for b in store if b < min_bucket]
for b in expired:
del store[b]
# Count totals
total = sum(store.values())
return total > self.limit
def _get_count_memory(self, key: str) -> int:
now_bucket = self._current_bucket()
if key not in self._memory_store:
return 0
store = self._memory_store[key]
min_bucket = now_bucket - self.num_buckets
# Remove expired
expired = [b for b in store if b < min_bucket]
for b in expired:
del store[b]
return sum(store.values())

View file

@ -5,7 +5,13 @@ import logging
import redis import redis
from open_webui.env import REDIS_SENTINEL_MAX_RETRY_COUNT from open_webui.env import (
REDIS_CLUSTER,
REDIS_SENTINEL_HOSTS,
REDIS_SENTINEL_MAX_RETRY_COUNT,
REDIS_SENTINEL_PORT,
REDIS_URL,
)
log = logging.getLogger(__name__) log = logging.getLogger(__name__)
@ -108,6 +114,21 @@ def parse_redis_service_url(redis_url):
} }
def get_redis_client(async_mode=False):
try:
return get_redis_connection(
redis_url=REDIS_URL,
redis_sentinels=get_sentinels_from_env(
REDIS_SENTINEL_HOSTS, REDIS_SENTINEL_PORT
),
redis_cluster=REDIS_CLUSTER,
async_mode=async_mode,
)
except Exception as e:
log.debug(f"Failed to get Redis client: {e}")
return None
def get_redis_connection( def get_redis_connection(
redis_url, redis_url,
redis_sentinels, redis_sentinels,

View file

@ -1,9 +1,9 @@
# Minimal requirements for backend to run # Minimal requirements for backend to run
# WIP: use this as a reference to build a minimal docker image # WIP: use this as a reference to build a minimal docker image
fastapi==0.118.0 fastapi==0.123.0
uvicorn[standard]==0.37.0 uvicorn[standard]==0.37.0
pydantic==2.11.9 pydantic==2.12.5
python-multipart==0.0.20 python-multipart==0.0.20
itsdangerous==2.2.0 itsdangerous==2.2.0
@ -20,14 +20,14 @@ aiohttp==3.12.15
async-timeout async-timeout
aiocache aiocache
aiofiles aiofiles
starlette-compress==1.6.0 starlette-compress==1.6.1
httpx[socks,http2,zstd,cli,brotli]==0.28.1 httpx[socks,http2,zstd,cli,brotli]==0.28.1
starsessions[redis]==2.2.1 starsessions[redis]==2.2.1
sqlalchemy==2.0.38 sqlalchemy==2.0.38
alembic==1.14.0 alembic==1.17.2
peewee==3.18.1 peewee==3.18.3
peewee-migrate==1.12.2 peewee-migrate==1.14.3
pycrdt==0.12.25 pycrdt==0.12.25
redis redis
@ -36,9 +36,9 @@ APScheduler==3.10.4
RestrictedPython==8.0 RestrictedPython==8.0
loguru==0.7.3 loguru==0.7.3
asgiref==3.8.1 asgiref==3.11.0
mcp==1.21.2 mcp==1.22.0
openai openai
langchain==0.3.27 langchain==0.3.27
@ -46,6 +46,6 @@ langchain-community==0.3.29
fake-useragent==2.2.0 fake-useragent==2.2.0
chromadb==1.1.0 chromadb==1.1.0
black==25.9.0 black==25.11.0
pydub pydub
chardet==5.2.0 chardet==5.2.0

View file

@ -1,6 +1,6 @@
fastapi==0.118.0 fastapi==0.123.0
uvicorn[standard]==0.37.0 uvicorn[standard]==0.37.0
pydantic==2.11.9 pydantic==2.12.5
python-multipart==0.0.20 python-multipart==0.0.20
itsdangerous==2.2.0 itsdangerous==2.2.0
@ -17,14 +17,14 @@ aiohttp==3.12.15
async-timeout async-timeout
aiocache aiocache
aiofiles aiofiles
starlette-compress==1.6.0 starlette-compress==1.6.1
httpx[socks,http2,zstd,cli,brotli]==0.28.1 httpx[socks,http2,zstd,cli,brotli]==0.28.1
starsessions[redis]==2.2.1 starsessions[redis]==2.2.1
sqlalchemy==2.0.38 sqlalchemy==2.0.38
alembic==1.14.0 alembic==1.17.2
peewee==3.18.1 peewee==3.18.3
peewee-migrate==1.12.2 peewee-migrate==1.14.3
pycrdt==0.12.25 pycrdt==0.12.25
redis redis
@ -33,11 +33,11 @@ APScheduler==3.10.4
RestrictedPython==8.0 RestrictedPython==8.0
loguru==0.7.3 loguru==0.7.3
asgiref==3.8.1 asgiref==3.11.0
# AI libraries # AI libraries
tiktoken tiktoken
mcp==1.21.2 mcp==1.22.0
openai openai
anthropic anthropic
@ -58,18 +58,18 @@ accelerate
pyarrow==20.0.0 # fix: pin pyarrow version to 20 for rpi compatibility #15897 pyarrow==20.0.0 # fix: pin pyarrow version to 20 for rpi compatibility #15897
einops==0.8.1 einops==0.8.1
ftfy==6.2.3 ftfy==6.3.1
chardet==5.2.0 chardet==5.2.0
pypdf==6.4.0 pypdf==6.4.0
fpdf2==2.8.2 fpdf2==2.8.2
pymdown-extensions==10.14.2 pymdown-extensions==10.17.2
docx2txt==0.8 docx2txt==0.8
python-pptx==1.0.2 python-pptx==1.0.2
unstructured==0.18.18 unstructured==0.18.21
msoffcrypto-tool==5.4.2 msoffcrypto-tool==5.4.2
nltk==3.9.1 nltk==3.9.1
Markdown==3.9 Markdown==3.10
pypandoc==1.15 pypandoc==1.16.2
pandas==2.2.3 pandas==2.2.3
openpyxl==3.1.5 openpyxl==3.1.5
pyxlsb==1.0.10 pyxlsb==1.0.10
@ -87,12 +87,12 @@ rank-bm25==0.2.2
onnxruntime==1.20.1 onnxruntime==1.20.1
faster-whisper==1.1.1 faster-whisper==1.1.1
black==25.9.0 black==25.11.0
youtube-transcript-api==1.2.2 youtube-transcript-api==1.2.2
pytube==15.0.0 pytube==15.0.0
pydub pydub
ddgs==9.0.0 ddgs==9.9.2
azure-ai-documentintelligence==1.0.2 azure-ai-documentintelligence==1.0.2
azure-identity==1.25.0 azure-identity==1.25.0
@ -104,7 +104,7 @@ google-api-python-client
google-auth-httplib2 google-auth-httplib2
google-auth-oauthlib google-auth-oauthlib
googleapis-common-protos==1.70.0 googleapis-common-protos==1.72.0
google-cloud-storage==2.19.0 google-cloud-storage==2.19.0
## Databases ## Databases
@ -113,11 +113,11 @@ psycopg2-binary==2.9.10
pgvector==0.4.1 pgvector==0.4.1
PyMySQL==1.1.1 PyMySQL==1.1.1
boto3==1.40.5 boto3==1.41.5
pymilvus==2.6.4 pymilvus==2.6.4
qdrant-client==1.14.3 qdrant-client==1.14.3
playwright==1.49.1 # Caution: version must match docker-compose.playwright.yaml playwright==1.56.0 # Caution: version must match docker-compose.playwright.yaml
elasticsearch==9.1.0 elasticsearch==9.1.0
pinecone==6.0.2 pinecone==6.0.2
oracledb==3.2.0 oracledb==3.2.0
@ -130,13 +130,13 @@ colbert-ai==0.2.21
## Tests ## Tests
docker~=7.1.0 docker~=7.1.0
pytest~=8.4.1 pytest~=8.4.1
pytest-docker~=3.1.1 pytest-docker~=3.2.5
## LDAP ## LDAP
ldap3==2.9.1 ldap3==2.9.1
## Firecrawl ## Firecrawl
firecrawl-py==4.5.0 firecrawl-py==4.10.0
## Trace ## Trace
opentelemetry-api==1.38.0 opentelemetry-api==1.38.0

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "open-webui", "name": "open-webui",
"version": "0.6.40", "version": "0.6.41",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "open-webui", "name": "open-webui",
"version": "0.6.40", "version": "0.6.41",
"dependencies": { "dependencies": {
"@azure/msal-browser": "^4.5.0", "@azure/msal-browser": "^4.5.0",
"@codemirror/lang-javascript": "^6.2.2", "@codemirror/lang-javascript": "^6.2.2",

View file

@ -1,6 +1,6 @@
{ {
"name": "open-webui", "name": "open-webui",
"version": "0.6.40", "version": "0.6.41",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "npm run pyodide:fetch && vite dev --host", "dev": "npm run pyodide:fetch && vite dev --host",

View file

@ -6,9 +6,9 @@ authors = [
] ]
license = { file = "LICENSE" } license = { file = "LICENSE" }
dependencies = [ dependencies = [
"fastapi==0.118.0", "fastapi==0.123.0",
"uvicorn[standard]==0.37.0", "uvicorn[standard]==0.37.0",
"pydantic==2.11.9", "pydantic==2.12.5",
"python-multipart==0.0.20", "python-multipart==0.0.20",
"itsdangerous==2.2.0", "itsdangerous==2.2.0",
@ -25,14 +25,14 @@ dependencies = [
"async-timeout", "async-timeout",
"aiocache", "aiocache",
"aiofiles", "aiofiles",
"starlette-compress==1.6.0", "starlette-compress==1.6.1",
"httpx[socks,http2,zstd,cli,brotli]==0.28.1", "httpx[socks,http2,zstd,cli,brotli]==0.28.1",
"starsessions[redis]==2.2.1", "starsessions[redis]==2.2.1",
"sqlalchemy==2.0.38", "sqlalchemy==2.0.38",
"alembic==1.14.0", "alembic==1.17.2",
"peewee==3.18.1", "peewee==3.18.3",
"peewee-migrate==1.12.2", "peewee-migrate==1.14.3",
"pycrdt==0.12.25", "pycrdt==0.12.25",
"redis", "redis",
@ -41,10 +41,10 @@ dependencies = [
"RestrictedPython==8.0", "RestrictedPython==8.0",
"loguru==0.7.3", "loguru==0.7.3",
"asgiref==3.8.1", "asgiref==3.11.0",
"tiktoken", "tiktoken",
"mcp==1.21.2", "mcp==1.22.0",
"openai", "openai",
"anthropic", "anthropic",
@ -58,7 +58,7 @@ dependencies = [
"chromadb==1.0.20", "chromadb==1.0.20",
"opensearch-py==2.8.0", "opensearch-py==2.8.0",
"PyMySQL==1.1.1", "PyMySQL==1.1.1",
"boto3==1.40.5", "boto3==1.41.5",
"transformers==4.57.3", "transformers==4.57.3",
"sentence-transformers==5.1.2", "sentence-transformers==5.1.2",
@ -66,18 +66,18 @@ dependencies = [
"pyarrow==20.0.0", "pyarrow==20.0.0",
"einops==0.8.1", "einops==0.8.1",
"ftfy==6.2.3", "ftfy==6.3.1",
"chardet==5.2.0", "chardet==5.2.0",
"pypdf==6.4.0", "pypdf==6.4.0",
"fpdf2==2.8.2", "fpdf2==2.8.2",
"pymdown-extensions==10.14.2", "pymdown-extensions==10.17.2",
"docx2txt==0.8", "docx2txt==0.8",
"python-pptx==1.0.2", "python-pptx==1.0.2",
"unstructured==0.18.18", "unstructured==0.18.21",
"msoffcrypto-tool==5.4.2", "msoffcrypto-tool==5.4.2",
"nltk==3.9.1", "nltk==3.9.1",
"Markdown==3.9", "Markdown==3.10",
"pypandoc==1.15", "pypandoc==1.16.2",
"pandas==2.2.3", "pandas==2.2.3",
"openpyxl==3.1.5", "openpyxl==3.1.5",
"pyxlsb==1.0.10", "pyxlsb==1.0.10",
@ -96,18 +96,18 @@ dependencies = [
"onnxruntime==1.20.1", "onnxruntime==1.20.1",
"faster-whisper==1.1.1", "faster-whisper==1.1.1",
"black==25.9.0", "black==25.11.0",
"youtube-transcript-api==1.2.2", "youtube-transcript-api==1.2.2",
"pytube==15.0.0", "pytube==15.0.0",
"pydub", "pydub",
"ddgs==9.0.0", "ddgs==9.9.2",
"google-api-python-client", "google-api-python-client",
"google-auth-httplib2", "google-auth-httplib2",
"google-auth-oauthlib", "google-auth-oauthlib",
"googleapis-common-protos==1.70.0", "googleapis-common-protos==1.72.0",
"google-cloud-storage==2.19.0", "google-cloud-storage==2.19.0",
"azure-identity==1.25.0", "azure-identity==1.25.0",
@ -142,8 +142,8 @@ all = [
"gcp-storage-emulator>=2024.8.3", "gcp-storage-emulator>=2024.8.3",
"docker~=7.1.0", "docker~=7.1.0",
"pytest~=8.3.2", "pytest~=8.3.2",
"pytest-docker~=3.1.1", "pytest-docker~=3.2.5",
"playwright==1.49.1", "playwright==1.56.0",
"elasticsearch==9.1.0", "elasticsearch==9.1.0",
"qdrant-client==1.14.3", "qdrant-client==1.14.3",
@ -153,7 +153,7 @@ all = [
"oracledb==3.2.0", "oracledb==3.2.0",
"colbert-ai==0.2.21", "colbert-ai==0.2.21",
"firecrawl-py==4.5.0", "firecrawl-py==4.10.0",
"azure-search-documents==11.6.0", "azure-search-documents==11.6.0",
] ]

View file

@ -491,6 +491,44 @@ export const getChannelThreadMessages = async (
return res; return res;
}; };
export const getMessageData = async (
token: string = '',
channel_id: string,
message_id: string
) => {
let error = null;
const res = await fetch(
`${WEBUI_API_BASE_URL}/channels/${channel_id}/messages/${message_id}/data`,
{
method: 'GET',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json',
authorization: `Bearer ${token}`
}
}
)
.then(async (res) => {
if (!res.ok) throw await res.json();
return res.json();
})
.then((json) => {
return json;
})
.catch((err) => {
error = err.detail;
console.error(err);
return null;
});
if (error) {
throw error;
}
return res;
};
type MessageForm = { type MessageForm = {
temp_id?: string; temp_id?: string;
reply_to_id?: string; reply_to_id?: string;

View file

@ -1,16 +1,26 @@
import { WEBUI_API_BASE_URL } from '$lib/constants'; import { WEBUI_API_BASE_URL } from '$lib/constants';
import { splitStream } from '$lib/utils'; import { splitStream } from '$lib/utils';
export const uploadFile = async (token: string, file: File, metadata?: object | null) => { export const uploadFile = async (
token: string,
file: File,
metadata?: object | null,
process?: boolean | null
) => {
const data = new FormData(); const data = new FormData();
data.append('file', file); data.append('file', file);
if (metadata) { if (metadata) {
data.append('metadata', JSON.stringify(metadata)); data.append('metadata', JSON.stringify(metadata));
} }
const searchParams = new URLSearchParams();
if (process !== undefined && process !== null) {
searchParams.append('process', String(process));
}
let error = null; let error = null;
const res = await fetch(`${WEBUI_API_BASE_URL}/files/`, { const res = await fetch(`${WEBUI_API_BASE_URL}/files/?${searchParams.toString()}`, {
method: 'POST', method: 'POST',
headers: { headers: {
Accept: 'application/json', Accept: 'application/json',

View file

@ -35,6 +35,7 @@ type ChunkConfigForm = {
type DocumentIntelligenceConfigForm = { type DocumentIntelligenceConfigForm = {
key: string; key: string;
endpoint: string; endpoint: string;
model: string;
}; };
type ContentExtractConfigForm = { type ContentExtractConfigForm = {

View file

@ -358,7 +358,7 @@
<div class="flex-shrink-0 self-start"> <div class="flex-shrink-0 self-start">
<select <select
id="select-bearer-or-session" id="select-bearer-or-session"
class={`w-full text-sm bg-transparent pr-5 ${($settings?.highContrastMode ?? false) ? 'placeholder:text-gray-700 dark:placeholder:text-gray-100' : 'outline-hidden placeholder:text-gray-300 dark:placeholder:text-gray-700'}`} class={`dark:bg-gray-900 w-full text-sm bg-transparent pr-5 ${($settings?.highContrastMode ?? false) ? 'placeholder:text-gray-700 dark:placeholder:text-gray-100' : 'outline-hidden placeholder:text-gray-300 dark:placeholder:text-gray-700'}`}
bind:value={auth_type} bind:value={auth_type}
> >
<option value="none">{$i18n.t('None')}</option> <option value="none">{$i18n.t('None')}</option>

View file

@ -534,7 +534,7 @@
<div class="flex-shrink-0 self-start"> <div class="flex-shrink-0 self-start">
<select <select
id="select-bearer-or-session" id="select-bearer-or-session"
class={`w-full text-sm bg-transparent pr-5 ${($settings?.highContrastMode ?? false) ? 'placeholder:text-gray-700 dark:placeholder:text-gray-100' : 'outline-hidden placeholder:text-gray-300 dark:placeholder:text-gray-700'}`} class={`dark:bg-gray-900 w-full text-sm bg-transparent pr-5 ${($settings?.highContrastMode ?? false) ? 'placeholder:text-gray-700 dark:placeholder:text-gray-100' : 'outline-hidden placeholder:text-gray-300 dark:placeholder:text-gray-700'}`}
bind:value={spec_type} bind:value={spec_type}
> >
<option value="url">{$i18n.t('URL')}</option> <option value="url">{$i18n.t('URL')}</option>
@ -644,7 +644,7 @@
<div class="flex-shrink-0 self-start"> <div class="flex-shrink-0 self-start">
<select <select
id="select-bearer-or-session" id="select-bearer-or-session"
class={`w-full text-sm bg-transparent pr-5 ${($settings?.highContrastMode ?? false) ? 'placeholder:text-gray-700 dark:placeholder:text-gray-100' : 'outline-hidden placeholder:text-gray-300 dark:placeholder:text-gray-700'}`} class={`dark:bg-gray-900 w-full text-sm bg-transparent pr-5 ${($settings?.highContrastMode ?? false) ? 'placeholder:text-gray-700 dark:placeholder:text-gray-100' : 'outline-hidden placeholder:text-gray-300 dark:placeholder:text-gray-700'}`}
bind:value={auth_type} bind:value={auth_type}
> >
<option value="none">{$i18n.t('None')}</option> <option value="none">{$i18n.t('None')}</option>

View file

@ -597,6 +597,20 @@
required={false} required={false}
/> />
</div> </div>
<div class="my-0.5 flex flex-col w-full">
<div class=" mb-1 text-xs font-medium">
{$i18n.t('Document Intelligence Model')}
</div>
<div class="flex w-full">
<div class="flex-1 mr-2">
<input
class="flex-1 w-full text-sm bg-transparent outline-hidden"
placeholder={$i18n.t('Enter Document Intelligence Model')}
bind:value={RAGConfig.DOCUMENT_INTELLIGENCE_MODEL}
/>
</div>
</div>
</div>
{:else if RAGConfig.CONTENT_EXTRACTION_ENGINE === 'mistral_ocr'} {:else if RAGConfig.CONTENT_EXTRACTION_ENGINE === 'mistral_ocr'}
<div class="my-0.5 flex gap-2 pr-2"> <div class="my-0.5 flex gap-2 pr-2">
<input <input

View file

@ -350,7 +350,7 @@
<div class="flex items-center"> <div class="flex items-center">
<select <select
class="w-full py-1 text-sm rounded-lg bg-transparent {selectedModelId class="dark:bg-gray-900 w-full py-1 text-sm rounded-lg bg-transparent {selectedModelId
? '' ? ''
: 'text-gray-500'} placeholder:text-gray-300 dark:placeholder:text-gray-700 outline-hidden" : 'text-gray-500'} placeholder:text-gray-300 dark:placeholder:text-gray-700 outline-hidden"
bind:value={selectedModelId} bind:value={selectedModelId}

View file

@ -19,7 +19,7 @@
<div class="flex items-center -mr-1"> <div class="flex items-center -mr-1">
<select <select
class="w-full py-1 text-sm rounded-lg bg-transparent {selectedModelId class="dark:bg-gray-900 w-full py-1 text-sm rounded-lg bg-transparent {selectedModelId
? '' ? ''
: 'text-gray-500'} placeholder:text-gray-300 dark:placeholder:text-gray-700 outline-hidden" : 'text-gray-500'} placeholder:text-gray-300 dark:placeholder:text-gray-700 outline-hidden"
bind:value={selectedModelId} bind:value={selectedModelId}

View file

@ -33,6 +33,7 @@
import Banner from '$lib/components/common/Banner.svelte'; import Banner from '$lib/components/common/Banner.svelte';
import Markdown from '$lib/components/chat/Messages/Markdown.svelte'; import Markdown from '$lib/components/chat/Messages/Markdown.svelte';
import Spinner from '$lib/components/common/Spinner.svelte'; import Spinner from '$lib/components/common/Spinner.svelte';
import ProfilePreview from '$lib/components/channel/Messages/Message/ProfilePreview.svelte';
const i18n = getContext('i18n'); const i18n = getContext('i18n');
@ -356,11 +357,13 @@
</td> </td>
<td class="px-3 py-1 font-medium text-gray-900 dark:text-white max-w-48"> <td class="px-3 py-1 font-medium text-gray-900 dark:text-white max-w-48">
<div class="flex items-center gap-2"> <div class="flex items-center gap-2">
<ProfilePreview {user} side="right" align="center" sideOffset={6}>
<img <img
class="rounded-full w-6 h-6 object-cover mr-0.5 flex-shrink-0" class="rounded-full w-6 h-6 object-cover mr-0.5 flex-shrink-0"
src={`${WEBUI_API_BASE_URL}/users/${user.id}/profile/image`} src={`${WEBUI_API_BASE_URL}/users/${user.id}/profile/image`}
alt="user" alt="user"
/> />
</ProfilePreview>
<div class="font-medium truncate">{user.name}</div> <div class="font-medium truncate">{user.name}</div>

View file

@ -180,7 +180,7 @@
<div class="flex-1"> <div class="flex-1">
<select <select
class="w-full capitalize rounded-lg text-sm bg-transparent dark:disabled:text-gray-500 outline-hidden" class="dark:bg-gray-900 w-full capitalize rounded-lg text-sm bg-transparent dark:disabled:text-gray-500 outline-hidden"
bind:value={_user.role} bind:value={_user.role}
placeholder={$i18n.t('Enter Your Role')} placeholder={$i18n.t('Enter Your Role')}
required required

View file

@ -37,6 +37,16 @@
toast.error($i18n.t('Failed to add members')); toast.error($i18n.t('Failed to add members'));
} }
}; };
const reset = () => {
userIds = [];
groupIds = [];
loading = false;
};
$: if (!show) {
reset();
}
</script> </script>
{#if channel} {#if channel}

View file

@ -421,13 +421,10 @@
imageUrl = await compressImageHandler(imageUrl, $settings, $config); imageUrl = await compressImageHandler(imageUrl, $settings, $config);
} }
files = [ const blob = await (await fetch(imageUrl)).blob();
...files, const compressedFile = new File([blob], file.name, { type: file.type });
{
type: 'image', uploadFileHandler(compressedFile, false);
url: `${imageUrl}`
}
];
}; };
reader.readAsDataURL(file['type'] === 'image/heic' ? await convertHeicToJpeg(file) : file); reader.readAsDataURL(file['type'] === 'image/heic' ? await convertHeicToJpeg(file) : file);
@ -437,7 +434,7 @@
}); });
}; };
const uploadFileHandler = async (file) => { const uploadFileHandler = async (file, process = true) => {
const tempItemId = uuidv4(); const tempItemId = uuidv4();
const fileItem = { const fileItem = {
type: 'file', type: 'file',
@ -461,7 +458,6 @@
try { try {
// During the file upload, file content is automatically extracted. // During the file upload, file content is automatically extracted.
// If the file is an audio file, provide the language for STT. // If the file is an audio file, provide the language for STT.
let metadata = null; let metadata = null;
if ( if (
@ -473,7 +469,7 @@
}; };
} }
const uploadedFile = await uploadFile(localStorage.token, file, metadata); const uploadedFile = await uploadFile(localStorage.token, file, metadata, process);
if (uploadedFile) { if (uploadedFile) {
console.info('File upload completed:', { console.info('File upload completed:', {
@ -492,6 +488,7 @@
fileItem.id = uploadedFile.id; fileItem.id = uploadedFile.id;
fileItem.collection_name = fileItem.collection_name =
uploadedFile?.meta?.collection_name || uploadedFile?.collection_name; uploadedFile?.meta?.collection_name || uploadedFile?.collection_name;
fileItem.content_type = uploadedFile.meta?.content_type || uploadedFile.content_type;
fileItem.url = `${WEBUI_API_BASE_URL}/files/${uploadedFile.id}`; fileItem.url = `${WEBUI_API_BASE_URL}/files/${uploadedFile.id}`;
files = files; files = files;
@ -807,11 +804,11 @@
{#if files.length > 0} {#if files.length > 0}
<div class="mx-2 mt-2.5 -mb-1 flex flex-wrap gap-2"> <div class="mx-2 mt-2.5 -mb-1 flex flex-wrap gap-2">
{#each files as file, fileIdx} {#each files as file, fileIdx}
{#if file.type === 'image'} {#if file.type === 'image' || (file?.content_type ?? '').startsWith('image/')}
<div class=" relative group"> <div class=" relative group">
<div class="relative"> <div class="relative">
<Image <Image
src={file.url} src={`${file.url}${file?.content_type ? '/content' : ''}`}
alt="" alt=""
imageClassName=" size-10 rounded-xl object-cover" imageClassName=" size-10 rounded-xl object-cover"
/> />

View file

@ -126,6 +126,7 @@
{#each messageList as message, messageIdx (id ? `${id}-${message.id}` : message.id)} {#each messageList as message, messageIdx (id ? `${id}-${message.id}` : message.id)}
<Message <Message
{message} {message}
{channel}
{thread} {thread}
replyToMessage={replyToMessage?.id === message.id} replyToMessage={replyToMessage?.id === message.id}
disabled={!channel?.write_access || message?.temp_id} disabled={!channel?.write_access || message?.temp_id}

View file

@ -17,6 +17,7 @@
import { settings, user, shortCodesToEmojis } from '$lib/stores'; import { settings, user, shortCodesToEmojis } from '$lib/stores';
import { WEBUI_API_BASE_URL, WEBUI_BASE_URL } from '$lib/constants'; import { WEBUI_API_BASE_URL, WEBUI_BASE_URL } from '$lib/constants';
import { getMessageData } from '$lib/apis/channels';
import Markdown from '$lib/components/chat/Messages/Markdown.svelte'; import Markdown from '$lib/components/chat/Messages/Markdown.svelte';
import ProfileImage from '$lib/components/chat/Messages/ProfileImage.svelte'; import ProfileImage from '$lib/components/chat/Messages/ProfileImage.svelte';
@ -42,6 +43,8 @@
export let className = ''; export let className = '';
export let message; export let message;
export let channel;
export let showUserProfile = true; export let showUserProfile = true;
export let thread = false; export let thread = false;
@ -61,6 +64,21 @@
let edit = false; let edit = false;
let editedContent = null; let editedContent = null;
let showDeleteConfirmDialog = false; let showDeleteConfirmDialog = false;
const loadMessageData = async () => {
if (message && message?.data) {
const res = await getMessageData(localStorage.token, channel?.id, message.id);
if (res) {
message.data = res;
}
}
};
onMount(async () => {
if (message && message?.data) {
await loadMessageData();
}
});
</script> </script>
<ConfirmDialog <ConfirmDialog
@ -314,12 +332,27 @@
</Name> </Name>
{/if} {/if}
{#if (message?.data?.files ?? []).length > 0} {#if message?.data === true}
<!-- loading indicator -->
<div class=" my-2">
<Skeleton />
</div>
{:else if (message?.data?.files ?? []).length > 0}
<div class="my-2.5 w-full flex overflow-x-auto gap-2 flex-wrap"> <div class="my-2.5 w-full flex overflow-x-auto gap-2 flex-wrap">
{#each message?.data?.files as file} {#each message?.data?.files as file}
<div> <div>
{#if file.type === 'image'} {#if file.type === 'image' || (file?.content_type ?? '').startsWith('image/')}
<Image src={file.url} alt={file.name} imageClassName=" max-h-96 rounded-lg" /> <Image
src={`${file.url}${file?.content_type ? '/content' : ''}`}
alt={file.name}
imageClassName=" max-h-96 rounded-lg"
/>
{:else if file.type === 'video' || (file?.content_type ?? '').startsWith('video/')}
<video
src={`${file.url}${file?.content_type ? '/content' : ''}`}
controls
class=" max-h-96 rounded-lg"
></video>
{:else} {:else}
<FileItem <FileItem
item={file} item={file}

View file

@ -33,12 +33,12 @@
</script> </script>
{#if user} {#if user}
<div class="py-2.5"> <div class="py-3">
<div class=" flex gap-3.5 w-full px-2.5 items-center"> <div class=" flex gap-3.5 w-full px-3 items-center">
<div class=" items-center flex shrink-0"> <div class=" items-center flex shrink-0">
<img <img
src={`${WEBUI_API_BASE_URL}/users/${user?.id}/profile/image`} src={`${WEBUI_API_BASE_URL}/users/${user?.id}/profile/image`}
class=" size-12 object-cover rounded-xl" class=" size-14 object-cover rounded-xl"
alt="profile" alt="profile"
/> />
</div> </div>
@ -77,7 +77,7 @@
<div class="mx-2 mt-2"> <div class="mx-2 mt-2">
<Tooltip content={user?.status_message}> <Tooltip content={user?.status_message}>
<div <div
class="mb-1 w-full gap-2 px-2.5 py-1.5 rounded-xl bg-gray-50 dark:text-white dark:bg-gray-900/50 text-black transition text-xs flex items-center" class="w-full gap-2 px-2.5 py-1.5 rounded-xl bg-gray-50 dark:text-white dark:bg-gray-900/50 text-black transition text-xs flex items-center"
> >
{#if user?.status_emoji} {#if user?.status_emoji}
<div class=" self-center shrink-0"> <div class=" self-center shrink-0">
@ -92,6 +92,16 @@
</div> </div>
{/if} {/if}
{#if user?.bio}
<div class="mx-3.5 mt-2">
<Tooltip content={user?.bio}>
<div class=" self-center line-clamp-3 flex-1 text-left text-xs">
{user?.bio}
</div>
</Tooltip>
</div>
{/if}
{#if $_user?.id !== user.id} {#if $_user?.id !== user.id}
<hr class="border-gray-100/50 dark:border-gray-800/50 my-2.5" /> <hr class="border-gray-100/50 dark:border-gray-800/50 my-2.5" />

View file

@ -168,7 +168,7 @@
<div class="flex-1"> <div class="flex-1">
<select <select
class="w-full text-sm dark:text-gray-300 bg-transparent outline-hidden" class="dark:bg-gray-900 w-full text-sm dark:text-gray-300 bg-transparent outline-hidden"
bind:value={_gender} bind:value={_gender}
on:change={(e) => { on:change={(e) => {
console.log(_gender); console.log(_gender);

View file

@ -353,7 +353,7 @@
<div class="flex w-full"> <div class="flex w-full">
<div class="flex-1"> <div class="flex-1">
<select <select
class="w-full text-sm bg-transparent dark:text-gray-300 outline-hidden" class="dark:bg-gray-900 w-full text-sm bg-transparent dark:text-gray-300 outline-hidden"
bind:value={voice} bind:value={voice}
> >
<option value="" selected={voice !== ''}>{$i18n.t('Default')}</option> <option value="" selected={voice !== ''}>{$i18n.t('Default')}</option>

View file

@ -364,7 +364,7 @@
type="button" type="button"
class="rounded-lg p-1 transition outline-gray-200 hover:bg-gray-100 dark:outline-gray-700 dark:hover:bg-gray-800" class="rounded-lg p-1 transition outline-gray-200 hover:bg-gray-100 dark:outline-gray-700 dark:hover:bg-gray-800"
on:click={() => { on:click={() => {
textScale = Math.max(1, textScale); textScale = Math.max(1, parseFloat((textScale - 0.1).toFixed(2)));
setTextScaleHandler(textScale); setTextScaleHandler(textScale);
}} }}
aria-labelledby="ui-scale-label" aria-labelledby="ui-scale-label"
@ -397,7 +397,7 @@
type="button" type="button"
class="rounded-lg p-1 transition outline-gray-200 hover:bg-gray-100 dark:outline-gray-700 dark:hover:bg-gray-800" class="rounded-lg p-1 transition outline-gray-200 hover:bg-gray-100 dark:outline-gray-700 dark:hover:bg-gray-800"
on:click={() => { on:click={() => {
textScale = Math.min(1.5, textScale); textScale = Math.min(1.5, parseFloat((textScale + 0.1).toFixed(2)));
setTextScaleHandler(textScale); setTextScaleHandler(textScale);
}} }}
aria-labelledby="ui-scale-label" aria-labelledby="ui-scale-label"

View file

@ -437,6 +437,7 @@
{#if !$temporaryChatEnabled && chat?.id} {#if !$temporaryChatEnabled && chat?.id}
<hr class="border-gray-50/30 dark:border-gray-800/30 my-1" /> <hr class="border-gray-50/30 dark:border-gray-800/30 my-1" />
{#if $folders.length > 0}
<DropdownMenu.Sub> <DropdownMenu.Sub>
<DropdownMenu.SubTrigger <DropdownMenu.SubTrigger
class="flex gap-2 items-center px-3 py-1.5 text-sm cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800 rounded-xl select-none w-full" class="flex gap-2 items-center px-3 py-1.5 text-sm cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800 rounded-xl select-none w-full"
@ -451,19 +452,22 @@
sideOffset={8} sideOffset={8}
> >
{#each $folders.sort((a, b) => b.updated_at - a.updated_at) as folder} {#each $folders.sort((a, b) => b.updated_at - a.updated_at) as folder}
{#if folder?.id}
<DropdownMenu.Item <DropdownMenu.Item
class="flex gap-2 items-center px-3 py-1.5 text-sm cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800 rounded-xl" class="flex gap-2 items-center px-3 py-1.5 text-sm cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800 rounded-xl"
on:click={() => { on:click={() => {
moveChatHandler(chat?.id, folder?.id); moveChatHandler(chat.id, folder.id);
}} }}
> >
<Folder strokeWidth="1.5" /> <Folder strokeWidth="1.5" />
<div class="flex items-center">{folder?.name ?? 'Folder'}</div> <div class="flex items-center">{folder.name ?? 'Folder'}</div>
</DropdownMenu.Item> </DropdownMenu.Item>
{/if}
{/each} {/each}
</DropdownMenu.SubContent> </DropdownMenu.SubContent>
</DropdownMenu.Sub> </DropdownMenu.Sub>
{/if}
<DropdownMenu.Item <DropdownMenu.Item
class="flex gap-2 items-center px-3 py-1.5 text-sm cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800 rounded-xl" class="flex gap-2 items-center px-3 py-1.5 text-sm cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800 rounded-xl"

View file

@ -183,16 +183,9 @@
const initChannels = async () => { const initChannels = async () => {
// default (none), group, dm type // default (none), group, dm type
await channels.set( await channels.set(
(await getChannels(localStorage.token)).sort((a, b) => (await getChannels(localStorage.token)).sort(
a.type === b.type (a, b) =>
? 0 ['', null, 'group', 'dm'].indexOf(a.type) - ['', null, 'group', 'dm'].indexOf(b.type)
: a.type === 'dm'
? 1
: a.type === 'group'
? b.type === 'dm'
? -1
: 0
: -1
) )
); );
}; };

View file

@ -15,6 +15,7 @@
import Hashtag from '$lib/components/icons/Hashtag.svelte'; import Hashtag from '$lib/components/icons/Hashtag.svelte';
import Users from '$lib/components/icons/Users.svelte'; import Users from '$lib/components/icons/Users.svelte';
import XMark from '$lib/components/icons/XMark.svelte'; import XMark from '$lib/components/icons/XMark.svelte';
import Emoji from '$lib/components/common/Emoji.svelte';
export let onUpdate: Function = () => {}; export let onUpdate: Function = () => {};
@ -131,14 +132,38 @@
{/if} {/if}
</div> </div>
<div class=" text-left self-center overflow-hidden w-full line-clamp-1 flex-1 pr-1"> <div
class=" text-left self-center overflow-hidden w-full line-clamp-1 flex-1 pr-1 flex items-center gap-2.5"
>
{#if channel?.name} {#if channel?.name}
<span>
{channel.name} {channel.name}
</span>
{:else} {:else}
<span class="shrink-0">
{channel?.users {channel?.users
?.filter((u) => u.id !== $user?.id) ?.filter((u) => u.id !== $user?.id)
.map((u) => u.name) .map((u) => u.name)
.join(', ')} .join(', ')}
</span>
{#if channel?.users?.length === 2}
{@const dmUser = channel.users.find((u) => u.id !== $user?.id)}
{#if dmUser?.status_emoji || dmUser?.status_message}
<span class="flex gap-1.5">
{#if dmUser?.status_emoji}
<div class=" self-center shrink-0">
<Emoji className="size-3.5" shortCode={dmUser?.status_emoji} />
</div>
{/if}
<div class="line-clamp-1 italic">
{dmUser?.status_message}
</div>
</span>
{/if}
{/if}
{/if} {/if}
</div> </div>
</div> </div>

View file

@ -213,11 +213,16 @@
}; };
const onClickOutside = (event) => { const onClickOutside = (event) => {
if (confirmEdit && !event.target.closest(`#chat-title-input-${id}`)) { if (!itemElement.contains(event.target)) {
if (confirmEdit) {
if (chatTitle !== title) {
editChatTitle(id, chatTitle);
}
confirmEdit = false; confirmEdit = false;
ignoreBlur = false;
chatTitle = ''; chatTitle = '';
} }
}
}; };
onMount(() => { onMount(() => {
@ -365,16 +370,6 @@
disabled={generating} disabled={generating}
on:keydown={chatTitleInputKeydownHandler} on:keydown={chatTitleInputKeydownHandler}
on:blur={async (e) => { on:blur={async (e) => {
// check if target is generate button
if (ignoreBlur) {
ignoreBlur = false;
if (e.relatedTarget?.id === 'generate-title-button') {
generateTitleHandler();
}
return;
}
if (doubleClicked) { if (doubleClicked) {
e.preventDefault(); e.preventDefault();
e.stopPropagation(); e.stopPropagation();
@ -388,13 +383,6 @@
doubleClicked = false; doubleClicked = false;
return; return;
} }
if (chatTitle !== title) {
editChatTitle(id, chatTitle);
}
confirmEdit = false;
chatTitle = '';
}} }}
/> />
</div> </div>
@ -473,16 +461,8 @@
class=" self-center dark:hover:text-white transition disabled:cursor-not-allowed" class=" self-center dark:hover:text-white transition disabled:cursor-not-allowed"
id="generate-title-button" id="generate-title-button"
disabled={generating} disabled={generating}
on:mouseenter={() => { on:click={() => {
ignoreBlur = true;
}}
on:click={(e) => {
e.preventDefault();
e.stopImmediatePropagation();
e.stopPropagation();
generateTitleHandler(); generateTitleHandler();
ignoreBlur = false;
}} }}
> >
<Sparkles strokeWidth="2" /> <Sparkles strokeWidth="2" />

View file

@ -137,6 +137,7 @@
class="mb-1 w-full gap-2 px-2.5 py-1.5 rounded-xl bg-gray-50 dark:text-white dark:bg-gray-900/50 text-black transition text-xs flex items-center" class="mb-1 w-full gap-2 px-2.5 py-1.5 rounded-xl bg-gray-50 dark:text-white dark:bg-gray-900/50 text-black transition text-xs flex items-center"
type="button" type="button"
on:click={() => { on:click={() => {
show = false;
showUserStatusModal = true; showUserStatusModal = true;
}} }}
> >
@ -187,6 +188,7 @@
class="mb-1 w-full px-3 py-1.5 gap-1 rounded-xl bg-gray-50 dark:text-white dark:bg-gray-900/50 text-black transition text-xs flex items-center justify-center" class="mb-1 w-full px-3 py-1.5 gap-1 rounded-xl bg-gray-50 dark:text-white dark:bg-gray-900/50 text-black transition text-xs flex items-center justify-center"
type="button" type="button"
on:click={() => { on:click={() => {
show = false;
showUserStatusModal = true; showUserStatusModal = true;
}} }}
> >

View file

@ -1,5 +1,5 @@
<script lang="ts"> <script lang="ts">
import { getContext, createEventDispatcher, onMount } from 'svelte'; import { getContext, createEventDispatcher, onMount, tick } from 'svelte';
const i18n = getContext('i18n'); const i18n = getContext('i18n');
import { toast } from 'svelte-sonner'; import { toast } from 'svelte-sonner';
@ -52,9 +52,16 @@
resetHandler(); resetHandler();
} }
const init = () => { const init = async () => {
emoji = $user?.status_emoji || ''; emoji = $user?.status_emoji || '';
message = $user?.status_message || ''; message = $user?.status_message || '';
await tick();
const input = document.getElementById('status-message') as HTMLInputElement;
if (input) {
input.focus();
input.select();
}
}; };
const resetHandler = () => { const resetHandler = () => {
@ -113,6 +120,7 @@
</EmojiPicker> </EmojiPicker>
<input <input
id="status-message"
type="text" type="text"
bind:value={message} bind:value={message}
class={`w-full flex-1 text-sm bg-transparent ${($settings?.highContrastMode ?? false) ? 'placeholder:text-gray-700 dark:placeholder:text-gray-100' : 'outline-hidden placeholder:text-gray-300 dark:placeholder:text-gray-700'}`} class={`w-full flex-1 text-sm bg-transparent ${($settings?.highContrastMode ?? false) ? 'placeholder:text-gray-700 dark:placeholder:text-gray-100' : 'outline-hidden placeholder:text-gray-300 dark:placeholder:text-gray-700'}`}

View file

@ -546,7 +546,7 @@
<div> <div>
<select <select
class="text-sm w-full bg-transparent outline-hidden" class="dark:bg-gray-900 text-sm w-full bg-transparent outline-hidden"
placeholder={$i18n.t('Select a base model (e.g. llama3, gpt-4o)')} placeholder={$i18n.t('Select a base model (e.g. llama3, gpt-4o)')}
bind:value={info.base_model_id} bind:value={info.base_model_id}
on:change={(e) => { on:change={(e) => {

View file

@ -105,7 +105,7 @@
<div> <div>
<select <select
id="models" id="models"
class="outline-hidden bg-transparent text-sm font-medium block w-fit pr-10 max-w-full placeholder-gray-400" class="dark:bg-gray-900 outline-hidden bg-transparent text-sm font-medium block w-fit pr-10 max-w-full placeholder-gray-400"
value={accessControl !== null ? 'private' : 'public'} value={accessControl !== null ? 'private' : 'public'}
on:change={(e) => { on:change={(e) => {
if (e.target.value === 'public') { if (e.target.value === 'public') {
@ -224,7 +224,7 @@
<div class="flex flex-1 items-center"> <div class="flex flex-1 items-center">
<div class="w-full px-0.5"> <div class="w-full px-0.5">
<select <select
class="outline-hidden bg-transparent text-sm block w-full pr-10 max-w-full class="dark:bg-gray-900 outline-hidden bg-transparent text-sm block w-full pr-10 max-w-full
{selectedGroupId ? '' : 'text-gray-500'} {selectedGroupId ? '' : 'text-gray-500'}
dark:placeholder-gray-500" dark:placeholder-gray-500"
bind:value={selectedGroupId} bind:value={selectedGroupId}

View file

@ -18,11 +18,15 @@
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
"{{model}} download has been canceled": "", "{{model}} download has been canceled": "",
"{{NAMES}} reacted with {{REACTION}}": "",
"{{user}}'s Chats": "دردشات {{user}}", "{{user}}'s Chats": "دردشات {{user}}",
"{{webUIName}} Backend Required": "{{webUIName}} مطلوب", "{{webUIName}} Backend Required": "{{webUIName}} مطلوب",
"*Prompt node ID(s) are required for image generation": "", "*Prompt node ID(s) are required for image generation": "",
"1 Source": "", "1 Source": "",
"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.": "", "A new version (v{{LATEST_VERSION}}) is now available.": "",
"A private conversation between you and selected users": "",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "يتم استخدام نموذج المهمة عند تنفيذ مهام مثل إنشاء عناوين للدردشات واستعلامات بحث الويب", "A task model is used when performing tasks such as generating titles for chats and web search queries": "يتم استخدام نموذج المهمة عند تنفيذ مهام مثل إنشاء عناوين للدردشات واستعلامات بحث الويب",
"a user": "مستخدم", "a user": "مستخدم",
"About": "عن", "About": "عن",
@ -53,7 +57,8 @@
"Add Custom Prompt": "", "Add Custom Prompt": "",
"Add Details": "", "Add Details": "",
"Add Files": "إضافة ملفات", "Add Files": "إضافة ملفات",
"Add Group": "", "Add Member": "",
"Add Members": "",
"Add Memory": "إضافة ذكرايات", "Add Memory": "إضافة ذكرايات",
"Add Model": "اضافة موديل", "Add Model": "اضافة موديل",
"Add Reaction": "", "Add Reaction": "",
@ -252,6 +257,7 @@
"Citations": "", "Citations": "",
"Clear memory": "", "Clear memory": "",
"Clear Memory": "", "Clear Memory": "",
"Clear status": "",
"click here": "", "click here": "",
"Click here for filter guides.": "", "Click here for filter guides.": "",
"Click here for help.": "أضغط هنا للمساعدة", "Click here for help.": "أضغط هنا للمساعدة",
@ -288,6 +294,7 @@
"Code Interpreter": "", "Code Interpreter": "",
"Code Interpreter Engine": "", "Code Interpreter Engine": "",
"Code Interpreter Prompt Template": "", "Code Interpreter Prompt Template": "",
"Collaboration channel where people join as members": "",
"Collapse": "", "Collapse": "",
"Collection": "مجموعة", "Collection": "مجموعة",
"Color": "", "Color": "",
@ -447,6 +454,7 @@
"Discover, download, and explore custom prompts": "اكتشاف وتنزيل واستكشاف المطالبات المخصصة", "Discover, download, and explore custom prompts": "اكتشاف وتنزيل واستكشاف المطالبات المخصصة",
"Discover, download, and explore custom tools": "", "Discover, download, and explore custom tools": "",
"Discover, download, and explore model presets": "اكتشاف وتنزيل واستكشاف الإعدادات المسبقة للنموذج", "Discover, download, and explore model presets": "اكتشاف وتنزيل واستكشاف الإعدادات المسبقة للنموذج",
"Discussion channel where access is based on groups and permissions": "",
"Display": "", "Display": "",
"Display chat title in tab": "", "Display chat title in tab": "",
"Display Emoji in Call": "", "Display Emoji in Call": "",
@ -463,6 +471,7 @@
"Document": "المستند", "Document": "المستند",
"Document Intelligence": "", "Document Intelligence": "",
"Document Intelligence endpoint required.": "", "Document Intelligence endpoint required.": "",
"Document Intelligence Model": "",
"Documentation": "", "Documentation": "",
"Documents": "مستندات", "Documents": "مستندات",
"does not make any external connections, and your data stays securely on your locally hosted server.": "لا يجري أي اتصالات خارجية، وتظل بياناتك آمنة على الخادم المستضاف محليًا.", "does not make any external connections, and your data stays securely on your locally hosted server.": "لا يجري أي اتصالات خارجية، وتظل بياناتك آمنة على الخادم المستضاف محليًا.",
@ -485,12 +494,15 @@
"e.g. \"json\" or a JSON schema": "", "e.g. \"json\" or a JSON schema": "",
"e.g. 60": "", "e.g. 60": "",
"e.g. A filter to remove profanity from text": "", "e.g. A filter to remove profanity from text": "",
"e.g. about the Roman Empire": "",
"e.g. en": "", "e.g. en": "",
"e.g. My Filter": "", "e.g. My Filter": "",
"e.g. My Tools": "", "e.g. My Tools": "",
"e.g. my_filter": "", "e.g. my_filter": "",
"e.g. my_tools": "", "e.g. my_tools": "",
"e.g. pdf, docx, txt": "", "e.g. pdf, docx, txt": "",
"e.g. Tell me a fun fact": "",
"e.g. Tell me a fun fact about the Roman Empire": "",
"e.g. Tools for performing various operations": "", "e.g. Tools for performing various operations": "",
"e.g., 3, 4, 5 (leave blank for default)": "", "e.g., 3, 4, 5 (leave blank for default)": "",
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "", "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
@ -564,6 +576,7 @@
"Enter Docling Server URL": "", "Enter Docling Server URL": "",
"Enter Document Intelligence Endpoint": "", "Enter Document Intelligence Endpoint": "",
"Enter Document Intelligence Key": "", "Enter Document Intelligence Key": "",
"Enter Document Intelligence Model": "",
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "", "Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
"Enter Exa API Key": "", "Enter Exa API Key": "",
"Enter External Document Loader API Key": "", "Enter External Document Loader API Key": "",
@ -689,7 +702,6 @@
"Export Config to JSON File": "", "Export Config to JSON File": "",
"Export Models": "", "Export Models": "",
"Export Presets": "", "Export Presets": "",
"Export Prompt Suggestions": "",
"Export Prompts": "", "Export Prompts": "",
"Export to CSV": "", "Export to CSV": "",
"Export Tools": "", "Export Tools": "",
@ -704,6 +716,8 @@
"External Web Search URL": "", "External Web Search URL": "",
"Fade Effect for Streaming Text": "", "Fade Effect for Streaming Text": "",
"Failed to add file.": "", "Failed to add file.": "",
"Failed to add members": "",
"Failed to clear status": "",
"Failed to connect to {{URL}} OpenAPI tool server": "", "Failed to connect to {{URL}} OpenAPI tool server": "",
"Failed to copy link": "", "Failed to copy link": "",
"Failed to create API Key.": "فشل في إنشاء مفتاح API.", "Failed to create API Key.": "فشل في إنشاء مفتاح API.",
@ -717,12 +731,14 @@
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to read clipboard contents": "فشل في قراءة محتويات الحافظة", "Failed to read clipboard contents": "فشل في قراءة محتويات الحافظة",
"Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
"Failed to render visualization": "", "Failed to render visualization": "",
"Failed to save connections": "", "Failed to save connections": "",
"Failed to save conversation": "فشل في حفظ المحادثة", "Failed to save conversation": "فشل في حفظ المحادثة",
"Failed to save models configuration": "", "Failed to save models configuration": "",
"Failed to update settings": "", "Failed to update settings": "",
"Failed to update status": "",
"Failed to upload file.": "", "Failed to upload file.": "",
"Features": "", "Features": "",
"Features Permissions": "", "Features Permissions": "",
@ -816,11 +832,13 @@
"Google PSE Engine Id": "معرف محرك PSE من Google", "Google PSE Engine Id": "معرف محرك PSE من Google",
"Gravatar": "", "Gravatar": "",
"Group": "مجموعة", "Group": "مجموعة",
"Group Channel": "",
"Group created successfully": "", "Group created successfully": "",
"Group deleted successfully": "", "Group deleted successfully": "",
"Group Description": "", "Group Description": "",
"Group Name": "", "Group Name": "",
"Group updated successfully": "", "Group updated successfully": "",
"groups": "",
"Groups": "", "Groups": "",
"H1": "", "H1": "",
"H2": "", "H2": "",
@ -875,7 +893,6 @@
"Import Models": "", "Import Models": "",
"Import Notes": "", "Import Notes": "",
"Import Presets": "", "Import Presets": "",
"Import Prompt Suggestions": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
"Import Tools": "", "Import Tools": "",
@ -1011,6 +1028,9 @@
"MCP": "", "MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Medium": "", "Medium": "",
"Member removed successfully": "",
"Members": "",
"Members added successfully": "",
"Memories accessible by LLMs will be shown here.": "سيتم عرض الذكريات التي يمكن الوصول إليها بواسطة LLMs هنا.", "Memories accessible by LLMs will be shown here.": "سيتم عرض الذكريات التي يمكن الوصول إليها بواسطة LLMs هنا.",
"Memory": "الذاكرة", "Memory": "الذاكرة",
"Memory added successfully": "", "Memory added successfully": "",
@ -1110,6 +1130,7 @@
"No models selected": "", "No models selected": "",
"No Notes": "", "No Notes": "",
"No notes found": "", "No notes found": "",
"No pinned messages": "",
"No prompts found": "", "No prompts found": "",
"No results": "لا توجد نتائج", "No results": "لا توجد نتائج",
"No results found": "لا توجد نتايج", "No results found": "لا توجد نتايج",
@ -1157,6 +1178,7 @@
"Only alphanumeric characters and hyphens are allowed in the command string.": "يُسمح فقط بالأحرف الأبجدية الرقمية والواصلات في سلسلة الأمر.", "Only alphanumeric characters and hyphens are allowed in the command string.": "يُسمح فقط بالأحرف الأبجدية الرقمية والواصلات في سلسلة الأمر.",
"Only can be triggered when the chat input is in focus.": "", "Only can be triggered when the chat input is in focus.": "",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "", "Only collections can be edited, create a new knowledge base to edit/add documents.": "",
"Only invited users can access": "",
"Only markdown files are allowed": "", "Only markdown files are allowed": "",
"Only select users and groups with permission can access": "", "Only select users and groups with permission can access": "",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "خطاء! يبدو أن عنوان URL غير صالح. يرجى التحقق مرة أخرى والمحاولة مرة أخرى.", "Oops! Looks like the URL is invalid. Please double-check and try again.": "خطاء! يبدو أن عنوان URL غير صالح. يرجى التحقق مرة أخرى والمحاولة مرة أخرى.",
@ -1219,6 +1241,7 @@
"Personalization": "التخصيص", "Personalization": "التخصيص",
"Pin": "", "Pin": "",
"Pinned": "", "Pinned": "",
"Pinned Messages": "",
"Pioneer insights": "", "Pioneer insights": "",
"Pipe": "", "Pipe": "",
"Pipeline deleted successfully": "", "Pipeline deleted successfully": "",
@ -1261,9 +1284,9 @@
"Previous 7 days": "أخر 7 أيام", "Previous 7 days": "أخر 7 أيام",
"Previous message": "", "Previous message": "",
"Private": "", "Private": "",
"Private conversation between selected users": "",
"Profile": "الملف الشخصي", "Profile": "الملف الشخصي",
"Prompt": "", "Prompt": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "موجه (على سبيل المثال: أخبرني بحقيقة ممتعة عن الإمبراطورية الرومانية)",
"Prompt Autocompletion": "", "Prompt Autocompletion": "",
"Prompt Content": "محتوى عاجل", "Prompt Content": "محتوى عاجل",
"Prompt created successfully": "", "Prompt created successfully": "",
@ -1453,6 +1476,7 @@
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "", "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
"Set Voice": "ضبط الصوت", "Set Voice": "ضبط الصوت",
"Set whisper model": "", "Set whisper model": "",
"Set your status": "",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "", "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "", "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets how far back for the model to look back to prevent repetition.": "", "Sets how far back for the model to look back to prevent repetition.": "",
@ -1505,6 +1529,9 @@
"Start a new conversation": "", "Start a new conversation": "",
"Start of the channel": "بداية القناة", "Start of the channel": "بداية القناة",
"Start Tag": "", "Start Tag": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Steps": "", "Steps": "",
@ -1520,7 +1547,7 @@
"STT Model": "", "STT Model": "",
"STT Settings": "STT اعدادات", "STT Settings": "STT اعدادات",
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "(e.g. about the Roman Empire) الترجمة", "Subtitle": "",
"Success": "نجاح", "Success": "نجاح",
"Successfully imported {{userCount}} users.": "", "Successfully imported {{userCount}} users.": "",
"Successfully updated.": "تم التحديث بنجاح", "Successfully updated.": "تم التحديث بنجاح",
@ -1603,7 +1630,6 @@
"Tika Server URL required.": "", "Tika Server URL required.": "",
"Tiktoken": "", "Tiktoken": "",
"Title": "العنوان", "Title": "العنوان",
"Title (e.g. Tell me a fun fact)": "(e.g. Tell me a fun fact) العناون",
"Title Auto-Generation": "توليد تلقائي للعنوان", "Title Auto-Generation": "توليد تلقائي للعنوان",
"Title cannot be an empty string.": "العنوان مطلوب", "Title cannot be an empty string.": "العنوان مطلوب",
"Title Generation": "", "Title Generation": "",
@ -1672,6 +1698,7 @@
"Update and Copy Link": "تحديث ونسخ الرابط", "Update and Copy Link": "تحديث ونسخ الرابط",
"Update for the latest features and improvements.": "", "Update for the latest features and improvements.": "",
"Update password": "تحديث كلمة المرور", "Update password": "تحديث كلمة المرور",
"Update your status": "",
"Updated": "", "Updated": "",
"Updated at": "", "Updated at": "",
"Updated At": "", "Updated At": "",
@ -1725,6 +1752,7 @@
"View Replies": "", "View Replies": "",
"View Result from **{{NAME}}**": "", "View Result from **{{NAME}}**": "",
"Visibility": "", "Visibility": "",
"Visible to all users": "",
"Vision": "", "Vision": "",
"Voice": "", "Voice": "",
"Voice Input": "", "Voice Input": "",
@ -1752,6 +1780,7 @@
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"What's New in": "ما هو الجديد", "What's New in": "ما هو الجديد",
"What's on your mind?": "",
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "", "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
"wherever you are": "", "wherever you are": "",
"Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "",

View file

@ -18,11 +18,15 @@
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
"{{model}} download has been canceled": "", "{{model}} download has been canceled": "",
"{{NAMES}} reacted with {{REACTION}}": "",
"{{user}}'s Chats": "محادثات المستخدم {{user}}", "{{user}}'s Chats": "محادثات المستخدم {{user}}",
"{{webUIName}} Backend Required": "يتطلب الخلفية الخاصة بـ {{webUIName}}", "{{webUIName}} Backend Required": "يتطلب الخلفية الخاصة بـ {{webUIName}}",
"*Prompt node ID(s) are required for image generation": "*معرّف/معرّفات عقدة الموجه مطلوبة لتوليد الصور", "*Prompt node ID(s) are required for image generation": "*معرّف/معرّفات عقدة الموجه مطلوبة لتوليد الصور",
"1 Source": "", "1 Source": "",
"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}}).", "A new version (v{{LATEST_VERSION}}) is now available.": "يتوفر الآن إصدار جديد (v{{LATEST_VERSION}}).",
"A private conversation between you and selected users": "",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "يُستخدم نموذج المهام عند تنفيذ مهام مثل توليد عناوين المحادثات واستعلامات البحث على الويب", "A task model is used when performing tasks such as generating titles for chats and web search queries": "يُستخدم نموذج المهام عند تنفيذ مهام مثل توليد عناوين المحادثات واستعلامات البحث على الويب",
"a user": "مستخدم", "a user": "مستخدم",
"About": "حول", "About": "حول",
@ -53,7 +57,8 @@
"Add Custom Prompt": "", "Add Custom Prompt": "",
"Add Details": "", "Add Details": "",
"Add Files": "إضافة ملفات", "Add Files": "إضافة ملفات",
"Add Group": "إضافة مجموعة", "Add Member": "",
"Add Members": "",
"Add Memory": "إضافة ذاكرة", "Add Memory": "إضافة ذاكرة",
"Add Model": "إضافة نموذج", "Add Model": "إضافة نموذج",
"Add Reaction": "إضافة تفاعل", "Add Reaction": "إضافة تفاعل",
@ -252,6 +257,7 @@
"Citations": "", "Citations": "",
"Clear memory": "مسح الذاكرة", "Clear memory": "مسح الذاكرة",
"Clear Memory": "مسح الذاكرة", "Clear Memory": "مسح الذاكرة",
"Clear status": "",
"click here": "انقر هنا", "click here": "انقر هنا",
"Click here for filter guides.": "انقر هنا للحصول على أدلة الفلاتر.", "Click here for filter guides.": "انقر هنا للحصول على أدلة الفلاتر.",
"Click here for help.": "انقر هنا للمساعدة.", "Click here for help.": "انقر هنا للمساعدة.",
@ -288,6 +294,7 @@
"Code Interpreter": "مفسر الشيفرة", "Code Interpreter": "مفسر الشيفرة",
"Code Interpreter Engine": "محرك مفسر الشيفرة", "Code Interpreter Engine": "محرك مفسر الشيفرة",
"Code Interpreter Prompt Template": "قالب موجه مفسر الشيفرة", "Code Interpreter Prompt Template": "قالب موجه مفسر الشيفرة",
"Collaboration channel where people join as members": "",
"Collapse": "طي", "Collapse": "طي",
"Collection": "المجموعة", "Collection": "المجموعة",
"Color": "اللون", "Color": "اللون",
@ -447,6 +454,7 @@
"Discover, download, and explore custom prompts": "اكتشاف وتنزيل واستكشاف المطالبات المخصصة", "Discover, download, and explore custom prompts": "اكتشاف وتنزيل واستكشاف المطالبات المخصصة",
"Discover, download, and explore custom tools": "اكتشف، حمّل، واستعرض الأدوات المخصصة", "Discover, download, and explore custom tools": "اكتشف، حمّل، واستعرض الأدوات المخصصة",
"Discover, download, and explore model presets": "اكتشاف وتنزيل واستكشاف الإعدادات المسبقة للنموذج", "Discover, download, and explore model presets": "اكتشاف وتنزيل واستكشاف الإعدادات المسبقة للنموذج",
"Discussion channel where access is based on groups and permissions": "",
"Display": "العرض", "Display": "العرض",
"Display chat title in tab": "", "Display chat title in tab": "",
"Display Emoji in Call": "عرض الرموز التعبيرية أثناء المكالمة", "Display Emoji in Call": "عرض الرموز التعبيرية أثناء المكالمة",
@ -463,6 +471,7 @@
"Document": "المستند", "Document": "المستند",
"Document Intelligence": "تحليل المستندات الذكي", "Document Intelligence": "تحليل المستندات الذكي",
"Document Intelligence endpoint required.": "", "Document Intelligence endpoint required.": "",
"Document Intelligence Model": "",
"Documentation": "التوثيق", "Documentation": "التوثيق",
"Documents": "مستندات", "Documents": "مستندات",
"does not make any external connections, and your data stays securely on your locally hosted server.": "لا يجري أي اتصالات خارجية، وتظل بياناتك آمنة على الخادم المستضاف محليًا.", "does not make any external connections, and your data stays securely on your locally hosted server.": "لا يجري أي اتصالات خارجية، وتظل بياناتك آمنة على الخادم المستضاف محليًا.",
@ -485,12 +494,15 @@
"e.g. \"json\" or a JSON schema": "", "e.g. \"json\" or a JSON schema": "",
"e.g. 60": "مثال: 60", "e.g. 60": "مثال: 60",
"e.g. A filter to remove profanity from text": "مثال: مرشح لإزالة الألفاظ النابية من النص", "e.g. A filter to remove profanity from text": "مثال: مرشح لإزالة الألفاظ النابية من النص",
"e.g. about the Roman Empire": "",
"e.g. en": "", "e.g. en": "",
"e.g. My Filter": "مثال: مرشحي", "e.g. My Filter": "مثال: مرشحي",
"e.g. My Tools": "مثال: أدواتي", "e.g. My Tools": "مثال: أدواتي",
"e.g. my_filter": "مثال: my_filter", "e.g. my_filter": "مثال: my_filter",
"e.g. my_tools": "مثال: my_tools", "e.g. my_tools": "مثال: my_tools",
"e.g. pdf, docx, txt": "", "e.g. pdf, docx, txt": "",
"e.g. Tell me a fun fact": "",
"e.g. Tell me a fun fact about the Roman Empire": "",
"e.g. Tools for performing various operations": "مثال: أدوات لتنفيذ عمليات متنوعة", "e.g. Tools for performing various operations": "مثال: أدوات لتنفيذ عمليات متنوعة",
"e.g., 3, 4, 5 (leave blank for default)": "", "e.g., 3, 4, 5 (leave blank for default)": "",
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "", "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
@ -564,6 +576,7 @@
"Enter Docling Server URL": "", "Enter Docling Server URL": "",
"Enter Document Intelligence Endpoint": "أدخل نقطة نهاية تحليل المستندات", "Enter Document Intelligence Endpoint": "أدخل نقطة نهاية تحليل المستندات",
"Enter Document Intelligence Key": "أدخل مفتاح تحليل المستندات", "Enter Document Intelligence Key": "أدخل مفتاح تحليل المستندات",
"Enter Document Intelligence Model": "",
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "", "Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
"Enter Exa API Key": "أدخل مفتاح API لـ Exa", "Enter Exa API Key": "أدخل مفتاح API لـ Exa",
"Enter External Document Loader API Key": "", "Enter External Document Loader API Key": "",
@ -689,7 +702,6 @@
"Export Config to JSON File": "تصدير الإعدادات إلى ملف JSON", "Export Config to JSON File": "تصدير الإعدادات إلى ملف JSON",
"Export Models": "", "Export Models": "",
"Export Presets": "تصدير الإعدادات المسبقة", "Export Presets": "تصدير الإعدادات المسبقة",
"Export Prompt Suggestions": "",
"Export Prompts": "", "Export Prompts": "",
"Export to CSV": "تصدير إلى CSV", "Export to CSV": "تصدير إلى CSV",
"Export Tools": "", "Export Tools": "",
@ -704,6 +716,8 @@
"External Web Search URL": "", "External Web Search URL": "",
"Fade Effect for Streaming Text": "", "Fade Effect for Streaming Text": "",
"Failed to add file.": "فشل في إضافة الملف.", "Failed to add file.": "فشل في إضافة الملف.",
"Failed to add members": "",
"Failed to clear status": "",
"Failed to connect to {{URL}} OpenAPI tool server": "", "Failed to connect to {{URL}} OpenAPI tool server": "",
"Failed to copy link": "", "Failed to copy link": "",
"Failed to create API Key.": "فشل في إنشاء مفتاح API.", "Failed to create API Key.": "فشل في إنشاء مفتاح API.",
@ -717,12 +731,14 @@
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to read clipboard contents": "فشل في قراءة محتويات الحافظة", "Failed to read clipboard contents": "فشل في قراءة محتويات الحافظة",
"Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
"Failed to render visualization": "", "Failed to render visualization": "",
"Failed to save connections": "", "Failed to save connections": "",
"Failed to save conversation": "فشل في حفظ المحادثة", "Failed to save conversation": "فشل في حفظ المحادثة",
"Failed to save models configuration": "فشل في حفظ إعدادات النماذج", "Failed to save models configuration": "فشل في حفظ إعدادات النماذج",
"Failed to update settings": "فشل في تحديث الإعدادات", "Failed to update settings": "فشل في تحديث الإعدادات",
"Failed to update status": "",
"Failed to upload file.": "فشل في رفع الملف.", "Failed to upload file.": "فشل في رفع الملف.",
"Features": "الميزات", "Features": "الميزات",
"Features Permissions": "أذونات الميزات", "Features Permissions": "أذونات الميزات",
@ -816,11 +832,13 @@
"Google PSE Engine Id": "معرف محرك PSE من Google", "Google PSE Engine Id": "معرف محرك PSE من Google",
"Gravatar": "", "Gravatar": "",
"Group": "مجموعة", "Group": "مجموعة",
"Group Channel": "",
"Group created successfully": "تم إنشاء المجموعة بنجاح", "Group created successfully": "تم إنشاء المجموعة بنجاح",
"Group deleted successfully": "تم حذف المجموعة بنجاح", "Group deleted successfully": "تم حذف المجموعة بنجاح",
"Group Description": "وصف المجموعة", "Group Description": "وصف المجموعة",
"Group Name": "اسم المجموعة", "Group Name": "اسم المجموعة",
"Group updated successfully": "تم تحديث المجموعة بنجاح", "Group updated successfully": "تم تحديث المجموعة بنجاح",
"groups": "",
"Groups": "المجموعات", "Groups": "المجموعات",
"H1": "", "H1": "",
"H2": "", "H2": "",
@ -875,7 +893,6 @@
"Import Models": "", "Import Models": "",
"Import Notes": "", "Import Notes": "",
"Import Presets": "استيراد الإعدادات المسبقة", "Import Presets": "استيراد الإعدادات المسبقة",
"Import Prompt Suggestions": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
"Import Tools": "", "Import Tools": "",
@ -1011,6 +1028,9 @@
"MCP": "", "MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Medium": "", "Medium": "",
"Member removed successfully": "",
"Members": "",
"Members added successfully": "",
"Memories accessible by LLMs will be shown here.": "سيتم عرض الذكريات التي يمكن الوصول إليها بواسطة LLMs هنا.", "Memories accessible by LLMs will be shown here.": "سيتم عرض الذكريات التي يمكن الوصول إليها بواسطة LLMs هنا.",
"Memory": "الذاكرة", "Memory": "الذاكرة",
"Memory added successfully": "تم إضافة الذاكرة بنجاح", "Memory added successfully": "تم إضافة الذاكرة بنجاح",
@ -1110,6 +1130,7 @@
"No models selected": "لم يتم اختيار نماذج", "No models selected": "لم يتم اختيار نماذج",
"No Notes": "", "No Notes": "",
"No notes found": "", "No notes found": "",
"No pinned messages": "",
"No prompts found": "", "No prompts found": "",
"No results": "لا توجد نتائج", "No results": "لا توجد نتائج",
"No results found": "لا توجد نتايج", "No results found": "لا توجد نتايج",
@ -1157,6 +1178,7 @@
"Only alphanumeric characters and hyphens are allowed in the command string.": "يُسمح فقط بالأحرف الأبجدية الرقمية والواصلات في سلسلة الأمر.", "Only alphanumeric characters and hyphens are allowed in the command string.": "يُسمح فقط بالأحرف الأبجدية الرقمية والواصلات في سلسلة الأمر.",
"Only can be triggered when the chat input is in focus.": "", "Only can be triggered when the chat input is in focus.": "",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "يمكن تعديل المجموعات فقط، أنشئ قاعدة معرفة جديدة لتعديل أو إضافة مستندات.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "يمكن تعديل المجموعات فقط، أنشئ قاعدة معرفة جديدة لتعديل أو إضافة مستندات.",
"Only invited users can access": "",
"Only markdown files are allowed": "", "Only markdown files are allowed": "",
"Only select users and groups with permission can access": "يمكن الوصول فقط من قبل المستخدمين والمجموعات المصرح لهم", "Only select users and groups with permission can access": "يمكن الوصول فقط من قبل المستخدمين والمجموعات المصرح لهم",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "خطاء! يبدو أن عنوان URL غير صالح. يرجى التحقق مرة أخرى والمحاولة مرة أخرى.", "Oops! Looks like the URL is invalid. Please double-check and try again.": "خطاء! يبدو أن عنوان URL غير صالح. يرجى التحقق مرة أخرى والمحاولة مرة أخرى.",
@ -1219,6 +1241,7 @@
"Personalization": "التخصيص", "Personalization": "التخصيص",
"Pin": "تثبيت", "Pin": "تثبيت",
"Pinned": "مثبت", "Pinned": "مثبت",
"Pinned Messages": "",
"Pioneer insights": "رؤى رائدة", "Pioneer insights": "رؤى رائدة",
"Pipe": "", "Pipe": "",
"Pipeline deleted successfully": "تم حذف خط المعالجة بنجاح", "Pipeline deleted successfully": "تم حذف خط المعالجة بنجاح",
@ -1261,9 +1284,9 @@
"Previous 7 days": "أخر 7 أيام", "Previous 7 days": "أخر 7 أيام",
"Previous message": "", "Previous message": "",
"Private": "", "Private": "",
"Private conversation between selected users": "",
"Profile": "الملف الشخصي", "Profile": "الملف الشخصي",
"Prompt": "التوجيه", "Prompt": "التوجيه",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "موجه (على سبيل المثال: أخبرني بحقيقة ممتعة عن الإمبراطورية الرومانية)",
"Prompt Autocompletion": "", "Prompt Autocompletion": "",
"Prompt Content": "محتوى عاجل", "Prompt Content": "محتوى عاجل",
"Prompt created successfully": "تم إنشاء التوجيه بنجاح", "Prompt created successfully": "تم إنشاء التوجيه بنجاح",
@ -1453,6 +1476,7 @@
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "تحديد عدد سلاسل المعالجة المستخدمة في الحساب. هذا الخيار يتحكم في عدد السلاسل لمعالجة الطلبات بالتوازي. زيادته يحسن الأداء تحت الضغط العالي لكنه يستهلك موارد المعالج.", "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "تحديد عدد سلاسل المعالجة المستخدمة في الحساب. هذا الخيار يتحكم في عدد السلاسل لمعالجة الطلبات بالتوازي. زيادته يحسن الأداء تحت الضغط العالي لكنه يستهلك موارد المعالج.",
"Set Voice": "ضبط الصوت", "Set Voice": "ضبط الصوت",
"Set whisper model": "تعيين نموذج Whisper", "Set whisper model": "تعيين نموذج Whisper",
"Set your status": "",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "تعيين انحياز ثابت ضد الرموز التي ظهرت مرة واحدة على الأقل. القيم الأعلى (مثل 1.5) تعاقب التكرار بقوة، والأقل (مثل 0.9) تكون أكثر تساهلًا. عند 0 يتم تعطيله.", "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "تعيين انحياز ثابت ضد الرموز التي ظهرت مرة واحدة على الأقل. القيم الأعلى (مثل 1.5) تعاقب التكرار بقوة، والأقل (مثل 0.9) تكون أكثر تساهلًا. عند 0 يتم تعطيله.",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "يحدد انحيازًا متدرجًا ضد الرموز لمعاقبة التكرار حسب عدد مرات الظهور. القيم الأعلى (1.5) تعاقب أكثر، والأقل (0.9) تكون أكثر تساهلًا. عند 0 يتم تعطيله.", "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "يحدد انحيازًا متدرجًا ضد الرموز لمعاقبة التكرار حسب عدد مرات الظهور. القيم الأعلى (1.5) تعاقب أكثر، والأقل (0.9) تكون أكثر تساهلًا. عند 0 يتم تعطيله.",
"Sets how far back for the model to look back to prevent repetition.": "يحدد مدى رجوع النموذج إلى الوراء لتجنب التكرار.", "Sets how far back for the model to look back to prevent repetition.": "يحدد مدى رجوع النموذج إلى الوراء لتجنب التكرار.",
@ -1505,6 +1529,9 @@
"Start a new conversation": "", "Start a new conversation": "",
"Start of the channel": "بداية القناة", "Start of the channel": "بداية القناة",
"Start Tag": "", "Start Tag": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Steps": "", "Steps": "",
@ -1520,7 +1547,7 @@
"STT Model": "نموذج تحويل الصوت إلى نص (STT)", "STT Model": "نموذج تحويل الصوت إلى نص (STT)",
"STT Settings": "STT اعدادات", "STT Settings": "STT اعدادات",
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "(e.g. about the Roman Empire) الترجمة", "Subtitle": "",
"Success": "نجاح", "Success": "نجاح",
"Successfully imported {{userCount}} users.": "", "Successfully imported {{userCount}} users.": "",
"Successfully updated.": "تم التحديث بنجاح", "Successfully updated.": "تم التحديث بنجاح",
@ -1603,7 +1630,6 @@
"Tika Server URL required.": "عنوان خادم Tika مطلوب.", "Tika Server URL required.": "عنوان خادم Tika مطلوب.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Title": "العنوان", "Title": "العنوان",
"Title (e.g. Tell me a fun fact)": "(e.g. Tell me a fun fact) العناون",
"Title Auto-Generation": "توليد تلقائي للعنوان", "Title Auto-Generation": "توليد تلقائي للعنوان",
"Title cannot be an empty string.": "العنوان مطلوب", "Title cannot be an empty string.": "العنوان مطلوب",
"Title Generation": "توليد العنوان", "Title Generation": "توليد العنوان",
@ -1672,6 +1698,7 @@
"Update and Copy Link": "تحديث ونسخ الرابط", "Update and Copy Link": "تحديث ونسخ الرابط",
"Update for the latest features and improvements.": "حدّث للحصول على أحدث الميزات والتحسينات.", "Update for the latest features and improvements.": "حدّث للحصول على أحدث الميزات والتحسينات.",
"Update password": "تحديث كلمة المرور", "Update password": "تحديث كلمة المرور",
"Update your status": "",
"Updated": "تم التحديث", "Updated": "تم التحديث",
"Updated at": "تم التحديث في", "Updated at": "تم التحديث في",
"Updated At": "تم التحديث في", "Updated At": "تم التحديث في",
@ -1725,6 +1752,7 @@
"View Replies": "عرض الردود", "View Replies": "عرض الردود",
"View Result from **{{NAME}}**": "", "View Result from **{{NAME}}**": "",
"Visibility": "مستوى الظهور", "Visibility": "مستوى الظهور",
"Visible to all users": "",
"Vision": "", "Vision": "",
"Voice": "الصوت", "Voice": "الصوت",
"Voice Input": "إدخال صوتي", "Voice Input": "إدخال صوتي",
@ -1752,6 +1780,7 @@
"What are you trying to achieve?": "ما الذي تحاول تحقيقه؟", "What are you trying to achieve?": "ما الذي تحاول تحقيقه؟",
"What are you working on?": "على ماذا تعمل؟", "What are you working on?": "على ماذا تعمل؟",
"What's New in": "ما هو الجديد", "What's New in": "ما هو الجديد",
"What's on your mind?": "",
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "عند التفعيل، سيستجيب النموذج لكل رسالة في المحادثة بشكل فوري، مولدًا الرد بمجرد إرسال المستخدم لرسالته. هذا الوضع مفيد لتطبيقات الدردشة الحية، لكنه قد يؤثر على الأداء في الأجهزة الأبطأ.", "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "عند التفعيل، سيستجيب النموذج لكل رسالة في المحادثة بشكل فوري، مولدًا الرد بمجرد إرسال المستخدم لرسالته. هذا الوضع مفيد لتطبيقات الدردشة الحية، لكنه قد يؤثر على الأداء في الأجهزة الأبطأ.",
"wherever you are": "أينما كنت", "wherever you are": "أينما كنت",
"Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "",

View file

@ -18,11 +18,15 @@
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
"{{model}} download has been canceled": "", "{{model}} download has been canceled": "",
"{{NAMES}} reacted with {{REACTION}}": "",
"{{user}}'s Chats": "{{user}}'s чатове", "{{user}}'s Chats": "{{user}}'s чатове",
"{{webUIName}} Backend Required": "{{webUIName}} Изисква се Бекенд", "{{webUIName}} Backend Required": "{{webUIName}} Изисква се Бекенд",
"*Prompt node ID(s) are required for image generation": "*Идентификатор(ите) на възел-а се изисква(т) за генериране на изображения", "*Prompt node ID(s) are required for image generation": "*Идентификатор(ите) на възел-а се изисква(т) за генериране на изображения",
"1 Source": "", "1 Source": "",
"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}}).", "A new version (v{{LATEST_VERSION}}) is now available.": "Вече е налична нова версия (v{{LATEST_VERSION}}).",
"A private conversation between you and selected users": "",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Моделът на задачите се използва при изпълнението на задачите като генериране на заглавия за чатове и заявки за търсене в мрежата", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Моделът на задачите се използва при изпълнението на задачите като генериране на заглавия за чатове и заявки за търсене в мрежата",
"a user": "потребител", "a user": "потребител",
"About": "Относно", "About": "Относно",
@ -53,7 +57,8 @@
"Add Custom Prompt": "", "Add Custom Prompt": "",
"Add Details": "", "Add Details": "",
"Add Files": "Добавяне на Файлове", "Add Files": "Добавяне на Файлове",
"Add Group": "Добавяне на група", "Add Member": "",
"Add Members": "",
"Add Memory": "Добавяне на Памет", "Add Memory": "Добавяне на Памет",
"Add Model": "Добавяне на Модел", "Add Model": "Добавяне на Модел",
"Add Reaction": "Добавяне на реакция", "Add Reaction": "Добавяне на реакция",
@ -252,6 +257,7 @@
"Citations": "", "Citations": "",
"Clear memory": "Изчистване на паметта", "Clear memory": "Изчистване на паметта",
"Clear Memory": "", "Clear Memory": "",
"Clear status": "",
"click here": "натиснете тук", "click here": "натиснете тук",
"Click here for filter guides.": "Натиснете тук за ръководства за филтриране.", "Click here for filter guides.": "Натиснете тук за ръководства за филтриране.",
"Click here for help.": "Натиснете тук за помощ.", "Click here for help.": "Натиснете тук за помощ.",
@ -288,6 +294,7 @@
"Code Interpreter": "Интерпретатор на код", "Code Interpreter": "Интерпретатор на код",
"Code Interpreter Engine": "Двигател на интерпретатора на кода", "Code Interpreter Engine": "Двигател на интерпретатора на кода",
"Code Interpreter Prompt Template": "Шаблон за промпт на интерпретатора на кода", "Code Interpreter Prompt Template": "Шаблон за промпт на интерпретатора на кода",
"Collaboration channel where people join as members": "",
"Collapse": "", "Collapse": "",
"Collection": "Колекция", "Collection": "Колекция",
"Color": "Цвят", "Color": "Цвят",
@ -447,6 +454,7 @@
"Discover, download, and explore custom prompts": "Откриване, сваляне и преглед на персонализирани промптове", "Discover, download, and explore custom prompts": "Откриване, сваляне и преглед на персонализирани промптове",
"Discover, download, and explore custom tools": "Открийте, изтеглете и разгледайте персонализирани инструменти", "Discover, download, and explore custom tools": "Открийте, изтеглете и разгледайте персонализирани инструменти",
"Discover, download, and explore model presets": "Откриване, сваляне и преглед на пресетове на модели", "Discover, download, and explore model presets": "Откриване, сваляне и преглед на пресетове на модели",
"Discussion channel where access is based on groups and permissions": "",
"Display": "Показване", "Display": "Показване",
"Display chat title in tab": "", "Display chat title in tab": "",
"Display Emoji in Call": "Показване на емотикони в обаждането", "Display Emoji in Call": "Показване на емотикони в обаждането",
@ -463,6 +471,7 @@
"Document": "Документ", "Document": "Документ",
"Document Intelligence": "", "Document Intelligence": "",
"Document Intelligence endpoint required.": "", "Document Intelligence endpoint required.": "",
"Document Intelligence Model": "",
"Documentation": "Документация", "Documentation": "Документация",
"Documents": "Документи", "Documents": "Документи",
"does not make any external connections, and your data stays securely on your locally hosted server.": "няма външни връзки, а вашите данни остават сигурни на локално назначен сървър.", "does not make any external connections, and your data stays securely on your locally hosted server.": "няма външни връзки, а вашите данни остават сигурни на локално назначен сървър.",
@ -485,12 +494,15 @@
"e.g. \"json\" or a JSON schema": "", "e.g. \"json\" or a JSON schema": "",
"e.g. 60": "", "e.g. 60": "",
"e.g. A filter to remove profanity from text": "напр. Филтър за премахване на нецензурни думи от текста", "e.g. A filter to remove profanity from text": "напр. Филтър за премахване на нецензурни думи от текста",
"e.g. about the Roman Empire": "",
"e.g. en": "", "e.g. en": "",
"e.g. My Filter": "напр. Моят филтър", "e.g. My Filter": "напр. Моят филтър",
"e.g. My Tools": "напр. Моите инструменти", "e.g. My Tools": "напр. Моите инструменти",
"e.g. my_filter": "напр. моят_филтър", "e.g. my_filter": "напр. моят_филтър",
"e.g. my_tools": "напр. моите_инструменти", "e.g. my_tools": "напр. моите_инструменти",
"e.g. pdf, docx, txt": "", "e.g. pdf, docx, txt": "",
"e.g. Tell me a fun fact": "",
"e.g. Tell me a fun fact about the Roman Empire": "",
"e.g. Tools for performing various operations": "напр. Инструменти за извършване на различни операции", "e.g. Tools for performing various operations": "напр. Инструменти за извършване на различни операции",
"e.g., 3, 4, 5 (leave blank for default)": "", "e.g., 3, 4, 5 (leave blank for default)": "",
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "", "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
@ -564,6 +576,7 @@
"Enter Docling Server URL": "", "Enter Docling Server URL": "",
"Enter Document Intelligence Endpoint": "", "Enter Document Intelligence Endpoint": "",
"Enter Document Intelligence Key": "", "Enter Document Intelligence Key": "",
"Enter Document Intelligence Model": "",
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "", "Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
"Enter Exa API Key": "Въведете API ключ за Exa", "Enter Exa API Key": "Въведете API ключ за Exa",
"Enter External Document Loader API Key": "", "Enter External Document Loader API Key": "",
@ -689,7 +702,6 @@
"Export Config to JSON File": "Експортиране на конфигурацията в JSON файл", "Export Config to JSON File": "Експортиране на конфигурацията в JSON файл",
"Export Models": "", "Export Models": "",
"Export Presets": "Експортиране на предварителни настройки", "Export Presets": "Експортиране на предварителни настройки",
"Export Prompt Suggestions": "",
"Export Prompts": "", "Export Prompts": "",
"Export to CSV": "Експортиране в CSV", "Export to CSV": "Експортиране в CSV",
"Export Tools": "", "Export Tools": "",
@ -704,6 +716,8 @@
"External Web Search URL": "", "External Web Search URL": "",
"Fade Effect for Streaming Text": "", "Fade Effect for Streaming Text": "",
"Failed to add file.": "Неуспешно добавяне на файл.", "Failed to add file.": "Неуспешно добавяне на файл.",
"Failed to add members": "",
"Failed to clear status": "",
"Failed to connect to {{URL}} OpenAPI tool server": "", "Failed to connect to {{URL}} OpenAPI tool server": "",
"Failed to copy link": "", "Failed to copy link": "",
"Failed to create API Key.": "Неуспешно създаване на API ключ.", "Failed to create API Key.": "Неуспешно създаване на API ключ.",
@ -717,12 +731,14 @@
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to read clipboard contents": "Грешка при четене на съдържанието от клипборда", "Failed to read clipboard contents": "Грешка при четене на съдържанието от клипборда",
"Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
"Failed to render visualization": "", "Failed to render visualization": "",
"Failed to save connections": "", "Failed to save connections": "",
"Failed to save conversation": "Неуспешно запазване на разговора", "Failed to save conversation": "Неуспешно запазване на разговора",
"Failed to save models configuration": "Неуспешно запазване на конфигурацията на моделите", "Failed to save models configuration": "Неуспешно запазване на конфигурацията на моделите",
"Failed to update settings": "Неуспешно актуализиране на настройките", "Failed to update settings": "Неуспешно актуализиране на настройките",
"Failed to update status": "",
"Failed to upload file.": "Неуспешно качване на файл.", "Failed to upload file.": "Неуспешно качване на файл.",
"Features": "Функции", "Features": "Функции",
"Features Permissions": "Разрешения за функции", "Features Permissions": "Разрешения за функции",
@ -816,11 +832,13 @@
"Google PSE Engine Id": "Идентификатор на двигателя на Google PSE", "Google PSE Engine Id": "Идентификатор на двигателя на Google PSE",
"Gravatar": "", "Gravatar": "",
"Group": "Група", "Group": "Група",
"Group Channel": "",
"Group created successfully": "Групата е създадена успешно", "Group created successfully": "Групата е създадена успешно",
"Group deleted successfully": "Групата е изтрита успешно", "Group deleted successfully": "Групата е изтрита успешно",
"Group Description": "Описание на групата", "Group Description": "Описание на групата",
"Group Name": "Име на групата", "Group Name": "Име на групата",
"Group updated successfully": "Групата е актуализирана успешно", "Group updated successfully": "Групата е актуализирана успешно",
"groups": "",
"Groups": "Групи", "Groups": "Групи",
"H1": "", "H1": "",
"H2": "", "H2": "",
@ -875,7 +893,6 @@
"Import Models": "", "Import Models": "",
"Import Notes": "", "Import Notes": "",
"Import Presets": "Импортиране на предварителни настройки", "Import Presets": "Импортиране на предварителни настройки",
"Import Prompt Suggestions": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
"Import Tools": "", "Import Tools": "",
@ -1011,6 +1028,9 @@
"MCP": "", "MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Medium": "", "Medium": "",
"Member removed successfully": "",
"Members": "",
"Members added successfully": "",
"Memories accessible by LLMs will be shown here.": "Мемории достъпни от LLMs ще бъдат показани тук.", "Memories accessible by LLMs will be shown here.": "Мемории достъпни от LLMs ще бъдат показани тук.",
"Memory": "Памет", "Memory": "Памет",
"Memory added successfully": "Паметта е добавена успешно", "Memory added successfully": "Паметта е добавена успешно",
@ -1110,6 +1130,7 @@
"No models selected": "Няма избрани модели", "No models selected": "Няма избрани модели",
"No Notes": "Няма бележки", "No Notes": "Няма бележки",
"No notes found": "", "No notes found": "",
"No pinned messages": "",
"No prompts found": "", "No prompts found": "",
"No results": "Няма намерени резултати", "No results": "Няма намерени резултати",
"No results found": "Няма намерени резултати", "No results found": "Няма намерени резултати",
@ -1157,6 +1178,7 @@
"Only alphanumeric characters and hyphens are allowed in the command string.": "Само алфанумерични знаци и тире са разрешени в командния низ.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Само алфанумерични знаци и тире са разрешени в командния низ.",
"Only can be triggered when the chat input is in focus.": "", "Only can be triggered when the chat input is in focus.": "",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Само колекциите могат да бъдат редактирани, създайте нова база от знания, за да редактирате/добавяте документи.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Само колекциите могат да бъдат редактирани, създайте нова база от знания, за да редактирате/добавяте документи.",
"Only invited users can access": "",
"Only markdown files are allowed": "", "Only markdown files are allowed": "",
"Only select users and groups with permission can access": "Само избрани потребители и групи с разрешение могат да имат достъп", "Only select users and groups with permission can access": "Само избрани потребители и групи с разрешение могат да имат достъп",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "Упс! Изглежда URL адресът е невалиден. Моля, проверете отново и опитайте пак.", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Упс! Изглежда URL адресът е невалиден. Моля, проверете отново и опитайте пак.",
@ -1219,6 +1241,7 @@
"Personalization": "Персонализация", "Personalization": "Персонализация",
"Pin": "Закачи", "Pin": "Закачи",
"Pinned": "Закачено", "Pinned": "Закачено",
"Pinned Messages": "",
"Pioneer insights": "Пионерски прозрения", "Pioneer insights": "Пионерски прозрения",
"Pipe": "", "Pipe": "",
"Pipeline deleted successfully": "Пайплайнът е изтрит успешно", "Pipeline deleted successfully": "Пайплайнът е изтрит успешно",
@ -1261,9 +1284,9 @@
"Previous 7 days": "Предишните 7 дни", "Previous 7 days": "Предишните 7 дни",
"Previous message": "", "Previous message": "",
"Private": "", "Private": "",
"Private conversation between selected users": "",
"Profile": "Профил", "Profile": "Профил",
"Prompt": "Промпт", "Prompt": "Промпт",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Промпт (напр. Кажи ми забавен факт за Римската империя)",
"Prompt Autocompletion": "", "Prompt Autocompletion": "",
"Prompt Content": "Съдържание на промпта", "Prompt Content": "Съдържание на промпта",
"Prompt created successfully": "Промптът е създаден успешно", "Prompt created successfully": "Промптът е създаден успешно",
@ -1449,6 +1472,7 @@
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Задайте броя работни нишки, използвани за изчисления. Тази опция контролира колко нишки се използват за едновременна обработка на входящи заявки. Увеличаването на тази стойност може да подобри производителността при високи натоварвания с паралелизъм, но може също така да консумира повече ресурси на CPU.", "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Задайте броя работни нишки, използвани за изчисления. Тази опция контролира колко нишки се използват за едновременна обработка на входящи заявки. Увеличаването на тази стойност може да подобри производителността при високи натоварвания с паралелизъм, но може също така да консумира повече ресурси на CPU.",
"Set Voice": "Задай Глас", "Set Voice": "Задай Глас",
"Set whisper model": "Задай модел на шепот", "Set whisper model": "Задай модел на шепот",
"Set your status": "",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "", "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "", "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets how far back for the model to look back to prevent repetition.": "", "Sets how far back for the model to look back to prevent repetition.": "",
@ -1501,6 +1525,9 @@
"Start a new conversation": "", "Start a new conversation": "",
"Start of the channel": "Начало на канала", "Start of the channel": "Начало на канала",
"Start Tag": "", "Start Tag": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Steps": "", "Steps": "",
@ -1516,7 +1543,7 @@
"STT Model": "STT Модел", "STT Model": "STT Модел",
"STT Settings": "STT Настройки", "STT Settings": "STT Настройки",
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Подтитул (напр. за Римска империя)", "Subtitle": "",
"Success": "Успех", "Success": "Успех",
"Successfully imported {{userCount}} users.": "", "Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Успешно обновено.", "Successfully updated.": "Успешно обновено.",
@ -1599,7 +1626,6 @@
"Tika Server URL required.": "Изисква се URL адрес на Тика сървъра.", "Tika Server URL required.": "Изисква се URL адрес на Тика сървъра.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Title": "Заглавие", "Title": "Заглавие",
"Title (e.g. Tell me a fun fact)": "Заглавие (напр. Кажете ми нещо забавно)",
"Title Auto-Generation": "Автоматично генериране на заглавие", "Title Auto-Generation": "Автоматично генериране на заглавие",
"Title cannot be an empty string.": "Заглавието не може да бъде празно.", "Title cannot be an empty string.": "Заглавието не може да бъде празно.",
"Title Generation": "Генериране на заглавие", "Title Generation": "Генериране на заглавие",
@ -1668,6 +1694,7 @@
"Update and Copy Link": "Обнови и копирай връзката", "Update and Copy Link": "Обнови и копирай връзката",
"Update for the latest features and improvements.": "Актуализирайте за най-новите функции и подобрения.", "Update for the latest features and improvements.": "Актуализирайте за най-новите функции и подобрения.",
"Update password": "Обновяване на парола", "Update password": "Обновяване на парола",
"Update your status": "",
"Updated": "Актуализирано", "Updated": "Актуализирано",
"Updated at": "Актуализирано на", "Updated at": "Актуализирано на",
"Updated At": "Актуализирано на", "Updated At": "Актуализирано на",
@ -1721,6 +1748,7 @@
"View Replies": "Преглед на отговорите", "View Replies": "Преглед на отговорите",
"View Result from **{{NAME}}**": "", "View Result from **{{NAME}}**": "",
"Visibility": "Видимост", "Visibility": "Видимост",
"Visible to all users": "",
"Vision": "", "Vision": "",
"Voice": "Глас", "Voice": "Глас",
"Voice Input": "Гласов вход", "Voice Input": "Гласов вход",
@ -1748,6 +1776,7 @@
"What are you trying to achieve?": "Какво се опитвате да постигнете?", "What are you trying to achieve?": "Какво се опитвате да постигнете?",
"What are you working on?": "Върху какво работите?", "What are you working on?": "Върху какво работите?",
"What's New in": "Какво е ново в", "What's New in": "Какво е ново в",
"What's on your mind?": "",
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Когато е активирано, моделът ще отговаря на всяко съобщение в чата в реално време, генерирайки отговор веднага щом потребителят изпрати съобщение. Този режим е полезен за приложения за чат на живо, но може да повлияе на производителността на по-бавен хардуер.", "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Когато е активирано, моделът ще отговаря на всяко съобщение в чата в реално време, генерирайки отговор веднага щом потребителят изпрати съобщение. Този режим е полезен за приложения за чат на живо, но може да повлияе на производителността на по-бавен хардуер.",
"wherever you are": "където и да сте", "wherever you are": "където и да сте",
"Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "",

View file

@ -18,11 +18,15 @@
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
"{{model}} download has been canceled": "", "{{model}} download has been canceled": "",
"{{NAMES}} reacted with {{REACTION}}": "",
"{{user}}'s Chats": "{{user}}র চ্যাটস", "{{user}}'s Chats": "{{user}}র চ্যাটস",
"{{webUIName}} Backend Required": "{{webUIName}} ব্যাকএন্ড আবশ্যক", "{{webUIName}} Backend Required": "{{webUIName}} ব্যাকএন্ড আবশ্যক",
"*Prompt node ID(s) are required for image generation": "", "*Prompt node ID(s) are required for image generation": "",
"1 Source": "", "1 Source": "",
"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.": "", "A new version (v{{LATEST_VERSION}}) is now available.": "",
"A private conversation between you and selected users": "",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "চ্যাট এবং ওয়েব অনুসন্ধান প্রশ্নের জন্য শিরোনাম তৈরি করার মতো কাজগুলি সম্পাদন করার সময় একটি টাস্ক মডেল ব্যবহার করা হয়", "A task model is used when performing tasks such as generating titles for chats and web search queries": "চ্যাট এবং ওয়েব অনুসন্ধান প্রশ্নের জন্য শিরোনাম তৈরি করার মতো কাজগুলি সম্পাদন করার সময় একটি টাস্ক মডেল ব্যবহার করা হয়",
"a user": "একজন ব্যাবহারকারী", "a user": "একজন ব্যাবহারকারী",
"About": "সম্পর্কে", "About": "সম্পর্কে",
@ -53,7 +57,8 @@
"Add Custom Prompt": "", "Add Custom Prompt": "",
"Add Details": "", "Add Details": "",
"Add Files": "ফাইল যোগ করুন", "Add Files": "ফাইল যোগ করুন",
"Add Group": "", "Add Member": "",
"Add Members": "",
"Add Memory": "মেমোরি যোগ করুন", "Add Memory": "মেমোরি যোগ করুন",
"Add Model": "মডেল যোগ করুন", "Add Model": "মডেল যোগ করুন",
"Add Reaction": "", "Add Reaction": "",
@ -252,6 +257,7 @@
"Citations": "", "Citations": "",
"Clear memory": "", "Clear memory": "",
"Clear Memory": "", "Clear Memory": "",
"Clear status": "",
"click here": "", "click here": "",
"Click here for filter guides.": "", "Click here for filter guides.": "",
"Click here for help.": "সাহায্যের জন্য এখানে ক্লিক করুন", "Click here for help.": "সাহায্যের জন্য এখানে ক্লিক করুন",
@ -288,6 +294,7 @@
"Code Interpreter": "", "Code Interpreter": "",
"Code Interpreter Engine": "", "Code Interpreter Engine": "",
"Code Interpreter Prompt Template": "", "Code Interpreter Prompt Template": "",
"Collaboration channel where people join as members": "",
"Collapse": "", "Collapse": "",
"Collection": "সংগ্রহ", "Collection": "সংগ্রহ",
"Color": "", "Color": "",
@ -447,6 +454,7 @@
"Discover, download, and explore custom prompts": "কাস্টম প্রম্পটগুলো আবিস্কার, ডাউনলোড এবং এক্সপ্লোর করুন", "Discover, download, and explore custom prompts": "কাস্টম প্রম্পটগুলো আবিস্কার, ডাউনলোড এবং এক্সপ্লোর করুন",
"Discover, download, and explore custom tools": "", "Discover, download, and explore custom tools": "",
"Discover, download, and explore model presets": "মডেল প্রিসেটগুলো আবিস্কার, ডাউনলোড এবং এক্সপ্লোর করুন", "Discover, download, and explore model presets": "মডেল প্রিসেটগুলো আবিস্কার, ডাউনলোড এবং এক্সপ্লোর করুন",
"Discussion channel where access is based on groups and permissions": "",
"Display": "", "Display": "",
"Display chat title in tab": "", "Display chat title in tab": "",
"Display Emoji in Call": "", "Display Emoji in Call": "",
@ -463,6 +471,7 @@
"Document": "ডকুমেন্ট", "Document": "ডকুমেন্ট",
"Document Intelligence": "", "Document Intelligence": "",
"Document Intelligence endpoint required.": "", "Document Intelligence endpoint required.": "",
"Document Intelligence Model": "",
"Documentation": "", "Documentation": "",
"Documents": "ডকুমেন্টসমূহ", "Documents": "ডকুমেন্টসমূহ",
"does not make any external connections, and your data stays securely on your locally hosted server.": "কোন এক্সটার্নাল কানেকশন তৈরি করে না, এবং আপনার ডেটা আর লোকালি হোস্টেড সার্ভারেই নিরাপদে থাকে।", "does not make any external connections, and your data stays securely on your locally hosted server.": "কোন এক্সটার্নাল কানেকশন তৈরি করে না, এবং আপনার ডেটা আর লোকালি হোস্টেড সার্ভারেই নিরাপদে থাকে।",
@ -485,12 +494,15 @@
"e.g. \"json\" or a JSON schema": "", "e.g. \"json\" or a JSON schema": "",
"e.g. 60": "", "e.g. 60": "",
"e.g. A filter to remove profanity from text": "", "e.g. A filter to remove profanity from text": "",
"e.g. about the Roman Empire": "",
"e.g. en": "", "e.g. en": "",
"e.g. My Filter": "", "e.g. My Filter": "",
"e.g. My Tools": "", "e.g. My Tools": "",
"e.g. my_filter": "", "e.g. my_filter": "",
"e.g. my_tools": "", "e.g. my_tools": "",
"e.g. pdf, docx, txt": "", "e.g. pdf, docx, txt": "",
"e.g. Tell me a fun fact": "",
"e.g. Tell me a fun fact about the Roman Empire": "",
"e.g. Tools for performing various operations": "", "e.g. Tools for performing various operations": "",
"e.g., 3, 4, 5 (leave blank for default)": "", "e.g., 3, 4, 5 (leave blank for default)": "",
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "", "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
@ -564,6 +576,7 @@
"Enter Docling Server URL": "", "Enter Docling Server URL": "",
"Enter Document Intelligence Endpoint": "", "Enter Document Intelligence Endpoint": "",
"Enter Document Intelligence Key": "", "Enter Document Intelligence Key": "",
"Enter Document Intelligence Model": "",
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "", "Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
"Enter Exa API Key": "", "Enter Exa API Key": "",
"Enter External Document Loader API Key": "", "Enter External Document Loader API Key": "",
@ -689,7 +702,6 @@
"Export Config to JSON File": "", "Export Config to JSON File": "",
"Export Models": "", "Export Models": "",
"Export Presets": "", "Export Presets": "",
"Export Prompt Suggestions": "",
"Export Prompts": "", "Export Prompts": "",
"Export to CSV": "", "Export to CSV": "",
"Export Tools": "", "Export Tools": "",
@ -704,6 +716,8 @@
"External Web Search URL": "", "External Web Search URL": "",
"Fade Effect for Streaming Text": "", "Fade Effect for Streaming Text": "",
"Failed to add file.": "", "Failed to add file.": "",
"Failed to add members": "",
"Failed to clear status": "",
"Failed to connect to {{URL}} OpenAPI tool server": "", "Failed to connect to {{URL}} OpenAPI tool server": "",
"Failed to copy link": "", "Failed to copy link": "",
"Failed to create API Key.": "API Key তৈরি করা যায়নি।", "Failed to create API Key.": "API Key তৈরি করা যায়নি।",
@ -717,12 +731,14 @@
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to read clipboard contents": "ক্লিপবোর্ডের বিষয়বস্তু পড়া সম্ভব হয়নি", "Failed to read clipboard contents": "ক্লিপবোর্ডের বিষয়বস্তু পড়া সম্ভব হয়নি",
"Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
"Failed to render visualization": "", "Failed to render visualization": "",
"Failed to save connections": "", "Failed to save connections": "",
"Failed to save conversation": "কথোপকথন সংরক্ষণ করতে ব্যর্থ", "Failed to save conversation": "কথোপকথন সংরক্ষণ করতে ব্যর্থ",
"Failed to save models configuration": "", "Failed to save models configuration": "",
"Failed to update settings": "", "Failed to update settings": "",
"Failed to update status": "",
"Failed to upload file.": "", "Failed to upload file.": "",
"Features": "", "Features": "",
"Features Permissions": "", "Features Permissions": "",
@ -816,11 +832,13 @@
"Google PSE Engine Id": "গুগল পিএসই ইঞ্জিন আইডি", "Google PSE Engine Id": "গুগল পিএসই ইঞ্জিন আইডি",
"Gravatar": "", "Gravatar": "",
"Group": "গ্রুপ", "Group": "গ্রুপ",
"Group Channel": "",
"Group created successfully": "", "Group created successfully": "",
"Group deleted successfully": "", "Group deleted successfully": "",
"Group Description": "", "Group Description": "",
"Group Name": "", "Group Name": "",
"Group updated successfully": "", "Group updated successfully": "",
"groups": "",
"Groups": "", "Groups": "",
"H1": "", "H1": "",
"H2": "", "H2": "",
@ -875,7 +893,6 @@
"Import Models": "", "Import Models": "",
"Import Notes": "", "Import Notes": "",
"Import Presets": "", "Import Presets": "",
"Import Prompt Suggestions": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
"Import Tools": "", "Import Tools": "",
@ -1011,6 +1028,9 @@
"MCP": "", "MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Medium": "", "Medium": "",
"Member removed successfully": "",
"Members": "",
"Members added successfully": "",
"Memories accessible by LLMs will be shown here.": "LLMs দ্বারা অ্যাক্সেসযোগ্য মেমোরিগুলি এখানে দেখানো হবে।", "Memories accessible by LLMs will be shown here.": "LLMs দ্বারা অ্যাক্সেসযোগ্য মেমোরিগুলি এখানে দেখানো হবে।",
"Memory": "মেমোরি", "Memory": "মেমোরি",
"Memory added successfully": "", "Memory added successfully": "",
@ -1110,6 +1130,7 @@
"No models selected": "", "No models selected": "",
"No Notes": "", "No Notes": "",
"No notes found": "", "No notes found": "",
"No pinned messages": "",
"No prompts found": "", "No prompts found": "",
"No results": "কোন ফলাফল পাওয়া যায়নি", "No results": "কোন ফলাফল পাওয়া যায়নি",
"No results found": "কোন ফলাফল পাওয়া যায়নি", "No results found": "কোন ফলাফল পাওয়া যায়নি",
@ -1157,6 +1178,7 @@
"Only alphanumeric characters and hyphens are allowed in the command string.": "কমান্ড স্ট্রিং-এ শুধুমাত্র ইংরেজি অক্ষর, সংখ্যা এবং হাইফেন ব্যবহার করা যাবে।", "Only alphanumeric characters and hyphens are allowed in the command string.": "কমান্ড স্ট্রিং-এ শুধুমাত্র ইংরেজি অক্ষর, সংখ্যা এবং হাইফেন ব্যবহার করা যাবে।",
"Only can be triggered when the chat input is in focus.": "", "Only can be triggered when the chat input is in focus.": "",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "", "Only collections can be edited, create a new knowledge base to edit/add documents.": "",
"Only invited users can access": "",
"Only markdown files are allowed": "", "Only markdown files are allowed": "",
"Only select users and groups with permission can access": "", "Only select users and groups with permission can access": "",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "ওহ, মনে হচ্ছে ইউআরএলটা ইনভ্যালিড। দয়া করে আর চেক করে চেষ্টা করুন।", "Oops! Looks like the URL is invalid. Please double-check and try again.": "ওহ, মনে হচ্ছে ইউআরএলটা ইনভ্যালিড। দয়া করে আর চেক করে চেষ্টা করুন।",
@ -1219,6 +1241,7 @@
"Personalization": "ডিজিটাল বাংলা", "Personalization": "ডিজিটাল বাংলা",
"Pin": "", "Pin": "",
"Pinned": "", "Pinned": "",
"Pinned Messages": "",
"Pioneer insights": "", "Pioneer insights": "",
"Pipe": "", "Pipe": "",
"Pipeline deleted successfully": "", "Pipeline deleted successfully": "",
@ -1261,9 +1284,9 @@
"Previous 7 days": "পূর্ব দিন", "Previous 7 days": "পূর্ব দিন",
"Previous message": "", "Previous message": "",
"Private": "", "Private": "",
"Private conversation between selected users": "",
"Profile": "প্রোফাইল", "Profile": "প্রোফাইল",
"Prompt": "", "Prompt": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "প্রম্প্ট (উদাহরণস্বরূপ, আমি রোমান ইমপার্টের সম্পর্কে একটি উপস্থিতি জানতে বল)",
"Prompt Autocompletion": "", "Prompt Autocompletion": "",
"Prompt Content": "প্রম্পট কন্টেন্ট", "Prompt Content": "প্রম্পট কন্টেন্ট",
"Prompt created successfully": "", "Prompt created successfully": "",
@ -1449,6 +1472,7 @@
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "", "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
"Set Voice": "কন্ঠস্বর নির্ধারণ করুন", "Set Voice": "কন্ঠস্বর নির্ধারণ করুন",
"Set whisper model": "", "Set whisper model": "",
"Set your status": "",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "", "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "", "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets how far back for the model to look back to prevent repetition.": "", "Sets how far back for the model to look back to prevent repetition.": "",
@ -1501,6 +1525,9 @@
"Start a new conversation": "", "Start a new conversation": "",
"Start of the channel": "চ্যানেলের শুরু", "Start of the channel": "চ্যানেলের শুরু",
"Start Tag": "", "Start Tag": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Steps": "", "Steps": "",
@ -1516,7 +1543,7 @@
"STT Model": "", "STT Model": "",
"STT Settings": "STT সেটিংস", "STT Settings": "STT সেটিংস",
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "সাবটাইটল (রোমান ইম্পার্টের সম্পর্কে)", "Subtitle": "",
"Success": "সফল", "Success": "সফল",
"Successfully imported {{userCount}} users.": "", "Successfully imported {{userCount}} users.": "",
"Successfully updated.": "সফলভাবে আপডেট হয়েছে", "Successfully updated.": "সফলভাবে আপডেট হয়েছে",
@ -1599,7 +1626,6 @@
"Tika Server URL required.": "", "Tika Server URL required.": "",
"Tiktoken": "", "Tiktoken": "",
"Title": "শিরোনাম", "Title": "শিরোনাম",
"Title (e.g. Tell me a fun fact)": "শিরোনাম (একটি উপস্থিতি বিবরণ জানান)",
"Title Auto-Generation": "স্বয়ংক্রিয় শিরোনামগঠন", "Title Auto-Generation": "স্বয়ংক্রিয় শিরোনামগঠন",
"Title cannot be an empty string.": "শিরোনাম অবশ্যই একটি পাশাপাশি শব্দ হতে হবে।", "Title cannot be an empty string.": "শিরোনাম অবশ্যই একটি পাশাপাশি শব্দ হতে হবে।",
"Title Generation": "", "Title Generation": "",
@ -1668,6 +1694,7 @@
"Update and Copy Link": "আপডেট এবং লিংক কপি করুন", "Update and Copy Link": "আপডেট এবং লিংক কপি করুন",
"Update for the latest features and improvements.": "", "Update for the latest features and improvements.": "",
"Update password": "পাসওয়ার্ড আপডেট করুন", "Update password": "পাসওয়ার্ড আপডেট করুন",
"Update your status": "",
"Updated": "", "Updated": "",
"Updated at": "", "Updated at": "",
"Updated At": "", "Updated At": "",
@ -1721,6 +1748,7 @@
"View Replies": "", "View Replies": "",
"View Result from **{{NAME}}**": "", "View Result from **{{NAME}}**": "",
"Visibility": "", "Visibility": "",
"Visible to all users": "",
"Vision": "", "Vision": "",
"Voice": "", "Voice": "",
"Voice Input": "", "Voice Input": "",
@ -1748,6 +1776,7 @@
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"What's New in": "এতে নতুন কী", "What's New in": "এতে নতুন কী",
"What's on your mind?": "",
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "", "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
"wherever you are": "", "wherever you are": "",
"Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "",

View file

@ -18,11 +18,15 @@
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
"{{model}} download has been canceled": "", "{{model}} download has been canceled": "",
"{{NAMES}} reacted with {{REACTION}}": "",
"{{user}}'s Chats": "{{user}} ཡི་ཁ་བརྡ།", "{{user}}'s Chats": "{{user}} ཡི་ཁ་བརྡ།",
"{{webUIName}} Backend Required": "{{webUIName}} རྒྱབ་སྣེ་དགོས།", "{{webUIName}} Backend Required": "{{webUIName}} རྒྱབ་སྣེ་དགོས།",
"*Prompt node ID(s) are required for image generation": "*པར་བཟོའི་ཆེད་དུ་འགུལ་སློང་མདུད་ཚེག་གི་ ID(s) དགོས།", "*Prompt node ID(s) are required for image generation": "*པར་བཟོའི་ཆེད་དུ་འགུལ་སློང་མདུད་ཚེག་གི་ ID(s) དགོས།",
"1 Source": "", "1 Source": "",
"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}}) ད་ལྟ་ཡོད།", "A new version (v{{LATEST_VERSION}}) is now available.": "པར་གཞི་གསར་པ། (v{{LATEST_VERSION}}) ད་ལྟ་ཡོད།",
"A private conversation between you and selected users": "",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "ལས་ཀའི་དཔེ་དབྱིབས་ནི་ཁ་བརྡའི་ཁ་བྱང་བཟོ་བ་དང་དྲ་བའི་འཚོལ་བཤེར་འདྲི་བ་ལྟ་བུའི་ལས་འགན་སྒྲུབ་སྐབས་སྤྱོད་ཀྱི་ཡོད།", "A task model is used when performing tasks such as generating titles for chats and web search queries": "ལས་ཀའི་དཔེ་དབྱིབས་ནི་ཁ་བརྡའི་ཁ་བྱང་བཟོ་བ་དང་དྲ་བའི་འཚོལ་བཤེར་འདྲི་བ་ལྟ་བུའི་ལས་འགན་སྒྲུབ་སྐབས་སྤྱོད་ཀྱི་ཡོད།",
"a user": "བེད་སྤྱོད་མཁན་ཞིག", "a user": "བེད་སྤྱོད་མཁན་ཞིག",
"About": "སྐོར་ལོ།", "About": "སྐོར་ལོ།",
@ -53,7 +57,8 @@
"Add Custom Prompt": "", "Add Custom Prompt": "",
"Add Details": "", "Add Details": "",
"Add Files": "ཡིག་ཆ་སྣོན་པ།", "Add Files": "ཡིག་ཆ་སྣོན་པ།",
"Add Group": "ཚོགས་པ་སྣོན་པ།", "Add Member": "",
"Add Members": "",
"Add Memory": "དྲན་ཤེས་སྣོན་པ།", "Add Memory": "དྲན་ཤེས་སྣོན་པ།",
"Add Model": "དཔེ་དབྱིབས་སྣོན་པ།", "Add Model": "དཔེ་དབྱིབས་སྣོན་པ།",
"Add Reaction": "ཡ་ལན་སྣོན་པ།", "Add Reaction": "ཡ་ལན་སྣོན་པ།",
@ -252,6 +257,7 @@
"Citations": "", "Citations": "",
"Clear memory": "དྲན་ཤེས་གཙང་སེལ།", "Clear memory": "དྲན་ཤེས་གཙང་སེལ།",
"Clear Memory": "དྲན་ཤེས་གཙང་སེལ།", "Clear Memory": "དྲན་ཤེས་གཙང་སེལ།",
"Clear status": "",
"click here": "འདིར་མནན་པ།", "click here": "འདིར་མནན་པ།",
"Click here for filter guides.": "འཚག་མ་ལམ་སྟོན་གྱི་ཆེད་དུ་འདིར་མནན་པ།", "Click here for filter guides.": "འཚག་མ་ལམ་སྟོན་གྱི་ཆེད་དུ་འདིར་མནན་པ།",
"Click here for help.": "རོགས་རམ་ཆེད་དུ་འདིར་མནན་པ།", "Click here for help.": "རོགས་རམ་ཆེད་དུ་འདིར་མནན་པ།",
@ -288,6 +294,7 @@
"Code Interpreter": "ཀོཌ་འགྲེལ་བཤད།", "Code Interpreter": "ཀོཌ་འགྲེལ་བཤད།",
"Code Interpreter Engine": "ཀོཌ་འགྲེལ་བཤད་འཕྲུལ་འཁོར།", "Code Interpreter Engine": "ཀོཌ་འགྲེལ་བཤད་འཕྲུལ་འཁོར།",
"Code Interpreter Prompt Template": "ཀོཌ་འགྲེལ་བཤད་འགུལ་སློང་མ་དཔེ།", "Code Interpreter Prompt Template": "ཀོཌ་འགྲེལ་བཤད་འགུལ་སློང་མ་དཔེ།",
"Collaboration channel where people join as members": "",
"Collapse": "བསྐུམ་པ།", "Collapse": "བསྐུམ་པ།",
"Collection": "བསྡུ་གསོག", "Collection": "བསྡུ་གསོག",
"Color": "ཚོན་མདོག", "Color": "ཚོན་མདོག",
@ -447,6 +454,7 @@
"Discover, download, and explore custom prompts": "སྲོལ་བཟོས་འགུལ་སློང་རྙེད་པ། ཕབ་ལེན་བྱེད་པ། དང་བརྟག་ཞིབ་བྱེད་པ།", "Discover, download, and explore custom prompts": "སྲོལ་བཟོས་འགུལ་སློང་རྙེད་པ། ཕབ་ལེན་བྱེད་པ། དང་བརྟག་ཞིབ་བྱེད་པ།",
"Discover, download, and explore custom tools": "སྲོལ་བཟོས་ལག་ཆ་རྙེད་པ། ཕབ་ལེན་བྱེད་པ། དང་བརྟག་ཞིབ་བྱེད་པ།", "Discover, download, and explore custom tools": "སྲོལ་བཟོས་ལག་ཆ་རྙེད་པ། ཕབ་ལེན་བྱེད་པ། དང་བརྟག་ཞིབ་བྱེད་པ།",
"Discover, download, and explore model presets": "དཔེ་དབྱིབས་སྔོན་སྒྲིག་རྙེད་པ། ཕབ་ལེན་བྱེད་པ། དང་བརྟག་ཞིབ་བྱེད་པ།", "Discover, download, and explore model presets": "དཔེ་དབྱིབས་སྔོན་སྒྲིག་རྙེད་པ། ཕབ་ལེན་བྱེད་པ། དང་བརྟག་ཞིབ་བྱེད་པ།",
"Discussion channel where access is based on groups and permissions": "",
"Display": "འཆར་སྟོན།", "Display": "འཆར་སྟོན།",
"Display chat title in tab": "", "Display chat title in tab": "",
"Display Emoji in Call": "སྐད་འབོད་ནང་ Emoji འཆར་སྟོན་བྱེད་པ།", "Display Emoji in Call": "སྐད་འབོད་ནང་ Emoji འཆར་སྟོན་བྱེད་པ།",
@ -463,6 +471,7 @@
"Document": "ཡིག་ཆ།", "Document": "ཡིག་ཆ།",
"Document Intelligence": "ཡིག་ཆའི་རིག་ནུས།", "Document Intelligence": "ཡིག་ཆའི་རིག་ནུས།",
"Document Intelligence endpoint required.": "", "Document Intelligence endpoint required.": "",
"Document Intelligence Model": "",
"Documentation": "ཡིག་ཆ།", "Documentation": "ཡིག་ཆ།",
"Documents": "ཡིག་ཆ།", "Documents": "ཡིག་ཆ།",
"does not make any external connections, and your data stays securely on your locally hosted server.": "ཕྱི་རོལ་གྱི་སྦྲེལ་མཐུད་གང་ཡང་མི་བྱེད། དེ་མིན་ཁྱེད་ཀྱི་གནས་ཚུལ་དེ་ཁྱེད་ཀྱི་ས་གནས་སུ་བཀོད་སྒྲིག་བྱས་པའི་སར་བར་སྟེང་བདེ་འཇགས་ངང་གནས་ངེས།", "does not make any external connections, and your data stays securely on your locally hosted server.": "ཕྱི་རོལ་གྱི་སྦྲེལ་མཐུད་གང་ཡང་མི་བྱེད། དེ་མིན་ཁྱེད་ཀྱི་གནས་ཚུལ་དེ་ཁྱེད་ཀྱི་ས་གནས་སུ་བཀོད་སྒྲིག་བྱས་པའི་སར་བར་སྟེང་བདེ་འཇགས་ངང་གནས་ངེས།",
@ -485,12 +494,15 @@
"e.g. \"json\" or a JSON schema": "དཔེར་ན། \"json\" ཡང་ན་ JSON གི་ schema", "e.g. \"json\" or a JSON schema": "དཔེར་ན། \"json\" ཡང་ན་ JSON གི་ schema",
"e.g. 60": "དཔེར་ན། ༦༠", "e.g. 60": "དཔེར་ན། ༦༠",
"e.g. A filter to remove profanity from text": "དཔེར་ན། ཡིག་རྐྱང་ནས་ཚིག་རྩུབ་འདོར་བྱེད་ཀྱི་འཚག་མ།", "e.g. A filter to remove profanity from text": "དཔེར་ན། ཡིག་རྐྱང་ནས་ཚིག་རྩུབ་འདོར་བྱེད་ཀྱི་འཚག་མ།",
"e.g. about the Roman Empire": "",
"e.g. en": "", "e.g. en": "",
"e.g. My Filter": "དཔེར་ན། ངའི་འཚག་མ།", "e.g. My Filter": "དཔེར་ན། ངའི་འཚག་མ།",
"e.g. My Tools": "དཔེར་ན། ངའི་ལག་ཆ།", "e.g. My Tools": "དཔེར་ན། ངའི་ལག་ཆ།",
"e.g. my_filter": "དཔེར་ན། my_filter", "e.g. my_filter": "དཔེར་ན། my_filter",
"e.g. my_tools": "དཔེར་ན། my_tools", "e.g. my_tools": "དཔེར་ན། my_tools",
"e.g. pdf, docx, txt": "", "e.g. pdf, docx, txt": "",
"e.g. Tell me a fun fact": "",
"e.g. Tell me a fun fact about the Roman Empire": "",
"e.g. Tools for performing various operations": "དཔེར་ན། ལས་ཀ་སྣ་ཚོགས་སྒྲུབ་བྱེད་ཀྱི་ལག་ཆ།", "e.g. Tools for performing various operations": "དཔེར་ན། ལས་ཀ་སྣ་ཚོགས་སྒྲུབ་བྱེད་ཀྱི་ལག་ཆ།",
"e.g., 3, 4, 5 (leave blank for default)": "", "e.g., 3, 4, 5 (leave blank for default)": "",
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "", "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
@ -564,6 +576,7 @@
"Enter Docling Server URL": "Docling སར་བར་གྱི་ URL འཇུག་པ།", "Enter Docling Server URL": "Docling སར་བར་གྱི་ URL འཇུག་པ།",
"Enter Document Intelligence Endpoint": "ཡིག་ཆའི་རིག་ནུས་མཇུག་མཐུད་འཇུག་པ།", "Enter Document Intelligence Endpoint": "ཡིག་ཆའི་རིག་ནུས་མཇུག་མཐུད་འཇུག་པ།",
"Enter Document Intelligence Key": "ཡིག་ཆའི་རིག་ནུས་ལྡེ་མིག་འཇུག་པ།", "Enter Document Intelligence Key": "ཡིག་ཆའི་རིག་ནུས་ལྡེ་མིག་འཇུག་པ།",
"Enter Document Intelligence Model": "",
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "", "Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
"Enter Exa API Key": "Exa API ལྡེ་མིག་འཇུག་པ།", "Enter Exa API Key": "Exa API ལྡེ་མིག་འཇུག་པ།",
"Enter External Document Loader API Key": "", "Enter External Document Loader API Key": "",
@ -689,7 +702,6 @@
"Export Config to JSON File": "སྒྲིག་འགོད་ JSON ཡིག་ཆར་ཕྱིར་གཏོང་།", "Export Config to JSON File": "སྒྲིག་འགོད་ JSON ཡིག་ཆར་ཕྱིར་གཏོང་།",
"Export Models": "", "Export Models": "",
"Export Presets": "སྔོན་སྒྲིག་ཕྱིར་གཏོང་།", "Export Presets": "སྔོན་སྒྲིག་ཕྱིར་གཏོང་།",
"Export Prompt Suggestions": "",
"Export Prompts": "", "Export Prompts": "",
"Export to CSV": "CSV ལ་ཕྱིར་གཏོང་།", "Export to CSV": "CSV ལ་ཕྱིར་གཏོང་།",
"Export Tools": "", "Export Tools": "",
@ -704,6 +716,8 @@
"External Web Search URL": "", "External Web Search URL": "",
"Fade Effect for Streaming Text": "", "Fade Effect for Streaming Text": "",
"Failed to add file.": "ཡིག་ཆ་སྣོན་པར་མ་ཐུབ།", "Failed to add file.": "ཡིག་ཆ་སྣོན་པར་མ་ཐུབ།",
"Failed to add members": "",
"Failed to clear status": "",
"Failed to connect to {{URL}} OpenAPI tool server": "{{URL}} OpenAPI ལག་ཆའི་སར་བར་ལ་སྦྲེལ་མཐུད་བྱེད་མ་ཐུབ།", "Failed to connect to {{URL}} OpenAPI tool server": "{{URL}} OpenAPI ལག་ཆའི་སར་བར་ལ་སྦྲེལ་མཐུད་བྱེད་མ་ཐུབ།",
"Failed to copy link": "", "Failed to copy link": "",
"Failed to create API Key.": "API ལྡེ་མིག་བཟོ་མ་ཐུབ།", "Failed to create API Key.": "API ལྡེ་མིག་བཟོ་མ་ཐུབ།",
@ -717,12 +731,14 @@
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to read clipboard contents": "སྦྱར་སྡེར་གྱི་ནང་དོན་ཀློག་མ་ཐུབ།", "Failed to read clipboard contents": "སྦྱར་སྡེར་གྱི་ནང་དོན་ཀློག་མ་ཐུབ།",
"Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
"Failed to render visualization": "", "Failed to render visualization": "",
"Failed to save connections": "", "Failed to save connections": "",
"Failed to save conversation": "གླེང་མོལ་ཉར་ཚགས་བྱེད་མ་ཐུབ།", "Failed to save conversation": "གླེང་མོལ་ཉར་ཚགས་བྱེད་མ་ཐུབ།",
"Failed to save models configuration": "དཔེ་དབྱིབས་སྒྲིག་འགོད་ཉར་ཚགས་བྱེད་མ་ཐུབ།", "Failed to save models configuration": "དཔེ་དབྱིབས་སྒྲིག་འགོད་ཉར་ཚགས་བྱེད་མ་ཐུབ།",
"Failed to update settings": "སྒྲིག་འགོད་གསར་སྒྱུར་བྱེད་མ་ཐུབ།", "Failed to update settings": "སྒྲིག་འགོད་གསར་སྒྱུར་བྱེད་མ་ཐུབ།",
"Failed to update status": "",
"Failed to upload file.": "ཡིག་ཆ་སྤར་མ་ཐུབ།", "Failed to upload file.": "ཡིག་ཆ་སྤར་མ་ཐུབ།",
"Features": "ཁྱད་ཆོས།", "Features": "ཁྱད་ཆོས།",
"Features Permissions": "ཁྱད་ཆོས་ཀྱི་དབང་ཚད།", "Features Permissions": "ཁྱད་ཆོས་ཀྱི་དབང་ཚད།",
@ -816,11 +832,13 @@
"Google PSE Engine Id": "Google PSE Engine Id", "Google PSE Engine Id": "Google PSE Engine Id",
"Gravatar": "", "Gravatar": "",
"Group": "ཚོགས་པ།", "Group": "ཚོགས་པ།",
"Group Channel": "",
"Group created successfully": "ཚོགས་པ་ལེགས་པར་བཟོས་ཟིན།", "Group created successfully": "ཚོགས་པ་ལེགས་པར་བཟོས་ཟིན།",
"Group deleted successfully": "ཚོགས་པ་ལེགས་པར་བསུབས་ཟིན།", "Group deleted successfully": "ཚོགས་པ་ལེགས་པར་བསུབས་ཟིན།",
"Group Description": "ཚོགས་པའི་འགྲེལ་བཤད།", "Group Description": "ཚོགས་པའི་འགྲེལ་བཤད།",
"Group Name": "ཚོགས་པའི་མིང་།", "Group Name": "ཚོགས་པའི་མིང་།",
"Group updated successfully": "ཚོགས་པ་ལེགས་པར་གསར་སྒྱུར་བྱས་ཟིན།", "Group updated successfully": "ཚོགས་པ་ལེགས་པར་གསར་སྒྱུར་བྱས་ཟིན།",
"groups": "",
"Groups": "ཚོགས་པ།", "Groups": "ཚོགས་པ།",
"H1": "", "H1": "",
"H2": "", "H2": "",
@ -875,7 +893,6 @@
"Import Models": "", "Import Models": "",
"Import Notes": "", "Import Notes": "",
"Import Presets": "སྔོན་སྒྲིག་ནང་འདྲེན།", "Import Presets": "སྔོན་སྒྲིག་ནང་འདྲེན།",
"Import Prompt Suggestions": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
"Import Tools": "", "Import Tools": "",
@ -1011,6 +1028,9 @@
"MCP": "", "MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Medium": "", "Medium": "",
"Member removed successfully": "",
"Members": "",
"Members added successfully": "",
"Memories accessible by LLMs will be shown here.": "LLMs ཀྱིས་འཛུལ་སྤྱོད་ཐུབ་པའི་དྲན་ཤེས་དག་འདིར་སྟོན་ངེས།", "Memories accessible by LLMs will be shown here.": "LLMs ཀྱིས་འཛུལ་སྤྱོད་ཐུབ་པའི་དྲན་ཤེས་དག་འདིར་སྟོན་ངེས།",
"Memory": "དྲན་ཤེས།", "Memory": "དྲན་ཤེས།",
"Memory added successfully": "དྲན་ཤེས་ལེགས་པར་བསྣན་ཟིན།", "Memory added successfully": "དྲན་ཤེས་ལེགས་པར་བསྣན་ཟིན།",
@ -1110,6 +1130,7 @@
"No models selected": "དཔེ་དབྱིབས་གདམ་ག་མ་བྱས།", "No models selected": "དཔེ་དབྱིབས་གདམ་ག་མ་བྱས།",
"No Notes": "", "No Notes": "",
"No notes found": "", "No notes found": "",
"No pinned messages": "",
"No prompts found": "", "No prompts found": "",
"No results": "འབྲས་བུ་མ་རྙེད།", "No results": "འབྲས་བུ་མ་རྙེད།",
"No results found": "འབྲས་བུ་མ་རྙེད།", "No results found": "འབྲས་བུ་མ་རྙེད།",
@ -1157,6 +1178,7 @@
"Only alphanumeric characters and hyphens are allowed in the command string.": "བཀའ་བརྡའི་ཡིག་ཕྲེང་ནང་ཨང་ཀི་དང་དབྱིན་ཡིག་གི་ཡིག་འབྲུ་དང་སྦྲེལ་རྟགས་ཁོ་ན་ཆོག་པ།", "Only alphanumeric characters and hyphens are allowed in the command string.": "བཀའ་བརྡའི་ཡིག་ཕྲེང་ནང་ཨང་ཀི་དང་དབྱིན་ཡིག་གི་ཡིག་འབྲུ་དང་སྦྲེལ་རྟགས་ཁོ་ན་ཆོག་པ།",
"Only can be triggered when the chat input is in focus.": "", "Only can be triggered when the chat input is in focus.": "",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "བསྡུ་གསོག་ཁོ་ན་ཞུ་དག་བྱེད་ཐུབ། ཡིག་ཆ་ཞུ་དག་/སྣོན་པར་ཤེས་བྱའི་རྟེན་གཞི་གསར་པ་ཞིག་བཟོ་བ།", "Only collections can be edited, create a new knowledge base to edit/add documents.": "བསྡུ་གསོག་ཁོ་ན་ཞུ་དག་བྱེད་ཐུབ། ཡིག་ཆ་ཞུ་དག་/སྣོན་པར་ཤེས་བྱའི་རྟེན་གཞི་གསར་པ་ཞིག་བཟོ་བ།",
"Only invited users can access": "",
"Only markdown files are allowed": "", "Only markdown files are allowed": "",
"Only select users and groups with permission can access": "དབང་ཚད་ཡོད་པའི་བེད་སྤྱོད་མཁན་དང་ཚོགས་པ་གདམ་ག་བྱས་པ་ཁོ་ན་འཛུལ་སྤྱོད་ཐུབ།", "Only select users and groups with permission can access": "དབང་ཚད་ཡོད་པའི་བེད་སྤྱོད་མཁན་དང་ཚོགས་པ་གདམ་ག་བྱས་པ་ཁོ་ན་འཛུལ་སྤྱོད་ཐུབ།",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "ཨོའོ། URL དེ་ནུས་མེད་ཡིན་པ་འདྲ། ཡང་བསྐྱར་ཞིབ་དཔྱད་བྱས་ནས་ཚོད་ལྟ་བྱེད་རོགས།", "Oops! Looks like the URL is invalid. Please double-check and try again.": "ཨོའོ། URL དེ་ནུས་མེད་ཡིན་པ་འདྲ། ཡང་བསྐྱར་ཞིབ་དཔྱད་བྱས་ནས་ཚོད་ལྟ་བྱེད་རོགས།",
@ -1219,6 +1241,7 @@
"Personalization": "སྒེར་སྤྱོད་ཅན།", "Personalization": "སྒེར་སྤྱོད་ཅན།",
"Pin": "གདབ་པ།", "Pin": "གདབ་པ།",
"Pinned": "གདབ་ཟིན།", "Pinned": "གདབ་ཟིན།",
"Pinned Messages": "",
"Pioneer insights": "སྔོན་དཔག་རིག་ནུས།", "Pioneer insights": "སྔོན་དཔག་རིག་ནུས།",
"Pipe": "", "Pipe": "",
"Pipeline deleted successfully": "རྒྱུ་ལམ་ལེགས་པར་བསུབས་ཟིན།", "Pipeline deleted successfully": "རྒྱུ་ལམ་ལེགས་པར་བསུབས་ཟིན།",
@ -1261,9 +1284,9 @@
"Previous 7 days": "ཉིན་ ༧ སྔོན་མ།", "Previous 7 days": "ཉིན་ ༧ སྔོན་མ།",
"Previous message": "", "Previous message": "",
"Private": "སྒེར།", "Private": "སྒེར།",
"Private conversation between selected users": "",
"Profile": "སྤྱི་ཐག", "Profile": "སྤྱི་ཐག",
"Prompt": "འགུལ་སློང་།", "Prompt": "འགུལ་སློང་།",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "འགུལ་སློང་ (དཔེར་ན། རོམ་མའི་གོང་མའི་རྒྱལ་ཁབ་སྐོར་གྱི་དགོད་བྲོ་བའི་དོན་དངོས་ཤིག་ང་ལ་ཤོད་པ།)",
"Prompt Autocompletion": "འགུལ་སློང་རང་འཚང་།", "Prompt Autocompletion": "འགུལ་སློང་རང་འཚང་།",
"Prompt Content": "འགུལ་སློང་ནང་དོན།", "Prompt Content": "འགུལ་སློང་ནང་དོན།",
"Prompt created successfully": "འགུལ་སློང་ལེགས་པར་བཟོས་ཟིན།", "Prompt created successfully": "འགུལ་སློང་ལེགས་པར་བཟོས་ཟིན།",
@ -1448,6 +1471,7 @@
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "རྩིས་རྒྱག་ལ་བེད་སྤྱོད་གཏོང་བའི་ལས་ཀའི་སྐུད་གྲངས་འཇོག་པ། འདེམས་ཀ་འདིས་ནང་ཡོང་རེ་ཞུ་དུས་མཉམ་དུ་སྒྲུབ་པར་སྐུད་གྲངས་ག་ཚོད་བེད་སྤྱོད་གཏོང་དགོས་ཚོད་འཛིན་བྱེད། རིན་ཐང་འདི་མང་དུ་བཏང་ན་མཉམ་ལས་མཐོ་བའི་ལས་འགན་འོག་ལས་ཆོད་ལེགས་སུ་གཏོང་ཐུབ། འོན་ཀྱང་དེས་ CPU ཡི་ཐོན་ཁུངས་མང་བ་ཟ་སྲིད།", "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "རྩིས་རྒྱག་ལ་བེད་སྤྱོད་གཏོང་བའི་ལས་ཀའི་སྐུད་གྲངས་འཇོག་པ། འདེམས་ཀ་འདིས་ནང་ཡོང་རེ་ཞུ་དུས་མཉམ་དུ་སྒྲུབ་པར་སྐུད་གྲངས་ག་ཚོད་བེད་སྤྱོད་གཏོང་དགོས་ཚོད་འཛིན་བྱེད། རིན་ཐང་འདི་མང་དུ་བཏང་ན་མཉམ་ལས་མཐོ་བའི་ལས་འགན་འོག་ལས་ཆོད་ལེགས་སུ་གཏོང་ཐུབ། འོན་ཀྱང་དེས་ CPU ཡི་ཐོན་ཁུངས་མང་བ་ཟ་སྲིད།",
"Set Voice": "སྐད་འཇོག་པ།", "Set Voice": "སྐད་འཇོག་པ།",
"Set whisper model": "whisper དཔེ་དབྱིབས་འཇོག་པ།", "Set whisper model": "whisper དཔེ་དབྱིབས་འཇོག་པ།",
"Set your status": "",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "ཉུང་མཐར་ཐེངས་གཅིག་བྱུང་བའི་ཊོཀ་ཀེན་ལ་ངོས་མཉམ་ཕྱོགས་ཞེན་ཞིག་འཇོག་པ། རིན་ཐང་མཐོ་བ་ (དཔེར་ན། 1.5) ཡིས་བསྐྱར་ཟློས་ལ་ཆད་པ་དྲག་པོ་གཏོང་ངེས། དེ་བཞིན་དུ་རིན་ཐང་དམའ་བ་ (དཔེར་ན། 0.9) ཡིས་གུ་ཡངས་ཆེ་བ་ཡོང་ངེས། 0 ལ་སླེབས་དུས། དེ་ནུས་མེད་བཏང་ཡོད།", "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "ཉུང་མཐར་ཐེངས་གཅིག་བྱུང་བའི་ཊོཀ་ཀེན་ལ་ངོས་མཉམ་ཕྱོགས་ཞེན་ཞིག་འཇོག་པ། རིན་ཐང་མཐོ་བ་ (དཔེར་ན། 1.5) ཡིས་བསྐྱར་ཟློས་ལ་ཆད་པ་དྲག་པོ་གཏོང་ངེས། དེ་བཞིན་དུ་རིན་ཐང་དམའ་བ་ (དཔེར་ན། 0.9) ཡིས་གུ་ཡངས་ཆེ་བ་ཡོང་ངེས། 0 ལ་སླེབས་དུས། དེ་ནུས་མེད་བཏང་ཡོད།",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "ཊོཀ་ཀེན་དེ་ཐེངས་ག་ཚོད་བྱུང་ཡོད་པར་གཞིགས་ནས་བསྐྱར་ཟློས་ལ་ཆད་པ་གཏོང་བར་ཊོཀ་ཀེན་ལ་ཆེ་ཆུང་འཇོག་པའི་ཕྱོགས་ཞེན་ཞིག་འཇོག་པ། རིན་ཐང་མཐོ་བ་ (དཔེར་ན། 1.5) ཡིས་བསྐྱར་ཟློས་ལ་ཆད་པ་དྲག་པོ་གཏོང་ངེས། དེ་བཞིན་དུ་རིན་ཐང་དམའ་བ་ (དཔེར་ན། 0.9) ཡིས་གུ་ཡངས་ཆེ་བ་ཡོང་ངེས། 0 ལ་སླེབས་དུས། དེ་ནུས་མེད་བཏང་ཡོད།", "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "ཊོཀ་ཀེན་དེ་ཐེངས་ག་ཚོད་བྱུང་ཡོད་པར་གཞིགས་ནས་བསྐྱར་ཟློས་ལ་ཆད་པ་གཏོང་བར་ཊོཀ་ཀེན་ལ་ཆེ་ཆུང་འཇོག་པའི་ཕྱོགས་ཞེན་ཞིག་འཇོག་པ། རིན་ཐང་མཐོ་བ་ (དཔེར་ན། 1.5) ཡིས་བསྐྱར་ཟློས་ལ་ཆད་པ་དྲག་པོ་གཏོང་ངེས། དེ་བཞིན་དུ་རིན་ཐང་དམའ་བ་ (དཔེར་ན། 0.9) ཡིས་གུ་ཡངས་ཆེ་བ་ཡོང་ངེས། 0 ལ་སླེབས་དུས། དེ་ནུས་མེད་བཏང་ཡོད།",
"Sets how far back for the model to look back to prevent repetition.": "བསྐྱར་ཟློས་སྔོན་འགོག་བྱེད་པའི་ཆེད་དུ་དཔེ་དབྱིབས་ཀྱིས་ཕྱིར་ག་ཚོད་ལྟ་དགོས་འཇོག་པ།", "Sets how far back for the model to look back to prevent repetition.": "བསྐྱར་ཟློས་སྔོན་འགོག་བྱེད་པའི་ཆེད་དུ་དཔེ་དབྱིབས་ཀྱིས་ཕྱིར་ག་ཚོད་ལྟ་དགོས་འཇོག་པ།",
@ -1500,6 +1524,9 @@
"Start a new conversation": "", "Start a new conversation": "",
"Start of the channel": "རྒྱས་ལམ་འགོ་རིམ་", "Start of the channel": "རྒྱས་ལམ་འགོ་རིམ་",
"Start Tag": "", "Start Tag": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Steps": "", "Steps": "",
@ -1515,7 +1542,7 @@
"STT Model": "STT དཔེ་དབྱིབས།", "STT Model": "STT དཔེ་དབྱིབས།",
"STT Settings": "STT སྒྲིག་འགོད།", "STT Settings": "STT སྒྲིག་འགོད།",
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "ཁ་བྱང་ཕལ་པ། (དཔེར་ན། རོམ་མའི་གོང་མའི་རྒྱལ་ཁབ་སྐོར།)", "Subtitle": "",
"Success": "ལེགས་འགྲུབ།", "Success": "ལེགས་འགྲུབ།",
"Successfully imported {{userCount}} users.": "", "Successfully imported {{userCount}} users.": "",
"Successfully updated.": "ལེགས་པར་གསར་སྒྱུར་བྱས།", "Successfully updated.": "ལེགས་པར་གསར་སྒྱུར་བྱས།",
@ -1598,7 +1625,6 @@
"Tika Server URL required.": "Tika Server URL དགོས་ངེས།", "Tika Server URL required.": "Tika Server URL དགོས་ངེས།",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Title": "ཁ་བྱང་།", "Title": "ཁ་བྱང་།",
"Title (e.g. Tell me a fun fact)": "ཁ་བྱང་ (དཔེར་ན། དགོད་བྲོ་བའི་དོན་དངོས་ཤིག་ང་ལ་ཤོད།)",
"Title Auto-Generation": "ཁ་བྱང་རང་འགུལ་བཟོ་སྐྲུན།", "Title Auto-Generation": "ཁ་བྱང་རང་འགུལ་བཟོ་སྐྲུན།",
"Title cannot be an empty string.": "ཁ་བྱང་ཡིག་ཕྲེང་སྟོང་པ་ཡིན་མི་ཆོག", "Title cannot be an empty string.": "ཁ་བྱང་ཡིག་ཕྲེང་སྟོང་པ་ཡིན་མི་ཆོག",
"Title Generation": "ཁ་བྱང་བཟོ་སྐྲུན།", "Title Generation": "ཁ་བྱང་བཟོ་སྐྲུན།",
@ -1667,6 +1693,7 @@
"Update and Copy Link": "གསར་སྒྱུར་དང་སྦྲེལ་ཐག་འདྲ་བཤུས།", "Update and Copy Link": "གསར་སྒྱུར་དང་སྦྲེལ་ཐག་འདྲ་བཤུས།",
"Update for the latest features and improvements.": "ཁྱད་ཆོས་དང་ལེགས་བཅོས་གསར་ཤོས་ཀྱི་ཆེད་དུ་གསར་སྒྱུར་བྱེད་པ།", "Update for the latest features and improvements.": "ཁྱད་ཆོས་དང་ལེགས་བཅོས་གསར་ཤོས་ཀྱི་ཆེད་དུ་གསར་སྒྱུར་བྱེད་པ།",
"Update password": "གསང་གྲངས་གསར་སྒྱུར།", "Update password": "གསང་གྲངས་གསར་སྒྱུར།",
"Update your status": "",
"Updated": "གསར་སྒྱུར་བྱས།", "Updated": "གསར་སྒྱུར་བྱས།",
"Updated at": "གསར་སྒྱུར་བྱེད་དུས།", "Updated at": "གསར་སྒྱུར་བྱེད་དུས།",
"Updated At": "གསར་སྒྱུར་བྱེད་དུས།", "Updated At": "གསར་སྒྱུར་བྱེད་དུས།",
@ -1720,6 +1747,7 @@
"View Replies": "ལན་ལྟ་བ།", "View Replies": "ལན་ལྟ་བ།",
"View Result from **{{NAME}}**": "", "View Result from **{{NAME}}**": "",
"Visibility": "མཐོང་ཐུབ་རང་བཞིན།", "Visibility": "མཐོང་ཐུབ་རང་བཞིན།",
"Visible to all users": "",
"Vision": "", "Vision": "",
"Voice": "སྐད།", "Voice": "སྐད།",
"Voice Input": "སྐད་ཀྱི་ནང་འཇུག", "Voice Input": "སྐད་ཀྱི་ནང་འཇུག",
@ -1747,6 +1775,7 @@
"What are you trying to achieve?": "ཁྱེད་ཀྱིས་ཅི་ཞིག་འགྲུབ་ཐབས་བྱེད་བཞིན་ཡོད།", "What are you trying to achieve?": "ཁྱེད་ཀྱིས་ཅི་ཞིག་འགྲུབ་ཐབས་བྱེད་བཞིན་ཡོད།",
"What are you working on?": "ཁྱེད་ཀྱིས་ཅི་ཞིག་ལས་ཀ་བྱེད་བཞིན་ཡོད།", "What are you working on?": "ཁྱེད་ཀྱིས་ཅི་ཞིག་ལས་ཀ་བྱེད་བཞིན་ཡོད།",
"What's New in": "གསར་པ་ཅི་ཡོད།", "What's New in": "གསར་པ་ཅི་ཡོད།",
"What's on your mind?": "",
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "སྒུལ་བསྐྱོད་བྱས་ཚེ། དཔེ་དབྱིབས་ཀྱིས་ཁ་བརྡའི་འཕྲིན་རེ་རེར་དུས་ཐོག་ཏུ་ལན་འདེབས་བྱེད་ངེས། བེད་སྤྱོད་མཁན་གྱིས་འཕྲིན་བཏང་མ་ཐག་ལན་ཞིག་བཟོ་ངེས། མ་དཔེ་འདི་ཐད་གཏོང་ཁ་བརྡའི་བཀོལ་ཆས་ལ་ཕན་ཐོགས་ཡོད། འོན་ཀྱང་དེས་མཁྲེགས་ཆས་དལ་བའི་སྟེང་ལས་ཆོད་ལ་ཤུགས་རྐྱེན་ཐེབས་སྲིད།", "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "སྒུལ་བསྐྱོད་བྱས་ཚེ། དཔེ་དབྱིབས་ཀྱིས་ཁ་བརྡའི་འཕྲིན་རེ་རེར་དུས་ཐོག་ཏུ་ལན་འདེབས་བྱེད་ངེས། བེད་སྤྱོད་མཁན་གྱིས་འཕྲིན་བཏང་མ་ཐག་ལན་ཞིག་བཟོ་ངེས། མ་དཔེ་འདི་ཐད་གཏོང་ཁ་བརྡའི་བཀོལ་ཆས་ལ་ཕན་ཐོགས་ཡོད། འོན་ཀྱང་དེས་མཁྲེགས་ཆས་དལ་བའི་སྟེང་ལས་ཆོད་ལ་ཤུགས་རྐྱེན་ཐེབས་སྲིད།",
"wherever you are": "ཁྱེད་གང་དུ་ཡོད་ཀྱང་།", "wherever you are": "ཁྱེད་གང་དུ་ཡོད་ཀྱང་།",
"Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "",

View file

@ -18,11 +18,15 @@
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
"{{model}} download has been canceled": "", "{{model}} download has been canceled": "",
"{{NAMES}} reacted with {{REACTION}}": "",
"{{user}}'s Chats": "Razgovori korisnika {{user}}", "{{user}}'s Chats": "Razgovori korisnika {{user}}",
"{{webUIName}} Backend Required": "{{webUIName}} Backend je potreban", "{{webUIName}} Backend Required": "{{webUIName}} Backend je potreban",
"*Prompt node ID(s) are required for image generation": "", "*Prompt node ID(s) are required for image generation": "",
"1 Source": "", "1 Source": "",
"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.": "", "A new version (v{{LATEST_VERSION}}) is now available.": "",
"A private conversation between you and selected users": "",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Model zadatka koristi se pri izvođenju zadataka kao što su generiranje naslova za razgovore i upite za pretraživanje weba", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Model zadatka koristi se pri izvođenju zadataka kao što su generiranje naslova za razgovore i upite za pretraživanje weba",
"a user": "korisnik", "a user": "korisnik",
"About": "O aplikaciji", "About": "O aplikaciji",
@ -53,7 +57,8 @@
"Add Custom Prompt": "", "Add Custom Prompt": "",
"Add Details": "", "Add Details": "",
"Add Files": "Dodaj datoteke", "Add Files": "Dodaj datoteke",
"Add Group": "", "Add Member": "",
"Add Members": "",
"Add Memory": "Dodaj memoriju", "Add Memory": "Dodaj memoriju",
"Add Model": "Dodaj model", "Add Model": "Dodaj model",
"Add Reaction": "", "Add Reaction": "",
@ -252,6 +257,7 @@
"Citations": "", "Citations": "",
"Clear memory": "Očisti memoriju", "Clear memory": "Očisti memoriju",
"Clear Memory": "", "Clear Memory": "",
"Clear status": "",
"click here": "", "click here": "",
"Click here for filter guides.": "", "Click here for filter guides.": "",
"Click here for help.": "Kliknite ovdje za pomoć.", "Click here for help.": "Kliknite ovdje za pomoć.",
@ -288,6 +294,7 @@
"Code Interpreter": "", "Code Interpreter": "",
"Code Interpreter Engine": "", "Code Interpreter Engine": "",
"Code Interpreter Prompt Template": "", "Code Interpreter Prompt Template": "",
"Collaboration channel where people join as members": "",
"Collapse": "", "Collapse": "",
"Collection": "Kolekcija", "Collection": "Kolekcija",
"Color": "Boja", "Color": "Boja",
@ -447,6 +454,7 @@
"Discover, download, and explore custom prompts": "Otkrijte, preuzmite i istražite prilagođene prompte", "Discover, download, and explore custom prompts": "Otkrijte, preuzmite i istražite prilagođene prompte",
"Discover, download, and explore custom tools": "", "Discover, download, and explore custom tools": "",
"Discover, download, and explore model presets": "Otkrijte, preuzmite i istražite unaprijed postavljene modele", "Discover, download, and explore model presets": "Otkrijte, preuzmite i istražite unaprijed postavljene modele",
"Discussion channel where access is based on groups and permissions": "",
"Display": "", "Display": "",
"Display chat title in tab": "", "Display chat title in tab": "",
"Display Emoji in Call": "", "Display Emoji in Call": "",
@ -463,6 +471,7 @@
"Document": "Dokument", "Document": "Dokument",
"Document Intelligence": "", "Document Intelligence": "",
"Document Intelligence endpoint required.": "", "Document Intelligence endpoint required.": "",
"Document Intelligence Model": "",
"Documentation": "Dokumentacija", "Documentation": "Dokumentacija",
"Documents": "Dokumenti", "Documents": "Dokumenti",
"does not make any external connections, and your data stays securely on your locally hosted server.": "ne uspostavlja vanjske veze, a vaši podaci ostaju sigurno na vašem lokalno hostiranom poslužitelju.", "does not make any external connections, and your data stays securely on your locally hosted server.": "ne uspostavlja vanjske veze, a vaši podaci ostaju sigurno na vašem lokalno hostiranom poslužitelju.",
@ -485,12 +494,15 @@
"e.g. \"json\" or a JSON schema": "", "e.g. \"json\" or a JSON schema": "",
"e.g. 60": "", "e.g. 60": "",
"e.g. A filter to remove profanity from text": "", "e.g. A filter to remove profanity from text": "",
"e.g. about the Roman Empire": "",
"e.g. en": "", "e.g. en": "",
"e.g. My Filter": "", "e.g. My Filter": "",
"e.g. My Tools": "", "e.g. My Tools": "",
"e.g. my_filter": "", "e.g. my_filter": "",
"e.g. my_tools": "", "e.g. my_tools": "",
"e.g. pdf, docx, txt": "", "e.g. pdf, docx, txt": "",
"e.g. Tell me a fun fact": "",
"e.g. Tell me a fun fact about the Roman Empire": "",
"e.g. Tools for performing various operations": "", "e.g. Tools for performing various operations": "",
"e.g., 3, 4, 5 (leave blank for default)": "", "e.g., 3, 4, 5 (leave blank for default)": "",
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "", "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
@ -564,6 +576,7 @@
"Enter Docling Server URL": "", "Enter Docling Server URL": "",
"Enter Document Intelligence Endpoint": "", "Enter Document Intelligence Endpoint": "",
"Enter Document Intelligence Key": "", "Enter Document Intelligence Key": "",
"Enter Document Intelligence Model": "",
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "", "Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
"Enter Exa API Key": "", "Enter Exa API Key": "",
"Enter External Document Loader API Key": "", "Enter External Document Loader API Key": "",
@ -689,7 +702,6 @@
"Export Config to JSON File": "", "Export Config to JSON File": "",
"Export Models": "", "Export Models": "",
"Export Presets": "", "Export Presets": "",
"Export Prompt Suggestions": "",
"Export Prompts": "", "Export Prompts": "",
"Export to CSV": "", "Export to CSV": "",
"Export Tools": "", "Export Tools": "",
@ -704,6 +716,8 @@
"External Web Search URL": "", "External Web Search URL": "",
"Fade Effect for Streaming Text": "", "Fade Effect for Streaming Text": "",
"Failed to add file.": "", "Failed to add file.": "",
"Failed to add members": "",
"Failed to clear status": "",
"Failed to connect to {{URL}} OpenAPI tool server": "", "Failed to connect to {{URL}} OpenAPI tool server": "",
"Failed to copy link": "", "Failed to copy link": "",
"Failed to create API Key.": "Neuspješno stvaranje API ključa.", "Failed to create API Key.": "Neuspješno stvaranje API ključa.",
@ -717,12 +731,14 @@
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to read clipboard contents": "Neuspješno čitanje sadržaja međuspremnika", "Failed to read clipboard contents": "Neuspješno čitanje sadržaja međuspremnika",
"Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
"Failed to render visualization": "", "Failed to render visualization": "",
"Failed to save connections": "", "Failed to save connections": "",
"Failed to save conversation": "Neuspješno spremanje razgovora", "Failed to save conversation": "Neuspješno spremanje razgovora",
"Failed to save models configuration": "", "Failed to save models configuration": "",
"Failed to update settings": "Greška kod ažuriranja postavki", "Failed to update settings": "Greška kod ažuriranja postavki",
"Failed to update status": "",
"Failed to upload file.": "", "Failed to upload file.": "",
"Features": "", "Features": "",
"Features Permissions": "", "Features Permissions": "",
@ -816,11 +832,13 @@
"Google PSE Engine Id": "ID Google PSE modula", "Google PSE Engine Id": "ID Google PSE modula",
"Gravatar": "", "Gravatar": "",
"Group": "Grupa", "Group": "Grupa",
"Group Channel": "",
"Group created successfully": "", "Group created successfully": "",
"Group deleted successfully": "", "Group deleted successfully": "",
"Group Description": "", "Group Description": "",
"Group Name": "", "Group Name": "",
"Group updated successfully": "", "Group updated successfully": "",
"groups": "",
"Groups": "", "Groups": "",
"H1": "", "H1": "",
"H2": "", "H2": "",
@ -875,7 +893,6 @@
"Import Models": "", "Import Models": "",
"Import Notes": "", "Import Notes": "",
"Import Presets": "", "Import Presets": "",
"Import Prompt Suggestions": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
"Import Tools": "", "Import Tools": "",
@ -1011,6 +1028,9 @@
"MCP": "", "MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Medium": "", "Medium": "",
"Member removed successfully": "",
"Members": "",
"Members added successfully": "",
"Memories accessible by LLMs will be shown here.": "Ovdje će biti prikazana memorija kojoj mogu pristupiti LLM-ovi.", "Memories accessible by LLMs will be shown here.": "Ovdje će biti prikazana memorija kojoj mogu pristupiti LLM-ovi.",
"Memory": "Memorija", "Memory": "Memorija",
"Memory added successfully": "", "Memory added successfully": "",
@ -1110,6 +1130,7 @@
"No models selected": "", "No models selected": "",
"No Notes": "", "No Notes": "",
"No notes found": "", "No notes found": "",
"No pinned messages": "",
"No prompts found": "", "No prompts found": "",
"No results": "Nema rezultata", "No results": "Nema rezultata",
"No results found": "Nema rezultata", "No results found": "Nema rezultata",
@ -1157,6 +1178,7 @@
"Only alphanumeric characters and hyphens are allowed in the command string.": "Samo alfanumerički znakovi i crtice su dopušteni u naredbenom nizu.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Samo alfanumerički znakovi i crtice su dopušteni u naredbenom nizu.",
"Only can be triggered when the chat input is in focus.": "", "Only can be triggered when the chat input is in focus.": "",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "", "Only collections can be edited, create a new knowledge base to edit/add documents.": "",
"Only invited users can access": "",
"Only markdown files are allowed": "", "Only markdown files are allowed": "",
"Only select users and groups with permission can access": "", "Only select users and groups with permission can access": "",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "Ups! Izgleda da je URL nevažeći. Molimo provjerite ponovno i pokušajte ponovo.", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Ups! Izgleda da je URL nevažeći. Molimo provjerite ponovno i pokušajte ponovo.",
@ -1219,6 +1241,7 @@
"Personalization": "Prilagodba", "Personalization": "Prilagodba",
"Pin": "", "Pin": "",
"Pinned": "", "Pinned": "",
"Pinned Messages": "",
"Pioneer insights": "", "Pioneer insights": "",
"Pipe": "", "Pipe": "",
"Pipeline deleted successfully": "", "Pipeline deleted successfully": "",
@ -1261,9 +1284,9 @@
"Previous 7 days": "Prethodnih 7 dana", "Previous 7 days": "Prethodnih 7 dana",
"Previous message": "", "Previous message": "",
"Private": "", "Private": "",
"Private conversation between selected users": "",
"Profile": "Profil", "Profile": "Profil",
"Prompt": "", "Prompt": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (npr. Reci mi zanimljivost o Rimskom carstvu)",
"Prompt Autocompletion": "", "Prompt Autocompletion": "",
"Prompt Content": "Sadržaj prompta", "Prompt Content": "Sadržaj prompta",
"Prompt created successfully": "", "Prompt created successfully": "",
@ -1450,6 +1473,7 @@
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "", "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
"Set Voice": "Postavi glas", "Set Voice": "Postavi glas",
"Set whisper model": "", "Set whisper model": "",
"Set your status": "",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "", "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "", "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets how far back for the model to look back to prevent repetition.": "", "Sets how far back for the model to look back to prevent repetition.": "",
@ -1502,6 +1526,9 @@
"Start a new conversation": "", "Start a new conversation": "",
"Start of the channel": "Početak kanala", "Start of the channel": "Početak kanala",
"Start Tag": "", "Start Tag": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Steps": "", "Steps": "",
@ -1517,7 +1544,7 @@
"STT Model": "STT model", "STT Model": "STT model",
"STT Settings": "STT postavke", "STT Settings": "STT postavke",
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Podnaslov (npr. o Rimskom carstvu)", "Subtitle": "",
"Success": "Uspjeh", "Success": "Uspjeh",
"Successfully imported {{userCount}} users.": "", "Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Uspješno ažurirano.", "Successfully updated.": "Uspješno ažurirano.",
@ -1600,7 +1627,6 @@
"Tika Server URL required.": "", "Tika Server URL required.": "",
"Tiktoken": "", "Tiktoken": "",
"Title": "Naslov", "Title": "Naslov",
"Title (e.g. Tell me a fun fact)": "Naslov (npr. Reci mi zanimljivost)",
"Title Auto-Generation": "Automatsko generiranje naslova", "Title Auto-Generation": "Automatsko generiranje naslova",
"Title cannot be an empty string.": "Naslov ne može biti prazni niz.", "Title cannot be an empty string.": "Naslov ne može biti prazni niz.",
"Title Generation": "", "Title Generation": "",
@ -1669,6 +1695,7 @@
"Update and Copy Link": "Ažuriraj i kopiraj vezu", "Update and Copy Link": "Ažuriraj i kopiraj vezu",
"Update for the latest features and improvements.": "", "Update for the latest features and improvements.": "",
"Update password": "Ažuriraj lozinku", "Update password": "Ažuriraj lozinku",
"Update your status": "",
"Updated": "", "Updated": "",
"Updated at": "", "Updated at": "",
"Updated At": "", "Updated At": "",
@ -1722,6 +1749,7 @@
"View Replies": "", "View Replies": "",
"View Result from **{{NAME}}**": "", "View Result from **{{NAME}}**": "",
"Visibility": "", "Visibility": "",
"Visible to all users": "",
"Vision": "", "Vision": "",
"Voice": "", "Voice": "",
"Voice Input": "", "Voice Input": "",
@ -1749,6 +1777,7 @@
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"What's New in": "Što je novo u", "What's New in": "Što je novo u",
"What's on your mind?": "",
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "", "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
"wherever you are": "", "wherever you are": "",
"Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "",

View file

@ -18,11 +18,15 @@
"{{COUNT}} words": "{{COUNT}} paraules", "{{COUNT}} words": "{{COUNT}} paraules",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} a les {{LOCALIZED_TIME}}", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} a les {{LOCALIZED_TIME}}",
"{{model}} download has been canceled": "La descàrrega del model {{model}} s'ha cancel·lat", "{{model}} download has been canceled": "La descàrrega del model {{model}} s'ha cancel·lat",
"{{NAMES}} reacted with {{REACTION}}": "",
"{{user}}'s Chats": "Els xats de {{user}}", "{{user}}'s Chats": "Els xats de {{user}}",
"{{webUIName}} Backend Required": "El Backend de {{webUIName}} és necessari", "{{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", "*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 Source": "1 font", "1 Source": "1 font",
"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.": "Hi ha una nova versió disponible (v{{LATEST_VERSION}}).", "A new version (v{{LATEST_VERSION}}) is now available.": "Hi ha una nova versió disponible (v{{LATEST_VERSION}}).",
"A private conversation between you and selected users": "",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Un model de tasca s'utilitza quan es realitzen tasques com ara generar títols per a xats i consultes de cerca per a la web", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Un model de tasca s'utilitza quan es realitzen tasques com ara generar títols per a xats i consultes de cerca per a la web",
"a user": "un usuari", "a user": "un usuari",
"About": "Sobre", "About": "Sobre",
@ -53,7 +57,8 @@
"Add Custom Prompt": "Afegir indicació personalitzada", "Add Custom Prompt": "Afegir indicació personalitzada",
"Add Details": "Afegir detalls", "Add Details": "Afegir detalls",
"Add Files": "Afegir arxius", "Add Files": "Afegir arxius",
"Add Group": "Afegir grup", "Add Member": "",
"Add Members": "",
"Add Memory": "Afegir memòria", "Add Memory": "Afegir memòria",
"Add Model": "Afegir un model", "Add Model": "Afegir un model",
"Add Reaction": "Afegir reacció", "Add Reaction": "Afegir reacció",
@ -252,6 +257,7 @@
"Citations": "Cites", "Citations": "Cites",
"Clear memory": "Esborrar la memòria", "Clear memory": "Esborrar la memòria",
"Clear Memory": "Esborrar la memòria", "Clear Memory": "Esborrar la memòria",
"Clear status": "",
"click here": "prem aquí", "click here": "prem aquí",
"Click here for filter guides.": "Clica aquí per l'ajuda dels filtres.", "Click here for filter guides.": "Clica aquí per l'ajuda dels filtres.",
"Click here for help.": "Clica aquí per obtenir ajuda.", "Click here for help.": "Clica aquí per obtenir ajuda.",
@ -288,6 +294,7 @@
"Code Interpreter": "Intèrpret de codi", "Code Interpreter": "Intèrpret de codi",
"Code Interpreter Engine": "Motor de l'intèrpret de codi", "Code Interpreter Engine": "Motor de l'intèrpret de codi",
"Code Interpreter Prompt Template": "Plantilla de la indicació de l'intèrpret de codi", "Code Interpreter Prompt Template": "Plantilla de la indicació de l'intèrpret de codi",
"Collaboration channel where people join as members": "",
"Collapse": "Col·lapsar", "Collapse": "Col·lapsar",
"Collection": "Col·lecció", "Collection": "Col·lecció",
"Color": "Color", "Color": "Color",
@ -447,6 +454,7 @@
"Discover, download, and explore custom prompts": "Descobrir, descarregar i explorar indicacions personalitzades", "Discover, download, and explore custom prompts": "Descobrir, descarregar i explorar indicacions personalitzades",
"Discover, download, and explore custom tools": "Descobrir, descarregar i explorar eines personalitzades", "Discover, download, and explore custom tools": "Descobrir, descarregar i explorar eines personalitzades",
"Discover, download, and explore model presets": "Descobrir, descarregar i explorar models preconfigurats", "Discover, download, and explore model presets": "Descobrir, descarregar i explorar models preconfigurats",
"Discussion channel where access is based on groups and permissions": "",
"Display": "Mostrar", "Display": "Mostrar",
"Display chat title in tab": "Mostrar el títol del xat a la pestanya", "Display chat title in tab": "Mostrar el títol del xat a la pestanya",
"Display Emoji in Call": "Mostrar emojis a la trucada", "Display Emoji in Call": "Mostrar emojis a la trucada",
@ -463,6 +471,7 @@
"Document": "Document", "Document": "Document",
"Document Intelligence": "Document Intelligence", "Document Intelligence": "Document Intelligence",
"Document Intelligence endpoint required.": "Es necessita un punt de connexió de Document Intelligence", "Document Intelligence endpoint required.": "Es necessita un punt de connexió de Document Intelligence",
"Document Intelligence Model": "",
"Documentation": "Documentació", "Documentation": "Documentació",
"Documents": "Documents", "Documents": "Documents",
"does not make any external connections, and your data stays securely on your locally hosted server.": "no realitza connexions externes, i les teves dades romanen segures al teu servidor allotjat localment.", "does not make any external connections, and your data stays securely on your locally hosted server.": "no realitza connexions externes, i les teves dades romanen segures al teu servidor allotjat localment.",
@ -485,12 +494,15 @@
"e.g. \"json\" or a JSON schema": "p. ex. \"json\" o un esquema JSON", "e.g. \"json\" or a JSON schema": "p. ex. \"json\" o un esquema JSON",
"e.g. 60": "p. ex. 60", "e.g. 60": "p. ex. 60",
"e.g. A filter to remove profanity from text": "p. ex. Un filtre per eliminar paraules malsonants del text", "e.g. A filter to remove profanity from text": "p. ex. Un filtre per eliminar paraules malsonants del text",
"e.g. about the Roman Empire": "",
"e.g. en": "p. ex. en", "e.g. en": "p. ex. en",
"e.g. My Filter": "p. ex. El meu filtre", "e.g. My Filter": "p. ex. El meu filtre",
"e.g. My Tools": "p. ex. Les meves eines", "e.g. My Tools": "p. ex. Les meves eines",
"e.g. my_filter": "p. ex. els_meus_filtres", "e.g. my_filter": "p. ex. els_meus_filtres",
"e.g. my_tools": "p. ex. les_meves_eines", "e.g. my_tools": "p. ex. les_meves_eines",
"e.g. pdf, docx, txt": "p. ex. pdf, docx, txt", "e.g. pdf, docx, txt": "p. ex. pdf, docx, txt",
"e.g. Tell me a fun fact": "",
"e.g. Tell me a fun fact about the Roman Empire": "",
"e.g. Tools for performing various operations": "p. ex. Eines per dur a terme operacions", "e.g. Tools for performing various operations": "p. ex. Eines per dur a terme operacions",
"e.g., 3, 4, 5 (leave blank for default)": "p. ex. 3, 4, 5 (deixa-ho en blanc per utilitzar el per defecte)", "e.g., 3, 4, 5 (leave blank for default)": "p. ex. 3, 4, 5 (deixa-ho en blanc per utilitzar el per defecte)",
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "p. ex. audio/wav,audio/mpeg,video/* (deixa-ho en blanc per utilitzar el per defecte)", "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "p. ex. audio/wav,audio/mpeg,video/* (deixa-ho en blanc per utilitzar el per defecte)",
@ -564,6 +576,7 @@
"Enter Docling Server URL": "Introdueix la URL del servidor Docling", "Enter Docling Server URL": "Introdueix la URL del servidor Docling",
"Enter Document Intelligence Endpoint": "Introdueix el punt de connexió de Document Intelligence", "Enter Document Intelligence Endpoint": "Introdueix el punt de connexió de Document Intelligence",
"Enter Document Intelligence Key": "Introdueix la clau de Document Intelligence", "Enter Document Intelligence Key": "Introdueix la clau de Document Intelligence",
"Enter Document Intelligence Model": "",
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "Introdueix dominis separats per comes (per exemple, example.com, lloc.org, !excludedsite.com)", "Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "Introdueix dominis separats per comes (per exemple, example.com, lloc.org, !excludedsite.com)",
"Enter Exa API Key": "Introdueix la clau API de d'EXA", "Enter Exa API Key": "Introdueix la clau API de d'EXA",
"Enter External Document Loader API Key": "Introdueix la clau API de Document Loader", "Enter External Document Loader API Key": "Introdueix la clau API de Document Loader",
@ -689,7 +702,6 @@
"Export Config to JSON File": "Exportar la configuració a un arxiu JSON", "Export Config to JSON File": "Exportar la configuració a un arxiu JSON",
"Export Models": "Exportar els models", "Export Models": "Exportar els models",
"Export Presets": "Exportar les configuracions", "Export Presets": "Exportar les configuracions",
"Export Prompt Suggestions": "Exportar els suggeriments d'indicació",
"Export Prompts": "Exportar les indicacions", "Export Prompts": "Exportar les indicacions",
"Export to CSV": "Exportar a CSV", "Export to CSV": "Exportar a CSV",
"Export Tools": "Exportar les eines", "Export Tools": "Exportar les eines",
@ -704,6 +716,8 @@
"External Web Search URL": "URL d'External Web Search", "External Web Search URL": "URL d'External Web Search",
"Fade Effect for Streaming Text": "Efecte de fos a negre per al text en streaming", "Fade Effect for Streaming Text": "Efecte de fos a negre per al text en streaming",
"Failed to add file.": "No s'ha pogut afegir l'arxiu.", "Failed to add file.": "No s'ha pogut afegir l'arxiu.",
"Failed to add members": "",
"Failed to clear status": "",
"Failed to connect to {{URL}} OpenAPI tool server": "No s'ha pogut connecta al servidor d'eines OpenAPI {{URL}}", "Failed to connect to {{URL}} OpenAPI tool server": "No s'ha pogut connecta al servidor d'eines OpenAPI {{URL}}",
"Failed to copy link": "No s'ha pogut copiar l'enllaç", "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 create API Key.": "No s'ha pogut crear la clau API.",
@ -717,12 +731,14 @@
"Failed to load file content.": "No s'ha pogut carregar el contingut del fitxer", "Failed to load file content.": "No s'ha pogut carregar el contingut del fitxer",
"Failed to move chat": "No s'ha pogut moure el xat", "Failed to move chat": "No s'ha pogut moure el xat",
"Failed to read clipboard contents": "No s'ha pogut llegir el contingut del porta-retalls", "Failed to read clipboard contents": "No s'ha pogut llegir el contingut del porta-retalls",
"Failed to remove member": "",
"Failed to render diagram": "No s'ha pogut renderitzar el diagrama", "Failed to render diagram": "No s'ha pogut renderitzar el diagrama",
"Failed to render visualization": "No s'ha pogut renderitzar la visualització", "Failed to render visualization": "No s'ha pogut renderitzar la visualització",
"Failed to save connections": "No s'han pogut desar les connexions", "Failed to save connections": "No s'han pogut desar les connexions",
"Failed to save conversation": "No s'ha pogut desar la conversa", "Failed to save conversation": "No s'ha pogut desar la conversa",
"Failed to save models configuration": "No s'ha pogut desar la configuració dels models", "Failed to save models configuration": "No s'ha pogut desar la configuració dels models",
"Failed to update settings": "No s'han pogut actualitzar les preferències", "Failed to update settings": "No s'han pogut actualitzar les preferències",
"Failed to update status": "",
"Failed to upload file.": "No s'ha pogut pujar l'arxiu.", "Failed to upload file.": "No s'ha pogut pujar l'arxiu.",
"Features": "Característiques", "Features": "Característiques",
"Features Permissions": "Permisos de les característiques", "Features Permissions": "Permisos de les característiques",
@ -816,11 +832,13 @@
"Google PSE Engine Id": "Identificador del motor PSE de Google", "Google PSE Engine Id": "Identificador del motor PSE de Google",
"Gravatar": "Gravatar", "Gravatar": "Gravatar",
"Group": "Grup", "Group": "Grup",
"Group Channel": "",
"Group created successfully": "El grup s'ha creat correctament", "Group created successfully": "El grup s'ha creat correctament",
"Group deleted successfully": "El grup s'ha eliminat correctament", "Group deleted successfully": "El grup s'ha eliminat correctament",
"Group Description": "Descripció del grup", "Group Description": "Descripció del grup",
"Group Name": "Nom del grup", "Group Name": "Nom del grup",
"Group updated successfully": "Grup actualitzat correctament", "Group updated successfully": "Grup actualitzat correctament",
"groups": "",
"Groups": "Grups", "Groups": "Grups",
"H1": "H1", "H1": "H1",
"H2": "H2", "H2": "H2",
@ -875,7 +893,6 @@
"Import Models": "Importar models", "Import Models": "Importar models",
"Import Notes": "Importar nota", "Import Notes": "Importar nota",
"Import Presets": "Importar configuracions", "Import Presets": "Importar configuracions",
"Import Prompt Suggestions": "Importar suggeriments d'indicacions",
"Import Prompts": "Importar indicacions", "Import Prompts": "Importar indicacions",
"Import successful": "Importació correcta", "Import successful": "Importació correcta",
"Import Tools": "Importar eines", "Import Tools": "Importar eines",
@ -1011,6 +1028,9 @@
"MCP": "MCP", "MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "El suport per a MCP és experimental i la seva especificació canvia sovint, cosa que pot provocar incompatibilitats. El suport per a l'especificació d'OpenAPI el manté directament l'equip d'Open WebUI, cosa que el converteix en l'opció més fiable per a la compatibilitat.", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "El suport per a MCP és experimental i la seva especificació canvia sovint, cosa que pot provocar incompatibilitats. El suport per a l'especificació d'OpenAPI el manté directament l'equip d'Open WebUI, cosa que el converteix en l'opció més fiable per a la compatibilitat.",
"Medium": "Mig", "Medium": "Mig",
"Member removed successfully": "",
"Members": "",
"Members added successfully": "",
"Memories accessible by LLMs will be shown here.": "Les memòries accessibles pels models de llenguatge es mostraran aquí.", "Memories accessible by LLMs will be shown here.": "Les memòries accessibles pels models de llenguatge es mostraran aquí.",
"Memory": "Memòria", "Memory": "Memòria",
"Memory added successfully": "Memòria afegida correctament", "Memory added successfully": "Memòria afegida correctament",
@ -1110,6 +1130,7 @@
"No models selected": "No s'ha seleccionat cap model", "No models selected": "No s'ha seleccionat cap model",
"No Notes": "No hi ha notes", "No Notes": "No hi ha notes",
"No notes found": "No s'han trobat notes", "No notes found": "No s'han trobat notes",
"No pinned messages": "",
"No prompts found": "No s'han trobat indicacions", "No prompts found": "No s'han trobat indicacions",
"No results": "No s'han trobat resultats", "No results": "No s'han trobat resultats",
"No results found": "No s'han trobat resultats", "No results found": "No s'han trobat resultats",
@ -1157,6 +1178,7 @@
"Only alphanumeric characters and hyphens are allowed in the command string.": "Només es permeten caràcters alfanumèrics i guions en la comanda.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Només es permeten caràcters alfanumèrics i guions en la comanda.",
"Only can be triggered when the chat input is in focus.": "Només es pot activar quan l'entrada del xat està en focus.", "Only can be triggered when the chat input is in focus.": "Només es pot activar quan l'entrada del xat està en focus.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Només es poden editar col·leccions, crea una nova base de coneixement per editar/afegir documents.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Només es poden editar col·leccions, crea una nova base de coneixement per editar/afegir documents.",
"Only invited users can access": "",
"Only markdown files are allowed": "Només es permeten arxius markdown", "Only markdown files are allowed": "Només es permeten arxius markdown",
"Only select users and groups with permission can access": "Només hi poden accedir usuaris i grups seleccionats amb permís", "Only select users and groups with permission can access": "Només hi poden accedir usuaris i grups seleccionats amb permís",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "Ui! Sembla que la URL no és vàlida. Si us plau, revisa-la i torna-ho a provar.", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Ui! Sembla que la URL no és vàlida. Si us plau, revisa-la i torna-ho a provar.",
@ -1219,6 +1241,7 @@
"Personalization": "Personalització", "Personalization": "Personalització",
"Pin": "Fixar", "Pin": "Fixar",
"Pinned": "Fixat", "Pinned": "Fixat",
"Pinned Messages": "",
"Pioneer insights": "Perspectives pioneres", "Pioneer insights": "Perspectives pioneres",
"Pipe": "Canonada", "Pipe": "Canonada",
"Pipeline deleted successfully": "Pipeline eliminada correctament", "Pipeline deleted successfully": "Pipeline eliminada correctament",
@ -1261,9 +1284,9 @@
"Previous 7 days": "7 dies anteriors", "Previous 7 days": "7 dies anteriors",
"Previous message": "Missatge anterior", "Previous message": "Missatge anterior",
"Private": "Privat", "Private": "Privat",
"Private conversation between selected users": "",
"Profile": "Perfil", "Profile": "Perfil",
"Prompt": "Indicació", "Prompt": "Indicació",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Indicació (p. ex. Digues-me quelcom divertit sobre l'Imperi Romà)",
"Prompt Autocompletion": "Completar automàticament la indicació", "Prompt Autocompletion": "Completar automàticament la indicació",
"Prompt Content": "Contingut de la indicació", "Prompt Content": "Contingut de la indicació",
"Prompt created successfully": "Indicació creada correctament", "Prompt created successfully": "Indicació creada correctament",
@ -1450,6 +1473,7 @@
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Establir el nombre de fils de treball utilitzats per al càlcul. Aquesta opció controla quants fils s'utilitzen per processar les sol·licituds entrants simultàniament. Augmentar aquest valor pot millorar el rendiment amb càrregues de treball de concurrència elevada, però també pot consumir més recursos de CPU.", "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Establir el nombre de fils de treball utilitzats per al càlcul. Aquesta opció controla quants fils s'utilitzen per processar les sol·licituds entrants simultàniament. Augmentar aquest valor pot millorar el rendiment amb càrregues de treball de concurrència elevada, però també pot consumir més recursos de CPU.",
"Set Voice": "Establir la veu", "Set Voice": "Establir la veu",
"Set whisper model": "Establir el model whisper", "Set whisper model": "Establir el model whisper",
"Set your status": "",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Estableix un biaix pla contra tokens que han aparegut almenys una vegada. Un valor més alt (p. ex., 1,5) penalitzarà les repeticions amb més força, mentre que un valor més baix (p. ex., 0,9) serà més indulgent. A 0, està desactivat.", "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Estableix un biaix pla contra tokens que han aparegut almenys una vegada. Un valor més alt (p. ex., 1,5) penalitzarà les repeticions amb més força, mentre que un valor més baix (p. ex., 0,9) serà més indulgent. A 0, està desactivat.",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Estableix un biaix d'escala contra tokens per penalitzar les repeticions, en funció de quantes vegades han aparegut. Un valor més alt (p. ex., 1,5) penalitzarà les repeticions amb més força, mentre que un valor més baix (p. ex., 0,9) serà més indulgent. A 0, està desactivat.", "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Estableix un biaix d'escala contra tokens per penalitzar les repeticions, en funció de quantes vegades han aparegut. Un valor més alt (p. ex., 1,5) penalitzarà les repeticions amb més força, mentre que un valor més baix (p. ex., 0,9) serà més indulgent. A 0, està desactivat.",
"Sets how far back for the model to look back to prevent repetition.": "Estableix fins a quin punt el model mira enrere per evitar la repetició.", "Sets how far back for the model to look back to prevent repetition.": "Estableix fins a quin punt el model mira enrere per evitar la repetició.",
@ -1502,6 +1526,9 @@
"Start a new conversation": "Iniciar una nova conversa", "Start a new conversation": "Iniciar una nova conversa",
"Start of the channel": "Inici del canal", "Start of the channel": "Inici del canal",
"Start Tag": "Etiqueta d'inici", "Start Tag": "Etiqueta d'inici",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
"Status Updates": "Estat de les actualitzacions", "Status Updates": "Estat de les actualitzacions",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Steps": "Passos", "Steps": "Passos",
@ -1517,7 +1544,7 @@
"STT Model": "Model SST", "STT Model": "Model SST",
"STT Settings": "Preferències de STT", "STT Settings": "Preferències de STT",
"Stylized PDF Export": "Exportació en PDF estilitzat", "Stylized PDF Export": "Exportació en PDF estilitzat",
"Subtitle (e.g. about the Roman Empire)": "Subtítol (per exemple, sobre l'Imperi Romà)", "Subtitle": "",
"Success": "Èxit", "Success": "Èxit",
"Successfully imported {{userCount}} users.": "S'han importat correctament {{userCount}} usuaris.", "Successfully imported {{userCount}} users.": "S'han importat correctament {{userCount}} usuaris.",
"Successfully updated.": "Actualitzat correctament.", "Successfully updated.": "Actualitzat correctament.",
@ -1600,7 +1627,6 @@
"Tika Server URL required.": "La URL del servidor Tika és obligatòria.", "Tika Server URL required.": "La URL del servidor Tika és obligatòria.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Title": "Títol", "Title": "Títol",
"Title (e.g. Tell me a fun fact)": "Títol (p. ex. Digues-me quelcom divertit)",
"Title Auto-Generation": "Generació automàtica de títol", "Title Auto-Generation": "Generació automàtica de títol",
"Title cannot be an empty string.": "El títol no pot ser una cadena buida.", "Title cannot be an empty string.": "El títol no pot ser una cadena buida.",
"Title Generation": "Generació de títols", "Title Generation": "Generació de títols",
@ -1669,6 +1695,7 @@
"Update and Copy Link": "Actualitzar i copiar l'enllaç", "Update and Copy Link": "Actualitzar i copiar l'enllaç",
"Update for the latest features and improvements.": "Actualitza per a les darreres característiques i millores.", "Update for the latest features and improvements.": "Actualitza per a les darreres característiques i millores.",
"Update password": "Actualitzar la contrasenya", "Update password": "Actualitzar la contrasenya",
"Update your status": "",
"Updated": "Actualitzat", "Updated": "Actualitzat",
"Updated at": "Actualitzat el", "Updated at": "Actualitzat el",
"Updated At": "Actualitzat el", "Updated At": "Actualitzat el",
@ -1722,6 +1749,7 @@
"View Replies": "Veure les respostes", "View Replies": "Veure les respostes",
"View Result from **{{NAME}}**": "Veure el resultat de **{{NAME}}**", "View Result from **{{NAME}}**": "Veure el resultat de **{{NAME}}**",
"Visibility": "Visibilitat", "Visibility": "Visibilitat",
"Visible to all users": "",
"Vision": "Visió", "Vision": "Visió",
"Voice": "Veu", "Voice": "Veu",
"Voice Input": "Entrada de veu", "Voice Input": "Entrada de veu",
@ -1749,6 +1777,7 @@
"What are you trying to achieve?": "Què intentes aconseguir?", "What are you trying to achieve?": "Què intentes aconseguir?",
"What are you working on?": "En què estàs treballant?", "What are you working on?": "En què estàs treballant?",
"What's New in": "Què hi ha de nou a", "What's New in": "Què hi ha de nou a",
"What's on your mind?": "",
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Quan està activat, el model respondrà a cada missatge de xat en temps real, generant una resposta tan bon punt l'usuari envia un missatge. Aquest mode és útil per a aplicacions de xat en directe, però pot afectar el rendiment en maquinari més lent.", "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Quan està activat, el model respondrà a cada missatge de xat en temps real, generant una resposta tan bon punt l'usuari envia un missatge. Aquest mode és útil per a aplicacions de xat en directe, però pot afectar el rendiment en maquinari més lent.",
"wherever you are": "allà on estiguis", "wherever you are": "allà on estiguis",
"Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Si es pagina la sortida. Cada pàgina estarà separada per una regla horitzontal i un número de pàgina. Per defecte és Fals.", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Si es pagina la sortida. Cada pàgina estarà separada per una regla horitzontal i un número de pàgina. Per defecte és Fals.",

View file

@ -18,11 +18,15 @@
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
"{{model}} download has been canceled": "", "{{model}} download has been canceled": "",
"{{NAMES}} reacted with {{REACTION}}": "",
"{{user}}'s Chats": "", "{{user}}'s Chats": "",
"{{webUIName}} Backend Required": "Backend {{webUIName}} gikinahanglan", "{{webUIName}} Backend Required": "Backend {{webUIName}} gikinahanglan",
"*Prompt node ID(s) are required for image generation": "", "*Prompt node ID(s) are required for image generation": "",
"1 Source": "", "1 Source": "",
"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.": "", "A new version (v{{LATEST_VERSION}}) is now available.": "",
"A private conversation between you and selected users": "",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "", "A task model is used when performing tasks such as generating titles for chats and web search queries": "",
"a user": "usa ka user", "a user": "usa ka user",
"About": "Mahitungod sa", "About": "Mahitungod sa",
@ -53,7 +57,8 @@
"Add Custom Prompt": "", "Add Custom Prompt": "",
"Add Details": "", "Add Details": "",
"Add Files": "Idugang ang mga file", "Add Files": "Idugang ang mga file",
"Add Group": "", "Add Member": "",
"Add Members": "",
"Add Memory": "", "Add Memory": "",
"Add Model": "", "Add Model": "",
"Add Reaction": "", "Add Reaction": "",
@ -252,6 +257,7 @@
"Citations": "", "Citations": "",
"Clear memory": "", "Clear memory": "",
"Clear Memory": "", "Clear Memory": "",
"Clear status": "",
"click here": "", "click here": "",
"Click here for filter guides.": "", "Click here for filter guides.": "",
"Click here for help.": "I-klik dinhi alang sa tabang.", "Click here for help.": "I-klik dinhi alang sa tabang.",
@ -288,6 +294,7 @@
"Code Interpreter": "", "Code Interpreter": "",
"Code Interpreter Engine": "", "Code Interpreter Engine": "",
"Code Interpreter Prompt Template": "", "Code Interpreter Prompt Template": "",
"Collaboration channel where people join as members": "",
"Collapse": "", "Collapse": "",
"Collection": "Koleksyon", "Collection": "Koleksyon",
"Color": "", "Color": "",
@ -447,6 +454,7 @@
"Discover, download, and explore custom prompts": "Pagdiskubre, pag-download ug pagsuhid sa mga naandan nga pag-aghat", "Discover, download, and explore custom prompts": "Pagdiskubre, pag-download ug pagsuhid sa mga naandan nga pag-aghat",
"Discover, download, and explore custom tools": "", "Discover, download, and explore custom tools": "",
"Discover, download, and explore model presets": "Pagdiskobre, pag-download, ug pagsuhid sa mga preset sa template", "Discover, download, and explore model presets": "Pagdiskobre, pag-download, ug pagsuhid sa mga preset sa template",
"Discussion channel where access is based on groups and permissions": "",
"Display": "", "Display": "",
"Display chat title in tab": "", "Display chat title in tab": "",
"Display Emoji in Call": "", "Display Emoji in Call": "",
@ -463,6 +471,7 @@
"Document": "Dokumento", "Document": "Dokumento",
"Document Intelligence": "", "Document Intelligence": "",
"Document Intelligence endpoint required.": "", "Document Intelligence endpoint required.": "",
"Document Intelligence Model": "",
"Documentation": "", "Documentation": "",
"Documents": "Mga dokumento", "Documents": "Mga dokumento",
"does not make any external connections, and your data stays securely on your locally hosted server.": "wala maghimo ug eksternal nga koneksyon, ug ang imong data nagpabiling luwas sa imong lokal nga host server.", "does not make any external connections, and your data stays securely on your locally hosted server.": "wala maghimo ug eksternal nga koneksyon, ug ang imong data nagpabiling luwas sa imong lokal nga host server.",
@ -485,12 +494,15 @@
"e.g. \"json\" or a JSON schema": "", "e.g. \"json\" or a JSON schema": "",
"e.g. 60": "", "e.g. 60": "",
"e.g. A filter to remove profanity from text": "", "e.g. A filter to remove profanity from text": "",
"e.g. about the Roman Empire": "",
"e.g. en": "", "e.g. en": "",
"e.g. My Filter": "", "e.g. My Filter": "",
"e.g. My Tools": "", "e.g. My Tools": "",
"e.g. my_filter": "", "e.g. my_filter": "",
"e.g. my_tools": "", "e.g. my_tools": "",
"e.g. pdf, docx, txt": "", "e.g. pdf, docx, txt": "",
"e.g. Tell me a fun fact": "",
"e.g. Tell me a fun fact about the Roman Empire": "",
"e.g. Tools for performing various operations": "", "e.g. Tools for performing various operations": "",
"e.g., 3, 4, 5 (leave blank for default)": "", "e.g., 3, 4, 5 (leave blank for default)": "",
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "", "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
@ -564,6 +576,7 @@
"Enter Docling Server URL": "", "Enter Docling Server URL": "",
"Enter Document Intelligence Endpoint": "", "Enter Document Intelligence Endpoint": "",
"Enter Document Intelligence Key": "", "Enter Document Intelligence Key": "",
"Enter Document Intelligence Model": "",
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "", "Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
"Enter Exa API Key": "", "Enter Exa API Key": "",
"Enter External Document Loader API Key": "", "Enter External Document Loader API Key": "",
@ -689,7 +702,6 @@
"Export Config to JSON File": "", "Export Config to JSON File": "",
"Export Models": "", "Export Models": "",
"Export Presets": "", "Export Presets": "",
"Export Prompt Suggestions": "",
"Export Prompts": "", "Export Prompts": "",
"Export to CSV": "", "Export to CSV": "",
"Export Tools": "", "Export Tools": "",
@ -704,6 +716,8 @@
"External Web Search URL": "", "External Web Search URL": "",
"Fade Effect for Streaming Text": "", "Fade Effect for Streaming Text": "",
"Failed to add file.": "", "Failed to add file.": "",
"Failed to add members": "",
"Failed to clear status": "",
"Failed to connect to {{URL}} OpenAPI tool server": "", "Failed to connect to {{URL}} OpenAPI tool server": "",
"Failed to copy link": "", "Failed to copy link": "",
"Failed to create API Key.": "", "Failed to create API Key.": "",
@ -717,12 +731,14 @@
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to read clipboard contents": "Napakyas sa pagbasa sa sulod sa clipboard", "Failed to read clipboard contents": "Napakyas sa pagbasa sa sulod sa clipboard",
"Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
"Failed to render visualization": "", "Failed to render visualization": "",
"Failed to save connections": "", "Failed to save connections": "",
"Failed to save conversation": "Napakyas sa pagtipig sa panag-istorya", "Failed to save conversation": "Napakyas sa pagtipig sa panag-istorya",
"Failed to save models configuration": "", "Failed to save models configuration": "",
"Failed to update settings": "", "Failed to update settings": "",
"Failed to update status": "",
"Failed to upload file.": "", "Failed to upload file.": "",
"Features": "", "Features": "",
"Features Permissions": "", "Features Permissions": "",
@ -816,11 +832,13 @@
"Google PSE Engine Id": "", "Google PSE Engine Id": "",
"Gravatar": "", "Gravatar": "",
"Group": "Grupo", "Group": "Grupo",
"Group Channel": "",
"Group created successfully": "", "Group created successfully": "",
"Group deleted successfully": "", "Group deleted successfully": "",
"Group Description": "", "Group Description": "",
"Group Name": "", "Group Name": "",
"Group updated successfully": "", "Group updated successfully": "",
"groups": "",
"Groups": "", "Groups": "",
"H1": "", "H1": "",
"H2": "", "H2": "",
@ -875,7 +893,6 @@
"Import Models": "", "Import Models": "",
"Import Notes": "", "Import Notes": "",
"Import Presets": "", "Import Presets": "",
"Import Prompt Suggestions": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
"Import Tools": "", "Import Tools": "",
@ -1011,6 +1028,9 @@
"MCP": "", "MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Medium": "", "Medium": "",
"Member removed successfully": "",
"Members": "",
"Members added successfully": "",
"Memories accessible by LLMs will be shown here.": "", "Memories accessible by LLMs will be shown here.": "",
"Memory": "", "Memory": "",
"Memory added successfully": "", "Memory added successfully": "",
@ -1110,6 +1130,7 @@
"No models selected": "", "No models selected": "",
"No Notes": "", "No Notes": "",
"No notes found": "", "No notes found": "",
"No pinned messages": "",
"No prompts found": "", "No prompts found": "",
"No results": "Walay resulta", "No results": "Walay resulta",
"No results found": "", "No results found": "",
@ -1157,6 +1178,7 @@
"Only alphanumeric characters and hyphens are allowed in the command string.": "Ang alphanumeric nga mga karakter ug hyphen lang ang gitugotan sa command string.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Ang alphanumeric nga mga karakter ug hyphen lang ang gitugotan sa command string.",
"Only can be triggered when the chat input is in focus.": "", "Only can be triggered when the chat input is in focus.": "",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "", "Only collections can be edited, create a new knowledge base to edit/add documents.": "",
"Only invited users can access": "",
"Only markdown files are allowed": "", "Only markdown files are allowed": "",
"Only select users and groups with permission can access": "", "Only select users and groups with permission can access": "",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "Oops! ", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Oops! ",
@ -1219,6 +1241,7 @@
"Personalization": "", "Personalization": "",
"Pin": "", "Pin": "",
"Pinned": "", "Pinned": "",
"Pinned Messages": "",
"Pioneer insights": "", "Pioneer insights": "",
"Pipe": "", "Pipe": "",
"Pipeline deleted successfully": "", "Pipeline deleted successfully": "",
@ -1261,9 +1284,9 @@
"Previous 7 days": "", "Previous 7 days": "",
"Previous message": "", "Previous message": "",
"Private": "", "Private": "",
"Private conversation between selected users": "",
"Profile": "Profil", "Profile": "Profil",
"Prompt": "", "Prompt": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "",
"Prompt Autocompletion": "", "Prompt Autocompletion": "",
"Prompt Content": "Ang sulod sa prompt", "Prompt Content": "Ang sulod sa prompt",
"Prompt created successfully": "", "Prompt created successfully": "",
@ -1449,6 +1472,7 @@
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "", "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
"Set Voice": "Ibutang ang tingog", "Set Voice": "Ibutang ang tingog",
"Set whisper model": "", "Set whisper model": "",
"Set your status": "",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "", "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "", "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets how far back for the model to look back to prevent repetition.": "", "Sets how far back for the model to look back to prevent repetition.": "",
@ -1501,6 +1525,9 @@
"Start a new conversation": "", "Start a new conversation": "",
"Start of the channel": "Sinugdan sa channel", "Start of the channel": "Sinugdan sa channel",
"Start Tag": "", "Start Tag": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Steps": "", "Steps": "",
@ -1516,7 +1543,7 @@
"STT Model": "", "STT Model": "",
"STT Settings": "Mga setting sa STT", "STT Settings": "Mga setting sa STT",
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "", "Subtitle": "",
"Success": "Kalampusan", "Success": "Kalampusan",
"Successfully imported {{userCount}} users.": "", "Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Malampuson nga na-update.", "Successfully updated.": "Malampuson nga na-update.",
@ -1599,7 +1626,6 @@
"Tika Server URL required.": "", "Tika Server URL required.": "",
"Tiktoken": "", "Tiktoken": "",
"Title": "Titulo", "Title": "Titulo",
"Title (e.g. Tell me a fun fact)": "",
"Title Auto-Generation": "Awtomatikong paghimo sa titulo", "Title Auto-Generation": "Awtomatikong paghimo sa titulo",
"Title cannot be an empty string.": "", "Title cannot be an empty string.": "",
"Title Generation": "", "Title Generation": "",
@ -1668,6 +1694,7 @@
"Update and Copy Link": "", "Update and Copy Link": "",
"Update for the latest features and improvements.": "", "Update for the latest features and improvements.": "",
"Update password": "I-update ang password", "Update password": "I-update ang password",
"Update your status": "",
"Updated": "", "Updated": "",
"Updated at": "", "Updated at": "",
"Updated At": "", "Updated At": "",
@ -1721,6 +1748,7 @@
"View Replies": "", "View Replies": "",
"View Result from **{{NAME}}**": "", "View Result from **{{NAME}}**": "",
"Visibility": "", "Visibility": "",
"Visible to all users": "",
"Vision": "", "Vision": "",
"Voice": "", "Voice": "",
"Voice Input": "", "Voice Input": "",
@ -1748,6 +1776,7 @@
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"What's New in": "Unsay bag-o sa", "What's New in": "Unsay bag-o sa",
"What's on your mind?": "",
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "", "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
"wherever you are": "", "wherever you are": "",
"Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "",

View file

@ -18,11 +18,15 @@
"{{COUNT}} words": "{{COUNT}} slov", "{{COUNT}} words": "{{COUNT}} slov",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
"{{model}} download has been canceled": "Stažení modelu {{model}} bylo zrušeno", "{{model}} download has been canceled": "Stažení modelu {{model}} bylo zrušeno",
"{{NAMES}} reacted with {{REACTION}}": "",
"{{user}}'s Chats": "Konverzace uživatele {{user}}", "{{user}}'s Chats": "Konverzace uživatele {{user}}",
"{{webUIName}} Backend Required": "Je vyžadován backend {{webUIName}}", "{{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", "*Prompt node ID(s) are required for image generation": "*Pro generování obrázků jsou vyžadována ID uzlů instrukce",
"1 Source": "", "1 Source": "",
"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.", "A new version (v{{LATEST_VERSION}}) is now available.": "Nová verze (v{{LATEST_VERSION}}) je nyní k dispozici.",
"A private conversation between you and selected users": "",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Model pro úkoly se používá při provádění úkolů, jako je generování názvů pro konverzace a vyhledávací dotazy na webu.", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Model pro úkoly se používá při provádění úkolů, jako je generování názvů pro konverzace a vyhledávací dotazy na webu.",
"a user": "uživatel", "a user": "uživatel",
"About": "O aplikaci", "About": "O aplikaci",
@ -53,7 +57,8 @@
"Add Custom Prompt": "", "Add Custom Prompt": "",
"Add Details": "Přidat podrobnosti", "Add Details": "Přidat podrobnosti",
"Add Files": "Přidat soubory", "Add Files": "Přidat soubory",
"Add Group": "Přidat skupinu", "Add Member": "",
"Add Members": "",
"Add Memory": "Přidat vzpomínku", "Add Memory": "Přidat vzpomínku",
"Add Model": "Přidat model", "Add Model": "Přidat model",
"Add Reaction": "Přidat reakci", "Add Reaction": "Přidat reakci",
@ -252,6 +257,7 @@
"Citations": "Citace", "Citations": "Citace",
"Clear memory": "Vymazat paměť", "Clear memory": "Vymazat paměť",
"Clear Memory": "Vymazat paměť", "Clear Memory": "Vymazat paměť",
"Clear status": "",
"click here": "klikněte zde", "click here": "klikněte zde",
"Click here for filter guides.": "Klikněte zde pro průvodce filtry.", "Click here for filter guides.": "Klikněte zde pro průvodce filtry.",
"Click here for help.": "Klikněte zde pro nápovědu.", "Click here for help.": "Klikněte zde pro nápovědu.",
@ -288,6 +294,7 @@
"Code Interpreter": "Interpret kódu", "Code Interpreter": "Interpret kódu",
"Code Interpreter Engine": "Jádro interpretu kódu", "Code Interpreter Engine": "Jádro interpretu kódu",
"Code Interpreter Prompt Template": "Šablona instrukce pro interpret kódu", "Code Interpreter Prompt Template": "Šablona instrukce pro interpret kódu",
"Collaboration channel where people join as members": "",
"Collapse": "Sbalit", "Collapse": "Sbalit",
"Collection": "Kolekce", "Collection": "Kolekce",
"Color": "Barva", "Color": "Barva",
@ -447,6 +454,7 @@
"Discover, download, and explore custom prompts": "Objevujte, stahujte a prozkoumávejte vlastní instrukce", "Discover, download, and explore custom prompts": "Objevujte, stahujte a prozkoumávejte vlastní instrukce",
"Discover, download, and explore custom tools": "Objevujte, stahujte a prozkoumávejte vlastní nástroje", "Discover, download, and explore custom tools": "Objevujte, stahujte a prozkoumávejte vlastní nástroje",
"Discover, download, and explore model presets": "Objevujte, stahujte a prozkoumávejte přednastavení modelů", "Discover, download, and explore model presets": "Objevujte, stahujte a prozkoumávejte přednastavení modelů",
"Discussion channel where access is based on groups and permissions": "",
"Display": "Zobrazení", "Display": "Zobrazení",
"Display chat title in tab": "", "Display chat title in tab": "",
"Display Emoji in Call": "Zobrazit emoji při hovoru", "Display Emoji in Call": "Zobrazit emoji při hovoru",
@ -463,6 +471,7 @@
"Document": "Dokument", "Document": "Dokument",
"Document Intelligence": "Document Intelligence", "Document Intelligence": "Document Intelligence",
"Document Intelligence endpoint required.": "", "Document Intelligence endpoint required.": "",
"Document Intelligence Model": "",
"Documentation": "Dokumentace", "Documentation": "Dokumentace",
"Documents": "Dokumenty", "Documents": "Dokumenty",
"does not make any external connections, and your data stays securely on your locally hosted server.": "nevytváří žádná externí připojení a vaše data zůstávají bezpečně na vašem lokálně hostovaném serveru.", "does not make any external connections, and your data stays securely on your locally hosted server.": "nevytváří žádná externí připojení a vaše data zůstávají bezpečně na vašem lokálně hostovaném serveru.",
@ -485,12 +494,15 @@
"e.g. \"json\" or a JSON schema": "např. \"json\" nebo JSON schéma", "e.g. \"json\" or a JSON schema": "např. \"json\" nebo JSON schéma",
"e.g. 60": "např. 60", "e.g. 60": "např. 60",
"e.g. A filter to remove profanity from text": "např. Filtr pro odstranění vulgarismů z textu", "e.g. A filter to remove profanity from text": "např. Filtr pro odstranění vulgarismů z textu",
"e.g. about the Roman Empire": "",
"e.g. en": "např. cs", "e.g. en": "např. cs",
"e.g. My Filter": "např. Můj filtr", "e.g. My Filter": "např. Můj filtr",
"e.g. My Tools": "např. Moje nástroje", "e.g. My Tools": "např. Moje nástroje",
"e.g. my_filter": "např. muj_filtr", "e.g. my_filter": "např. muj_filtr",
"e.g. my_tools": "např. moje_nastroje", "e.g. my_tools": "např. moje_nastroje",
"e.g. pdf, docx, txt": "např. pdf, docx, txt", "e.g. pdf, docx, txt": "např. pdf, docx, txt",
"e.g. Tell me a fun fact": "",
"e.g. Tell me a fun fact about the Roman Empire": "",
"e.g. Tools for performing various operations": "např. Nástroje pro provádění různých operací", "e.g. Tools for performing various operations": "např. Nástroje pro provádění různých operací",
"e.g., 3, 4, 5 (leave blank for default)": "např. 3, 4, 5 (pro výchozí ponechte prázdné)", "e.g., 3, 4, 5 (leave blank for default)": "např. 3, 4, 5 (pro výchozí ponechte prázdné)",
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "např. audio/wav,audio/mpeg,video/* (pro výchozí ponechte prázdné)", "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "např. audio/wav,audio/mpeg,video/* (pro výchozí ponechte prázdné)",
@ -564,6 +576,7 @@
"Enter Docling Server URL": "Zadejte URL serveru Docling", "Enter Docling Server URL": "Zadejte URL serveru Docling",
"Enter Document Intelligence Endpoint": "Zadejte koncový bod Document Intelligence", "Enter Document Intelligence Endpoint": "Zadejte koncový bod Document Intelligence",
"Enter Document Intelligence Key": "Zadejte klíč pro Document Intelligence", "Enter Document Intelligence Key": "Zadejte klíč pro Document Intelligence",
"Enter Document Intelligence Model": "",
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "", "Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
"Enter Exa API Key": "Zadejte API klíč pro Exa", "Enter Exa API Key": "Zadejte API klíč pro Exa",
"Enter External Document Loader API Key": "Zadejte API klíč pro externí zavaděč dokumentů", "Enter External Document Loader API Key": "Zadejte API klíč pro externí zavaděč dokumentů",
@ -689,7 +702,6 @@
"Export Config to JSON File": "Exportovat konfiguraci do souboru JSON", "Export Config to JSON File": "Exportovat konfiguraci do souboru JSON",
"Export Models": "", "Export Models": "",
"Export Presets": "Exportovat předvolby", "Export Presets": "Exportovat předvolby",
"Export Prompt Suggestions": "Exportovat návrhy instrukcí",
"Export Prompts": "", "Export Prompts": "",
"Export to CSV": "Exportovat do CSV", "Export to CSV": "Exportovat do CSV",
"Export Tools": "", "Export Tools": "",
@ -704,6 +716,8 @@
"External Web Search URL": "URL pro externí webové vyhledávání", "External Web Search URL": "URL pro externí webové vyhledávání",
"Fade Effect for Streaming Text": "Efekt prolínání pro streamovaný text", "Fade Effect for Streaming Text": "Efekt prolínání pro streamovaný text",
"Failed to add file.": "Nepodařilo se přidat soubor.", "Failed to add file.": "Nepodařilo se přidat soubor.",
"Failed to add members": "",
"Failed to clear status": "",
"Failed to connect to {{URL}} OpenAPI tool server": "Nepodařilo se připojit k serveru nástrojů OpenAPI {{URL}}", "Failed to connect to {{URL}} OpenAPI tool server": "Nepodařilo se připojit k serveru nástrojů OpenAPI {{URL}}",
"Failed to copy link": "Nepodařilo se zkopírovat odkaz", "Failed to copy link": "Nepodařilo se zkopírovat odkaz",
"Failed to create API Key.": "Nepodařilo se vytvořit API klíč.", "Failed to create API Key.": "Nepodařilo se vytvořit API klíč.",
@ -717,12 +731,14 @@
"Failed to load file content.": "Nepodařilo se načíst obsah souboru.", "Failed to load file content.": "Nepodařilo se načíst obsah souboru.",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to read clipboard contents": "Nepodařilo se přečíst obsah schránky", "Failed to read clipboard contents": "Nepodařilo se přečíst obsah schránky",
"Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
"Failed to render visualization": "", "Failed to render visualization": "",
"Failed to save connections": "Nepodařilo se uložit připojení", "Failed to save connections": "Nepodařilo se uložit připojení",
"Failed to save conversation": "Nepodařilo se uložit konverzaci", "Failed to save conversation": "Nepodařilo se uložit konverzaci",
"Failed to save models configuration": "Nepodařilo se uložit konfiguraci modelů", "Failed to save models configuration": "Nepodařilo se uložit konfiguraci modelů",
"Failed to update settings": "Nepodařilo se aktualizovat nastavení", "Failed to update settings": "Nepodařilo se aktualizovat nastavení",
"Failed to update status": "",
"Failed to upload file.": "Nepodařilo se nahrát soubor.", "Failed to upload file.": "Nepodařilo se nahrát soubor.",
"Features": "Funkce", "Features": "Funkce",
"Features Permissions": "Oprávnění funkcí", "Features Permissions": "Oprávnění funkcí",
@ -816,11 +832,13 @@
"Google PSE Engine Id": "ID jádra Google PSE", "Google PSE Engine Id": "ID jádra Google PSE",
"Gravatar": "", "Gravatar": "",
"Group": "Skupina", "Group": "Skupina",
"Group Channel": "",
"Group created successfully": "Skupina byla úspěšně vytvořena", "Group created successfully": "Skupina byla úspěšně vytvořena",
"Group deleted successfully": "Skupina byla úspěšně smazána", "Group deleted successfully": "Skupina byla úspěšně smazána",
"Group Description": "Popis skupiny", "Group Description": "Popis skupiny",
"Group Name": "Název skupiny", "Group Name": "Název skupiny",
"Group updated successfully": "Skupina byla úspěšně aktualizována", "Group updated successfully": "Skupina byla úspěšně aktualizována",
"groups": "",
"Groups": "Skupiny", "Groups": "Skupiny",
"H1": "H1", "H1": "H1",
"H2": "H2", "H2": "H2",
@ -875,7 +893,6 @@
"Import Models": "", "Import Models": "",
"Import Notes": "Importovat poznámky", "Import Notes": "Importovat poznámky",
"Import Presets": "Importovat předvolby", "Import Presets": "Importovat předvolby",
"Import Prompt Suggestions": "Importovat návrhy instrukcí",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
"Import Tools": "", "Import Tools": "",
@ -1011,6 +1028,9 @@
"MCP": "", "MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Medium": "Střední", "Medium": "Střední",
"Member removed successfully": "",
"Members": "",
"Members added successfully": "",
"Memories accessible by LLMs will be shown here.": "Zde se zobrazí vzpomínky přístupné pro LLM.", "Memories accessible by LLMs will be shown here.": "Zde se zobrazí vzpomínky přístupné pro LLM.",
"Memory": "Paměť", "Memory": "Paměť",
"Memory added successfully": "Vzpomínka byla úspěšně přidána.", "Memory added successfully": "Vzpomínka byla úspěšně přidána.",
@ -1110,6 +1130,7 @@
"No models selected": "Nebyly vybrány žádné modely", "No models selected": "Nebyly vybrány žádné modely",
"No Notes": "Žádné poznámky", "No Notes": "Žádné poznámky",
"No notes found": "Nebyly nalezeny žádné poznámky", "No notes found": "Nebyly nalezeny žádné poznámky",
"No pinned messages": "",
"No prompts found": "Nebyly nalezeny žádné instrukce", "No prompts found": "Nebyly nalezeny žádné instrukce",
"No results": "Nebyly nalezeny žádné výsledky", "No results": "Nebyly nalezeny žádné výsledky",
"No results found": "Nebyly nalezeny žádné výsledky", "No results found": "Nebyly nalezeny žádné výsledky",
@ -1157,6 +1178,7 @@
"Only alphanumeric characters and hyphens are allowed in the command string.": "V řetězci příkazu jsou povoleny pouze alfanumerické znaky a pomlčky.", "Only alphanumeric characters and hyphens are allowed in the command string.": "V řetězci příkazu jsou povoleny pouze alfanumerické znaky a pomlčky.",
"Only can be triggered when the chat input is in focus.": "", "Only can be triggered when the chat input is in focus.": "",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Lze upravovat pouze kolekce, pro úpravu/přidání dokumentů vytvořte novou znalostní bázi.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Lze upravovat pouze kolekce, pro úpravu/přidání dokumentů vytvořte novou znalostní bázi.",
"Only invited users can access": "",
"Only markdown files are allowed": "Jsou povoleny pouze soubory markdown", "Only markdown files are allowed": "Jsou povoleny pouze soubory markdown",
"Only select users and groups with permission can access": "Přístup mají pouze vybraní uživatelé a skupiny s oprávněním", "Only select users and groups with permission can access": "Přístup mají pouze vybraní uživatelé a skupiny s oprávněním",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "Jejda! Zdá se, že URL adresa je neplatná. Zkontrolujte ji prosím a zkuste to znovu.", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Jejda! Zdá se, že URL adresa je neplatná. Zkontrolujte ji prosím a zkuste to znovu.",
@ -1219,6 +1241,7 @@
"Personalization": "Personalizace", "Personalization": "Personalizace",
"Pin": "Připnout", "Pin": "Připnout",
"Pinned": "Připnuto", "Pinned": "Připnuto",
"Pinned Messages": "",
"Pioneer insights": "Objevujte nové poznatky", "Pioneer insights": "Objevujte nové poznatky",
"Pipe": "Pipe", "Pipe": "Pipe",
"Pipeline deleted successfully": "Pipeline byla úspěšně smazána", "Pipeline deleted successfully": "Pipeline byla úspěšně smazána",
@ -1261,9 +1284,9 @@
"Previous 7 days": "Posledních 7 dní", "Previous 7 days": "Posledních 7 dní",
"Previous message": "Předchozí zpráva", "Previous message": "Předchozí zpráva",
"Private": "Soukromé", "Private": "Soukromé",
"Private conversation between selected users": "",
"Profile": "Profil", "Profile": "Profil",
"Prompt": "Instrukce", "Prompt": "Instrukce",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Instrukce (např. Řekni mi zajímavost o Římské říši)",
"Prompt Autocompletion": "Automatické doplňování instrukcí", "Prompt Autocompletion": "Automatické doplňování instrukcí",
"Prompt Content": "Obsah instrukce", "Prompt Content": "Obsah instrukce",
"Prompt created successfully": "Pokyn byl úspěšně vytvořen", "Prompt created successfully": "Pokyn byl úspěšně vytvořen",
@ -1451,6 +1474,7 @@
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Nastavte počet pracovních vláken použitých pro výpočty. Tato možnost řídí, kolik vláken se používá ke souběžnému zpracování příchozích požadavků. Zvýšení této hodnoty může zlepšit výkon při vysokém souběžném zatížení, ale může také spotřebovat více prostředků CPU.", "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Nastavte počet pracovních vláken použitých pro výpočty. Tato možnost řídí, kolik vláken se používá ke souběžnému zpracování příchozích požadavků. Zvýšení této hodnoty může zlepšit výkon při vysokém souběžném zatížení, ale může také spotřebovat více prostředků CPU.",
"Set Voice": "Nastavit hlas", "Set Voice": "Nastavit hlas",
"Set whisper model": "Nastavit model Whisper", "Set whisper model": "Nastavit model Whisper",
"Set your status": "",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Nastaví plošnou penalizaci proti tokenům, které se objevily alespoň jednou. Vyšší hodnota (např. 1,5) bude opakování penalizovat silněji, zatímco nižší hodnota (např. 0,9) bude mírnější. Při hodnotě 0 je funkce vypnuta.", "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Nastaví plošnou penalizaci proti tokenům, které se objevily alespoň jednou. Vyšší hodnota (např. 1,5) bude opakování penalizovat silněji, zatímco nižší hodnota (např. 0,9) bude mírnější. Při hodnotě 0 je funkce vypnuta.",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Nastaví škálovací penalizaci proti tokenům pro penalizaci opakování na základě toho, kolikrát se objevily. Vyšší hodnota (např. 1,5) bude opakování penalizovat silněji, zatímco nižší hodnota (např. 0,9) bude mírnější. Při hodnotě 0 je funkce vypnuta.", "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Nastaví škálovací penalizaci proti tokenům pro penalizaci opakování na základě toho, kolikrát se objevily. Vyšší hodnota (např. 1,5) bude opakování penalizovat silněji, zatímco nižší hodnota (např. 0,9) bude mírnější. Při hodnotě 0 je funkce vypnuta.",
"Sets how far back for the model to look back to prevent repetition.": "Nastavuje, jak daleko zpět se má model dívat, aby se zabránilo opakování.", "Sets how far back for the model to look back to prevent repetition.": "Nastavuje, jak daleko zpět se má model dívat, aby se zabránilo opakování.",
@ -1503,6 +1527,9 @@
"Start a new conversation": "", "Start a new conversation": "",
"Start of the channel": "Začátek kanálu", "Start of the channel": "Začátek kanálu",
"Start Tag": "", "Start Tag": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
"Status Updates": "Aktualizace stavu", "Status Updates": "Aktualizace stavu",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Steps": "", "Steps": "",
@ -1518,7 +1545,7 @@
"STT Model": "Model STT", "STT Model": "Model STT",
"STT Settings": "Nastavení STT", "STT Settings": "Nastavení STT",
"Stylized PDF Export": "Stylizovaný export do PDF", "Stylized PDF Export": "Stylizovaný export do PDF",
"Subtitle (e.g. about the Roman Empire)": "Podtitulek (např. o Římské říši)", "Subtitle": "",
"Success": "Úspěch", "Success": "Úspěch",
"Successfully imported {{userCount}} users.": "Úspěšně importováno {{userCount}} uživatelů.", "Successfully imported {{userCount}} users.": "Úspěšně importováno {{userCount}} uživatelů.",
"Successfully updated.": "Úspěšně aktualizováno.", "Successfully updated.": "Úspěšně aktualizováno.",
@ -1601,7 +1628,6 @@
"Tika Server URL required.": "Je vyžadována URL serveru Tika.", "Tika Server URL required.": "Je vyžadována URL serveru Tika.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Title": "Název", "Title": "Název",
"Title (e.g. Tell me a fun fact)": "Název (např. Řekni mi zajímavost)",
"Title Auto-Generation": "Automatické generování názvu", "Title Auto-Generation": "Automatické generování názvu",
"Title cannot be an empty string.": "Název nemůže být prázdný řetězec.", "Title cannot be an empty string.": "Název nemůže být prázdný řetězec.",
"Title Generation": "Generování názvu", "Title Generation": "Generování názvu",
@ -1670,6 +1696,7 @@
"Update and Copy Link": "Aktualizovat a zkopírovat odkaz", "Update and Copy Link": "Aktualizovat a zkopírovat odkaz",
"Update for the latest features and improvements.": "Aktualizujte pro nejnovější funkce a vylepšení.", "Update for the latest features and improvements.": "Aktualizujte pro nejnovější funkce a vylepšení.",
"Update password": "Aktualizovat heslo", "Update password": "Aktualizovat heslo",
"Update your status": "",
"Updated": "Aktualizováno", "Updated": "Aktualizováno",
"Updated at": "Aktualizováno", "Updated at": "Aktualizováno",
"Updated At": "Aktualizováno", "Updated At": "Aktualizováno",
@ -1723,6 +1750,7 @@
"View Replies": "Zobrazit odpovědi", "View Replies": "Zobrazit odpovědi",
"View Result from **{{NAME}}**": "Zobrazit výsledek z **{{NAME}}**", "View Result from **{{NAME}}**": "Zobrazit výsledek z **{{NAME}}**",
"Visibility": "Viditelnost", "Visibility": "Viditelnost",
"Visible to all users": "",
"Vision": "Zpracovávání obrazu", "Vision": "Zpracovávání obrazu",
"Voice": "Hlas", "Voice": "Hlas",
"Voice Input": "Hlasový vstup", "Voice Input": "Hlasový vstup",
@ -1750,6 +1778,7 @@
"What are you trying to achieve?": "Čeho se snažíte dosáhnout?", "What are you trying to achieve?": "Čeho se snažíte dosáhnout?",
"What are you working on?": "Na čem pracujete?", "What are you working on?": "Na čem pracujete?",
"What's New in": "Co je nového v", "What's New in": "Co je nového v",
"What's on your mind?": "",
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Když je povoleno, model bude odpovídat na každou zprávu v konverzaci v reálném čase a generovat odpověď, jakmile uživatel odešle zprávu. Tento režim je užitečný pro aplikace s živou konverzací, ale může ovlivnit výkon na pomalejším hardwaru.", "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Když je povoleno, model bude odpovídat na každou zprávu v konverzaci v reálném čase a generovat odpověď, jakmile uživatel odešle zprávu. Tento režim je užitečný pro aplikace s živou konverzací, ale může ovlivnit výkon na pomalejším hardwaru.",
"wherever you are": "ať jste kdekoli", "wherever you are": "ať jste kdekoli",
"Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Zda stránkovat výstup. Každá stránka bude oddělena vodorovnou čarou a číslem stránky. Výchozí hodnota je False.", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Zda stránkovat výstup. Každá stránka bude oddělena vodorovnou čarou a číslem stránky. Výchozí hodnota je False.",

View file

@ -18,11 +18,15 @@
"{{COUNT}} words": "{{COUNT}} ord", "{{COUNT}} words": "{{COUNT}} ord",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} klokken {{LOCALIZED_TIME}}", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} klokken {{LOCALIZED_TIME}}",
"{{model}} download has been canceled": "Download af {{model}} er blevet annulleret", "{{model}} download has been canceled": "Download af {{model}} er blevet annulleret",
"{{NAMES}} reacted with {{REACTION}}": "",
"{{user}}'s Chats": "{{user}}s chats", "{{user}}'s Chats": "{{user}}s chats",
"{{webUIName}} Backend Required": "{{webUIName}} Backend kræves", "{{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", "*Prompt node ID(s) are required for image generation": "*Prompt node ID(s) er påkrævet for at kunne generere billeder",
"1 Source": "1 kilde", "1 Source": "1 kilde",
"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}}) er nu tilgængelig.", "A new version (v{{LATEST_VERSION}}) is now available.": "En ny version (v{{LATEST_VERSION}}) er nu tilgængelig.",
"A private conversation between you and selected users": "",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "En 'task model' bliver brugt til at opgaver såsom at generere overskrifter til chats eller internetsøgninger", "A task model is used when performing tasks such as generating titles for chats and web search queries": "En 'task model' bliver brugt til at opgaver såsom at generere overskrifter til chats eller internetsøgninger",
"a user": "en bruger", "a user": "en bruger",
"About": "Information", "About": "Information",
@ -53,7 +57,8 @@
"Add Custom Prompt": "Tilføj brugerdefineret prompt", "Add Custom Prompt": "Tilføj brugerdefineret prompt",
"Add Details": "Tilføj detaljer", "Add Details": "Tilføj detaljer",
"Add Files": "Tilføj filer", "Add Files": "Tilføj filer",
"Add Group": "Tilføj gruppe", "Add Member": "",
"Add Members": "",
"Add Memory": "Tilføj hukommelse", "Add Memory": "Tilføj hukommelse",
"Add Model": "Tilføj model", "Add Model": "Tilføj model",
"Add Reaction": "Tilføj reaktion", "Add Reaction": "Tilføj reaktion",
@ -252,6 +257,7 @@
"Citations": "Citater", "Citations": "Citater",
"Clear memory": "Slet hukommelse", "Clear memory": "Slet hukommelse",
"Clear Memory": "Slet hukommelse", "Clear Memory": "Slet hukommelse",
"Clear status": "",
"click here": "klik her", "click here": "klik her",
"Click here for filter guides.": "Klik her for filter guider", "Click here for filter guides.": "Klik her for filter guider",
"Click here for help.": "Klik her for hjælp", "Click here for help.": "Klik her for hjælp",
@ -288,6 +294,7 @@
"Code Interpreter": "Kode interpreter", "Code Interpreter": "Kode interpreter",
"Code Interpreter Engine": "Kode interpreter engine", "Code Interpreter Engine": "Kode interpreter engine",
"Code Interpreter Prompt Template": "Kode interpreter prompt template", "Code Interpreter Prompt Template": "Kode interpreter prompt template",
"Collaboration channel where people join as members": "",
"Collapse": "Kollapse", "Collapse": "Kollapse",
"Collection": "Samling", "Collection": "Samling",
"Color": "Farve", "Color": "Farve",
@ -447,6 +454,7 @@
"Discover, download, and explore custom prompts": "Find, download og udforsk unikke prompts", "Discover, download, and explore custom prompts": "Find, download og udforsk unikke prompts",
"Discover, download, and explore custom tools": "Find, download og udforsk unikke værktøjer", "Discover, download, and explore custom tools": "Find, download og udforsk unikke værktøjer",
"Discover, download, and explore model presets": "Find, download og udforsk modelindstillinger", "Discover, download, and explore model presets": "Find, download og udforsk modelindstillinger",
"Discussion channel where access is based on groups and permissions": "",
"Display": "Vis", "Display": "Vis",
"Display chat title in tab": "Vis chattitel i fane", "Display chat title in tab": "Vis chattitel i fane",
"Display Emoji in Call": "Vis emoji i chat", "Display Emoji in Call": "Vis emoji i chat",
@ -463,6 +471,7 @@
"Document": "Dokument", "Document": "Dokument",
"Document Intelligence": "Document Intelligence", "Document Intelligence": "Document Intelligence",
"Document Intelligence endpoint required.": "Document Intelligence endpoint påkrævet", "Document Intelligence endpoint required.": "Document Intelligence endpoint påkrævet",
"Document Intelligence Model": "",
"Documentation": "Dokumentation", "Documentation": "Dokumentation",
"Documents": "Dokumenter", "Documents": "Dokumenter",
"does not make any external connections, and your data stays securely on your locally hosted server.": "laver ikke eksterne kald, og din data bliver sikkert på din egen lokalt hostede server.", "does not make any external connections, and your data stays securely on your locally hosted server.": "laver ikke eksterne kald, og din data bliver sikkert på din egen lokalt hostede server.",
@ -485,12 +494,15 @@
"e.g. \"json\" or a JSON schema": "f.eks. \"json\" eller en JSON schema", "e.g. \"json\" or a JSON schema": "f.eks. \"json\" eller en JSON schema",
"e.g. 60": "f.eks. 60", "e.g. 60": "f.eks. 60",
"e.g. A filter to remove profanity from text": "f.eks. Et filter til at fjerne upassende ord fra tekst", "e.g. A filter to remove profanity from text": "f.eks. Et filter til at fjerne upassende ord fra tekst",
"e.g. about the Roman Empire": "",
"e.g. en": "f.eks. en", "e.g. en": "f.eks. en",
"e.g. My Filter": "f.eks. Mit Filter", "e.g. My Filter": "f.eks. Mit Filter",
"e.g. My Tools": "f.eks. Mine Værktøjer", "e.g. My Tools": "f.eks. Mine Værktøjer",
"e.g. my_filter": "f.eks. mit_filter", "e.g. my_filter": "f.eks. mit_filter",
"e.g. my_tools": "f.eks. mine_værktøjer", "e.g. my_tools": "f.eks. mine_værktøjer",
"e.g. pdf, docx, txt": "f.eks. pdf, docx, txt", "e.g. pdf, docx, txt": "f.eks. pdf, docx, txt",
"e.g. Tell me a fun fact": "",
"e.g. Tell me a fun fact about the Roman Empire": "",
"e.g. Tools for performing various operations": "f.eks. Værktøjer til at udføre forskellige operationer", "e.g. Tools for performing various operations": "f.eks. Værktøjer til at udføre forskellige operationer",
"e.g., 3, 4, 5 (leave blank for default)": "f.eks. 3, 4, 5 (lad være tom for standard)", "e.g., 3, 4, 5 (leave blank for default)": "f.eks. 3, 4, 5 (lad være tom for standard)",
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "f.eks. audio/wav,audio/mpeg,video/* (lad være tom for standarder)", "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "f.eks. audio/wav,audio/mpeg,video/* (lad være tom for standarder)",
@ -564,6 +576,7 @@
"Enter Docling Server URL": "Indtast Docling Server URL", "Enter Docling Server URL": "Indtast Docling Server URL",
"Enter Document Intelligence Endpoint": "Indtast Dokument Intelligence Endpoint", "Enter Document Intelligence Endpoint": "Indtast Dokument Intelligence Endpoint",
"Enter Document Intelligence Key": "Indtast Dokument Intelligence nøgle", "Enter Document Intelligence Key": "Indtast Dokument Intelligence nøgle",
"Enter Document Intelligence Model": "",
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "", "Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
"Enter Exa API Key": "Indtast Exa API nøgle", "Enter Exa API Key": "Indtast Exa API nøgle",
"Enter External Document Loader API Key": "Indtast External Dokument Loader API nøgle", "Enter External Document Loader API Key": "Indtast External Dokument Loader API nøgle",
@ -689,7 +702,6 @@
"Export Config to JSON File": "Eksportér konfiguration til JSON-fil", "Export Config to JSON File": "Eksportér konfiguration til JSON-fil",
"Export Models": "", "Export Models": "",
"Export Presets": "Eksportér indstillinger", "Export Presets": "Eksportér indstillinger",
"Export Prompt Suggestions": "Eksportér prompt-forslag",
"Export Prompts": "", "Export Prompts": "",
"Export to CSV": "Eksportér til CSV", "Export to CSV": "Eksportér til CSV",
"Export Tools": "", "Export Tools": "",
@ -704,6 +716,8 @@
"External Web Search URL": "Ekstern Web Search URL", "External Web Search URL": "Ekstern Web Search URL",
"Fade Effect for Streaming Text": "Fade-effekt for streaming tekst", "Fade Effect for Streaming Text": "Fade-effekt for streaming tekst",
"Failed to add file.": "Kunne ikke tilføje fil.", "Failed to add file.": "Kunne ikke tilføje fil.",
"Failed to add members": "",
"Failed to clear status": "",
"Failed to connect to {{URL}} OpenAPI tool server": "Kunne ikke forbinde til {{URL}} OpenAPI tool server", "Failed to connect to {{URL}} OpenAPI tool server": "Kunne ikke forbinde til {{URL}} OpenAPI tool server",
"Failed to copy link": "Kunne ikke kopiere link", "Failed to copy link": "Kunne ikke kopiere link",
"Failed to create API Key.": "Kunne ikke oprette API-nøgle.", "Failed to create API Key.": "Kunne ikke oprette API-nøgle.",
@ -717,12 +731,14 @@
"Failed to load file content.": "Kunne ikke indlæse filindhold.", "Failed to load file content.": "Kunne ikke indlæse filindhold.",
"Failed to move chat": "Kunne ikke flytte chat", "Failed to move chat": "Kunne ikke flytte chat",
"Failed to read clipboard contents": "Kunne ikke læse indholdet af udklipsholderen", "Failed to read clipboard contents": "Kunne ikke læse indholdet af udklipsholderen",
"Failed to remove member": "",
"Failed to render diagram": "Kunne ikke rendere diagram", "Failed to render diagram": "Kunne ikke rendere diagram",
"Failed to render visualization": "Kunne ikke rendere visualisering", "Failed to render visualization": "Kunne ikke rendere visualisering",
"Failed to save connections": "Kunne ikke gemme forbindelser", "Failed to save connections": "Kunne ikke gemme forbindelser",
"Failed to save conversation": "Kunne ikke gemme samtalen", "Failed to save conversation": "Kunne ikke gemme samtalen",
"Failed to save models configuration": "Kunne ikke gemme modeller konfiguration", "Failed to save models configuration": "Kunne ikke gemme modeller konfiguration",
"Failed to update settings": "Kunne ikke opdatere indstillinger", "Failed to update settings": "Kunne ikke opdatere indstillinger",
"Failed to update status": "",
"Failed to upload file.": "Kunne ikke uploade fil.", "Failed to upload file.": "Kunne ikke uploade fil.",
"Features": "Features", "Features": "Features",
"Features Permissions": "Features tilladelser", "Features Permissions": "Features tilladelser",
@ -816,11 +832,13 @@
"Google PSE Engine Id": "Google PSE Engine-ID", "Google PSE Engine Id": "Google PSE Engine-ID",
"Gravatar": "Gravatar", "Gravatar": "Gravatar",
"Group": "Gruppe", "Group": "Gruppe",
"Group Channel": "",
"Group created successfully": "Gruppe oprettet.", "Group created successfully": "Gruppe oprettet.",
"Group deleted successfully": "Gruppe slettet.", "Group deleted successfully": "Gruppe slettet.",
"Group Description": "Gruppe beskrivelse", "Group Description": "Gruppe beskrivelse",
"Group Name": "Gruppenavn", "Group Name": "Gruppenavn",
"Group updated successfully": "Gruppe opdateret.", "Group updated successfully": "Gruppe opdateret.",
"groups": "",
"Groups": "Grupper", "Groups": "Grupper",
"H1": "H1", "H1": "H1",
"H2": "H2", "H2": "H2",
@ -875,7 +893,6 @@
"Import Models": "", "Import Models": "",
"Import Notes": "Importer noter", "Import Notes": "Importer noter",
"Import Presets": "Importer Presets", "Import Presets": "Importer Presets",
"Import Prompt Suggestions": "Importer prompt forslag",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "Importeret", "Import successful": "Importeret",
"Import Tools": "", "Import Tools": "",
@ -1011,6 +1028,9 @@
"MCP": "MCP", "MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "MCP understøttelse er eksperimentel og dens specifikationer ændres ofte hvilket kan medføre inkompatibilitet. OpenAI specifikationsunderstøttelse er vedligeholdt af Open WebUI-teamet hvilket gør det til den mest pålidelige mulighed for understøttelse.", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "MCP understøttelse er eksperimentel og dens specifikationer ændres ofte hvilket kan medføre inkompatibilitet. OpenAI specifikationsunderstøttelse er vedligeholdt af Open WebUI-teamet hvilket gør det til den mest pålidelige mulighed for understøttelse.",
"Medium": "Medium", "Medium": "Medium",
"Member removed successfully": "",
"Members": "",
"Members added successfully": "",
"Memories accessible by LLMs will be shown here.": "Minder, der er tilgængelige for LLM'er, vises her.", "Memories accessible by LLMs will be shown here.": "Minder, der er tilgængelige for LLM'er, vises her.",
"Memory": "Hukommelse", "Memory": "Hukommelse",
"Memory added successfully": "Hukommelse tilføjet.", "Memory added successfully": "Hukommelse tilføjet.",
@ -1110,6 +1130,7 @@
"No models selected": "Ingen modeller valgt", "No models selected": "Ingen modeller valgt",
"No Notes": "Ingen noter", "No Notes": "Ingen noter",
"No notes found": "Ingen noter fundet", "No notes found": "Ingen noter fundet",
"No pinned messages": "",
"No prompts found": "Ingen prompts fundet", "No prompts found": "Ingen prompts fundet",
"No results": "Ingen resultater fundet", "No results": "Ingen resultater fundet",
"No results found": "Ingen resultater fundet", "No results found": "Ingen resultater fundet",
@ -1157,6 +1178,7 @@
"Only alphanumeric characters and hyphens are allowed in the command string.": "Kun alfanumeriske tegn og bindestreger er tilladt i kommandostrengen.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Kun alfanumeriske tegn og bindestreger er tilladt i kommandostrengen.",
"Only can be triggered when the chat input is in focus.": "Kan kun udløses når chat-input er fokuseret.", "Only can be triggered when the chat input is in focus.": "Kan kun udløses når chat-input er fokuseret.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Kun samlinger kan redigeres, opret en ny vidensbase for at redigere/tilføje dokumenter.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Kun samlinger kan redigeres, opret en ny vidensbase for at redigere/tilføje dokumenter.",
"Only invited users can access": "",
"Only markdown files are allowed": "Kun markdown-filer er tilladt", "Only markdown files are allowed": "Kun markdown-filer er tilladt",
"Only select users and groups with permission can access": "Kun valgte brugere og grupper med tilladelse kan tilgå", "Only select users and groups with permission can access": "Kun valgte brugere og grupper med tilladelse kan tilgå",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "Ups! URL'en ser ud til at være ugyldig. Tjek den igen, og prøv igen.", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Ups! URL'en ser ud til at være ugyldig. Tjek den igen, og prøv igen.",
@ -1219,6 +1241,7 @@
"Personalization": "Personalisering", "Personalization": "Personalisering",
"Pin": "Fastgør", "Pin": "Fastgør",
"Pinned": "Fastgjort", "Pinned": "Fastgjort",
"Pinned Messages": "",
"Pioneer insights": "Banebrydende indsigter", "Pioneer insights": "Banebrydende indsigter",
"Pipe": "Pipe", "Pipe": "Pipe",
"Pipeline deleted successfully": "Pipeline slettet.", "Pipeline deleted successfully": "Pipeline slettet.",
@ -1261,9 +1284,9 @@
"Previous 7 days": "Seneste 7 dage", "Previous 7 days": "Seneste 7 dage",
"Previous message": "Forrige besked", "Previous message": "Forrige besked",
"Private": "Privat", "Private": "Privat",
"Private conversation between selected users": "",
"Profile": "Profil", "Profile": "Profil",
"Prompt": "Prompt", "Prompt": "Prompt",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (f.eks. Fortæl mig en sjov fakta om Romerriget)",
"Prompt Autocompletion": "Prompt autofuldførelse", "Prompt Autocompletion": "Prompt autofuldførelse",
"Prompt Content": "Promptindhold", "Prompt Content": "Promptindhold",
"Prompt created successfully": "Prompt oprettet", "Prompt created successfully": "Prompt oprettet",
@ -1449,6 +1472,7 @@
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Indstil antallet af arbejdstråde brugt til beregning. Denne mulighed styrer, hvor mange tråde der bruges til at behandle indkommende forespørgsler samtidigt. At øge denne værdi kan forbedre ydeevnen under høj samtidighedsbelastning, men kan også forbruge flere CPU-ressourcer.", "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Indstil antallet af arbejdstråde brugt til beregning. Denne mulighed styrer, hvor mange tråde der bruges til at behandle indkommende forespørgsler samtidigt. At øge denne værdi kan forbedre ydeevnen under høj samtidighedsbelastning, men kan også forbruge flere CPU-ressourcer.",
"Set Voice": "Indstil stemme", "Set Voice": "Indstil stemme",
"Set whisper model": "Indstil whisper model", "Set whisper model": "Indstil whisper model",
"Set your status": "",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Indstiller en flad bias mod tokens, der er forekommet mindst én gang. En højere værdi (f.eks. 1,5) vil straffe gentagelser stærkere, mens en lavere værdi (f.eks. 0,9) vil være mere lemfældig. Ved 0 er det deaktiveret.", "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Indstiller en flad bias mod tokens, der er forekommet mindst én gang. En højere værdi (f.eks. 1,5) vil straffe gentagelser stærkere, mens en lavere værdi (f.eks. 0,9) vil være mere lemfældig. Ved 0 er det deaktiveret.",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Indstiller en skalerende bias mod tokens for at straffe gentagelser, baseret på hvor mange gange de er forekommet. En højere værdi (f.eks. 1,5) vil straffe gentagelser stærkere, mens en lavere værdi (f.eks. 0,9) vil være mere lemfældig. Ved 0 er det deaktiveret.", "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Indstiller en skalerende bias mod tokens for at straffe gentagelser, baseret på hvor mange gange de er forekommet. En højere værdi (f.eks. 1,5) vil straffe gentagelser stærkere, mens en lavere værdi (f.eks. 0,9) vil være mere lemfældig. Ved 0 er det deaktiveret.",
"Sets how far back for the model to look back to prevent repetition.": "Indstiller hvor langt tilbage modellen skal se for at forhindre gentagelse.", "Sets how far back for the model to look back to prevent repetition.": "Indstiller hvor langt tilbage modellen skal se for at forhindre gentagelse.",
@ -1501,6 +1525,9 @@
"Start a new conversation": "Start en ny samtale", "Start a new conversation": "Start en ny samtale",
"Start of the channel": "Kanalens start", "Start of the channel": "Kanalens start",
"Start Tag": "Start tag", "Start Tag": "Start tag",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
"Status Updates": "Statusopdateringer", "Status Updates": "Statusopdateringer",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Steps": "Trin", "Steps": "Trin",
@ -1516,7 +1543,7 @@
"STT Model": "STT-model", "STT Model": "STT-model",
"STT Settings": "STT-indstillinger", "STT Settings": "STT-indstillinger",
"Stylized PDF Export": "Stiliseret PDF eksport", "Stylized PDF Export": "Stiliseret PDF eksport",
"Subtitle (e.g. about the Roman Empire)": "Undertitel (f.eks. om Romerriget)", "Subtitle": "",
"Success": "Succes", "Success": "Succes",
"Successfully imported {{userCount}} users.": "Importerede {{userCount}} brugere.", "Successfully imported {{userCount}} users.": "Importerede {{userCount}} brugere.",
"Successfully updated.": "Opdateret.", "Successfully updated.": "Opdateret.",
@ -1599,7 +1626,6 @@
"Tika Server URL required.": "Tika-server-URL påkrævet.", "Tika Server URL required.": "Tika-server-URL påkrævet.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Title": "Titel", "Title": "Titel",
"Title (e.g. Tell me a fun fact)": "Titel (f.eks. Fortæl mig en sjov kendsgerning)",
"Title Auto-Generation": "Automatisk titelgenerering", "Title Auto-Generation": "Automatisk titelgenerering",
"Title cannot be an empty string.": "Titel kan ikke være en tom streng.", "Title cannot be an empty string.": "Titel kan ikke være en tom streng.",
"Title Generation": "Titel-generation", "Title Generation": "Titel-generation",
@ -1668,6 +1694,7 @@
"Update and Copy Link": "Opdater og kopier link", "Update and Copy Link": "Opdater og kopier link",
"Update for the latest features and improvements.": "Opdater for at få de nyeste funktioner og forbedringer.", "Update for the latest features and improvements.": "Opdater for at få de nyeste funktioner og forbedringer.",
"Update password": "Opdater adgangskode", "Update password": "Opdater adgangskode",
"Update your status": "",
"Updated": "Opdateret", "Updated": "Opdateret",
"Updated at": "Opdateret kl.", "Updated at": "Opdateret kl.",
"Updated At": "Opdateret Klokken.", "Updated At": "Opdateret Klokken.",
@ -1721,6 +1748,7 @@
"View Replies": "Vis svar", "View Replies": "Vis svar",
"View Result from **{{NAME}}**": "Vis resultat fra **{{NAME}}**", "View Result from **{{NAME}}**": "Vis resultat fra **{{NAME}}**",
"Visibility": "Synlighed", "Visibility": "Synlighed",
"Visible to all users": "",
"Vision": "Vision", "Vision": "Vision",
"Voice": "Stemme", "Voice": "Stemme",
"Voice Input": "Stemme Input", "Voice Input": "Stemme Input",
@ -1748,6 +1776,7 @@
"What are you trying to achieve?": "Hvad prøver du at opnå?", "What are you trying to achieve?": "Hvad prøver du at opnå?",
"What are you working on?": "Hvad arbejder du på?", "What are you working on?": "Hvad arbejder du på?",
"What's New in": "Nyheder i", "What's New in": "Nyheder i",
"What's on your mind?": "",
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Når aktiveret, vil modellen reagere på hver chatbesked i realtid og generere et svar, så snart brugeren sender en besked. Denne tilstand er nyttig til live chat-applikationer, men kan påvirke ydeevnen på langsommere hardware.", "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Når aktiveret, vil modellen reagere på hver chatbesked i realtid og generere et svar, så snart brugeren sender en besked. Denne tilstand er nyttig til live chat-applikationer, men kan påvirke ydeevnen på langsommere hardware.",
"wherever you are": "hvad end du er", "wherever you are": "hvad end du er",
"Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Om outputtet skal pagineres. Hver side vil være adskilt af en vandret streg og sidetal. Standard er False.", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Om outputtet skal pagineres. Hver side vil være adskilt af en vandret streg og sidetal. Standard er False.",

View file

@ -18,11 +18,15 @@
"{{COUNT}} words": "{{COUNT}} Wörter", "{{COUNT}} words": "{{COUNT}} Wörter",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} um {{LOCALIZED_TIME}}", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} um {{LOCALIZED_TIME}}",
"{{model}} download has been canceled": "Der Download von {{model}} wurde abgebrochen", "{{model}} download has been canceled": "Der Download von {{model}} wurde abgebrochen",
"{{NAMES}} reacted with {{REACTION}}": "{{NAMES}} haben mit {{REACTION}} reagiert",
"{{user}}'s Chats": "{{user}}s Chats", "{{user}}'s Chats": "{{user}}s Chats",
"{{webUIName}} Backend Required": "{{webUIName}}-Backend erforderlich", "{{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", "*Prompt node ID(s) are required for image generation": "*Prompt-Node-ID(s) sind für die Bildgenerierung erforderlich",
"1 Source": "1 Quelle", "1 Source": "1 Quelle",
"A collaboration channel where people join as members": "Ein Kollaborationskanal, dem Personen als Mitglieder beitreten",
"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.", "A new version (v{{LATEST_VERSION}}) is now available.": "Eine neue Version (v{{LATEST_VERSION}}) ist jetzt verfügbar.",
"A private conversation between you and selected users": "Eine private Unterhaltung zwischen Ihnen und ausgewählten Benutzern",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Aufgabenmodelle werden beispielsweise zur Generierung von Chat-Titeln oder Websuchanfragen verwendet", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Aufgabenmodelle werden beispielsweise zur Generierung von Chat-Titeln oder Websuchanfragen verwendet",
"a user": "ein Benutzer", "a user": "ein Benutzer",
"About": "Über", "About": "Über",
@ -53,7 +57,8 @@
"Add Custom Prompt": "Benutzerdefinierten Prompt hinzufügen", "Add Custom Prompt": "Benutzerdefinierten Prompt hinzufügen",
"Add Details": "Details hinzufügen", "Add Details": "Details hinzufügen",
"Add Files": "Dateien hinzufügen", "Add Files": "Dateien hinzufügen",
"Add Group": "Gruppe hinzufügen", "Add Member": "Mitglied hinzufügen",
"Add Members": "Mitglieder hinzufügen",
"Add Memory": "Erinnerung hinzufügen", "Add Memory": "Erinnerung hinzufügen",
"Add Model": "Modell hinzufügen", "Add Model": "Modell hinzufügen",
"Add Reaction": "Reaktion hinzufügen", "Add Reaction": "Reaktion hinzufügen",
@ -223,7 +228,7 @@
"Channel deleted successfully": "Kanal erfolgreich gelöscht", "Channel deleted successfully": "Kanal erfolgreich gelöscht",
"Channel Name": "Kanalname", "Channel Name": "Kanalname",
"Channel name cannot be empty.": "Kanalname darf nicht leer sein", "Channel name cannot be empty.": "Kanalname darf nicht leer sein",
"Channel Type": "", "Channel Type": "Kanal Typ",
"Channel updated successfully": "Kanal erfolgreich aktualisiert", "Channel updated successfully": "Kanal erfolgreich aktualisiert",
"Channels": "Kanäle", "Channels": "Kanäle",
"Character": "Zeichen", "Character": "Zeichen",
@ -252,6 +257,7 @@
"Citations": "Zitate", "Citations": "Zitate",
"Clear memory": "Alle Erinnerungen entfernen", "Clear memory": "Alle Erinnerungen entfernen",
"Clear Memory": "Alle Erinnerungen entfernen", "Clear Memory": "Alle Erinnerungen entfernen",
"Clear status": "Status löschen",
"click here": "hier klicken", "click here": "hier klicken",
"Click here for filter guides.": "Klicken Sie hier für Filteranleitungen.", "Click here for filter guides.": "Klicken Sie hier für Filteranleitungen.",
"Click here for help.": "Klicken Sie hier für Hilfe.", "Click here for help.": "Klicken Sie hier für Hilfe.",
@ -288,6 +294,7 @@
"Code Interpreter": "Code-Interpreter", "Code Interpreter": "Code-Interpreter",
"Code Interpreter Engine": "Code Interpreter-Engine", "Code Interpreter Engine": "Code Interpreter-Engine",
"Code Interpreter Prompt Template": "Code Interpreter Prompt Vorlage", "Code Interpreter Prompt Template": "Code Interpreter Prompt Vorlage",
"Collaboration channel where people join as members": "Kollaborationskanal, dem Personen als Mitglieder beitreten",
"Collapse": "Zuklappen", "Collapse": "Zuklappen",
"Collection": "Kollektion", "Collection": "Kollektion",
"Color": "Farbe", "Color": "Farbe",
@ -430,7 +437,7 @@
"Direct": "Direkt", "Direct": "Direkt",
"Direct Connections": "Direktverbindungen", "Direct Connections": "Direktverbindungen",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Direktverbindungen ermöglichen es Benutzern, sich mit ihren eigenen OpenAI-kompatiblen API-Endpunkten zu verbinden.", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Direktverbindungen ermöglichen es Benutzern, sich mit ihren eigenen OpenAI-kompatiblen API-Endpunkten zu verbinden.",
"Direct Message": "", "Direct Message": "Direktnachricht",
"Direct Tool Servers": "Direkt verbundene Werkzeug-Server", "Direct Tool Servers": "Direkt verbundene Werkzeug-Server",
"Directory selection was cancelled": "Die Verzeichnisauswahl wurde abgebrochen", "Directory selection was cancelled": "Die Verzeichnisauswahl wurde abgebrochen",
"Disable Code Interpreter": "Deaktivierte Code Interpreter", "Disable Code Interpreter": "Deaktivierte Code Interpreter",
@ -447,6 +454,7 @@
"Discover, download, and explore custom prompts": "Entdecken und beziehen Sie benutzerdefinierte Prompts", "Discover, download, and explore custom prompts": "Entdecken und beziehen Sie benutzerdefinierte Prompts",
"Discover, download, and explore custom tools": "Entdecken und beziehen Sie benutzerdefinierte Werkzeuge", "Discover, download, and explore custom tools": "Entdecken und beziehen Sie benutzerdefinierte Werkzeuge",
"Discover, download, and explore model presets": "Entdecken und beziehen Sie benutzerdefinierte Modellvorlagen", "Discover, download, and explore model presets": "Entdecken und beziehen Sie benutzerdefinierte Modellvorlagen",
"Discussion channel where access is based on groups and permissions": "Diskussionskanal, dessen Zugriff auf Gruppen und Berechtigungen basiert",
"Display": "Anzeigen", "Display": "Anzeigen",
"Display chat title in tab": "Chat-Titel im Tab anzeigen", "Display chat title in tab": "Chat-Titel im Tab anzeigen",
"Display Emoji in Call": "Emojis im Anruf anzeigen", "Display Emoji in Call": "Emojis im Anruf anzeigen",
@ -463,6 +471,7 @@
"Document": "Dokument", "Document": "Dokument",
"Document Intelligence": "Dokumentenintelligenz", "Document Intelligence": "Dokumentenintelligenz",
"Document Intelligence endpoint required.": "Dokumentenintelligenz-Endpunkt erforderlich.", "Document Intelligence endpoint required.": "Dokumentenintelligenz-Endpunkt erforderlich.",
"Document Intelligence Model": "Dokomentenintelligenz Modell",
"Documentation": "Dokumentation", "Documentation": "Dokumentation",
"Documents": "Dokumente", "Documents": "Dokumente",
"does not make any external connections, and your data stays securely on your locally hosted server.": "stellt keine externen Verbindungen her, und Ihre Daten bleiben sicher auf Ihrem lokal gehosteten Server.", "does not make any external connections, and your data stays securely on your locally hosted server.": "stellt keine externen Verbindungen her, und Ihre Daten bleiben sicher auf Ihrem lokal gehosteten Server.",
@ -485,12 +494,15 @@
"e.g. \"json\" or a JSON schema": "z. B. \"json\" oder ein JSON-Schema", "e.g. \"json\" or a JSON schema": "z. B. \"json\" oder ein JSON-Schema",
"e.g. 60": "z. B. 60", "e.g. 60": "z. B. 60",
"e.g. A filter to remove profanity from text": "z. B. Ein Filter, um Schimpfwörter aus Text zu entfernen", "e.g. A filter to remove profanity from text": "z. B. Ein Filter, um Schimpfwörter aus Text zu entfernen",
"e.g. about the Roman Empire": "z.B. über das Römische Reich",
"e.g. en": "z. B. en", "e.g. en": "z. B. en",
"e.g. My Filter": "z. B. Mein Filter", "e.g. My Filter": "z. B. Mein Filter",
"e.g. My Tools": "z. B. Meine Werkzeuge", "e.g. My Tools": "z. B. Meine Werkzeuge",
"e.g. my_filter": "z. B. mein_filter", "e.g. my_filter": "z. B. mein_filter",
"e.g. my_tools": "z. B. meine_werkzeuge", "e.g. my_tools": "z. B. meine_werkzeuge",
"e.g. pdf, docx, txt": "z. B. pdf, docx, txt", "e.g. pdf, docx, txt": "z. B. pdf, docx, txt",
"e.g. Tell me a fun fact": "z.B. Erzähl mir eine lustige Tatsache",
"e.g. Tell me a fun fact about the Roman Empire": "z.B. Erzähl mir eine lustige Tatsache über das Römische Reich",
"e.g. Tools for performing various operations": "z. B. Werkzeuge für verschiedene Operationen", "e.g. Tools for performing various operations": "z. B. Werkzeuge für verschiedene Operationen",
"e.g., 3, 4, 5 (leave blank for default)": "z. B. 3, 4, 5 (leer lassen für Standard)", "e.g., 3, 4, 5 (leave blank for default)": "z. B. 3, 4, 5 (leer lassen für Standard)",
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "z. B. audio/wav,audio/mpeg,video/* (leer lassen für Standardwerte)", "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "z. B. audio/wav,audio/mpeg,video/* (leer lassen für Standardwerte)",
@ -564,6 +576,7 @@
"Enter Docling Server URL": "Docling Server-URL eingeben", "Enter Docling Server URL": "Docling Server-URL eingeben",
"Enter Document Intelligence Endpoint": "Endpunkt für Document Intelligence eingeben", "Enter Document Intelligence Endpoint": "Endpunkt für Document Intelligence eingeben",
"Enter Document Intelligence Key": "Schlüssel für Document Intelligence eingeben", "Enter Document Intelligence Key": "Schlüssel für Document Intelligence eingeben",
"Enter Document Intelligence Model": "Dokumentenintelligenz-Modell eingeben",
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "Kommaseparierte Domainnamen eingeben (z.B., erlaubteseite.com,!gesperrteseite.org)", "Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "Kommaseparierte Domainnamen eingeben (z.B., erlaubteseite.com,!gesperrteseite.org)",
"Enter Exa API Key": "Geben Sie den Exa-API-Schlüssel ein", "Enter Exa API Key": "Geben Sie den Exa-API-Schlüssel ein",
"Enter External Document Loader API Key": "API-Schlüssel für externen Dokumenten-Loader eingeben", "Enter External Document Loader API Key": "API-Schlüssel für externen Dokumenten-Loader eingeben",
@ -689,7 +702,6 @@
"Export Config to JSON File": "Exportiere Konfiguration als JSON-Datei", "Export Config to JSON File": "Exportiere Konfiguration als JSON-Datei",
"Export Models": "Modelle exportieren", "Export Models": "Modelle exportieren",
"Export Presets": "Voreinstellungen exportieren", "Export Presets": "Voreinstellungen exportieren",
"Export Prompt Suggestions": "Prompt-Vorschläge exportieren",
"Export Prompts": "Prompts exportieren", "Export Prompts": "Prompts exportieren",
"Export to CSV": "Als CSV exportieren", "Export to CSV": "Als CSV exportieren",
"Export Tools": "Werkzeuge exportieren", "Export Tools": "Werkzeuge exportieren",
@ -704,6 +716,8 @@
"External Web Search URL": "Externe Websuche URL", "External Web Search URL": "Externe Websuche URL",
"Fade Effect for Streaming Text": "Überblendeffekt für Text-Streaming", "Fade Effect for Streaming Text": "Überblendeffekt für Text-Streaming",
"Failed to add file.": "Fehler beim Hinzufügen der Datei.", "Failed to add file.": "Fehler beim Hinzufügen der Datei.",
"Failed to add members": "Mitglieder konnten nicht hinzugefügt werden",
"Failed to clear status": "Status konnte nicht gelöscht werden",
"Failed to connect to {{URL}} OpenAPI tool server": "Verbindung zum OpenAPI-Toolserver {{URL}} fehlgeschlagen", "Failed to connect to {{URL}} OpenAPI tool server": "Verbindung zum OpenAPI-Toolserver {{URL}} fehlgeschlagen",
"Failed to copy link": "Fehler beim kopieren des Links", "Failed to copy link": "Fehler beim kopieren des Links",
"Failed to create API Key.": "Fehler beim Erstellen des API-Schlüssels.", "Failed to create API Key.": "Fehler beim Erstellen des API-Schlüssels.",
@ -717,12 +731,14 @@
"Failed to load file content.": "Fehler beim Laden des Dateiinhalts.", "Failed to load file content.": "Fehler beim Laden des Dateiinhalts.",
"Failed to move chat": "Chat konnte nicht verschoben werden", "Failed to move chat": "Chat konnte nicht verschoben werden",
"Failed to read clipboard contents": "Fehler beim Lesen des Inhalts der Zwischenablage.", "Failed to read clipboard contents": "Fehler beim Lesen des Inhalts der Zwischenablage.",
"Failed to remove member": "Mitglied konnte nicht entfernt werden",
"Failed to render diagram": "Diagramm konnte nicht gerendert werden", "Failed to render diagram": "Diagramm konnte nicht gerendert werden",
"Failed to render visualization": "Visualisierung konnte nicht gerendert werden", "Failed to render visualization": "Visualisierung konnte nicht gerendert werden",
"Failed to save connections": "Verbindungen konnten nicht gespeichert werden", "Failed to save connections": "Verbindungen konnten nicht gespeichert werden",
"Failed to save conversation": "Unterhaltung konnte nicht gespeichert werden", "Failed to save conversation": "Unterhaltung konnte nicht gespeichert werden",
"Failed to save models configuration": "Fehler beim Speichern der Modellkonfiguration", "Failed to save models configuration": "Fehler beim Speichern der Modellkonfiguration",
"Failed to update settings": "Fehler beim Aktualisieren der Einstellungen", "Failed to update settings": "Fehler beim Aktualisieren der Einstellungen",
"Failed to update status": "Status konnte nicht aktualisiert werden",
"Failed to upload file.": "Fehler beim Hochladen der Datei.", "Failed to upload file.": "Fehler beim Hochladen der Datei.",
"Features": "Funktionalitäten", "Features": "Funktionalitäten",
"Features Permissions": "Funktionen-Berechtigungen", "Features Permissions": "Funktionen-Berechtigungen",
@ -816,11 +832,13 @@
"Google PSE Engine Id": "Google PSE-Engine-ID", "Google PSE Engine Id": "Google PSE-Engine-ID",
"Gravatar": "Gravatar", "Gravatar": "Gravatar",
"Group": "Gruppe", "Group": "Gruppe",
"Group Channel": "Gruppenkanal",
"Group created successfully": "Gruppe erfolgreich erstellt", "Group created successfully": "Gruppe erfolgreich erstellt",
"Group deleted successfully": "Gruppe erfolgreich gelöscht", "Group deleted successfully": "Gruppe erfolgreich gelöscht",
"Group Description": "Gruppenbeschreibung", "Group Description": "Gruppenbeschreibung",
"Group Name": "Gruppenname", "Group Name": "Gruppenname",
"Group updated successfully": "Gruppe erfolgreich aktualisiert", "Group updated successfully": "Gruppe erfolgreich aktualisiert",
"groups": "Gruppen",
"Groups": "Gruppen", "Groups": "Gruppen",
"H1": "Überschrift 1", "H1": "Überschrift 1",
"H2": "Überschrift 2", "H2": "Überschrift 2",
@ -875,7 +893,6 @@
"Import Models": "Modelle importieren", "Import Models": "Modelle importieren",
"Import Notes": "Notizen importieren", "Import Notes": "Notizen importieren",
"Import Presets": "Voreinstellungen importieren", "Import Presets": "Voreinstellungen importieren",
"Import Prompt Suggestions": "Prompt-Vorschläge importieren",
"Import Prompts": "Prompts importieren", "Import Prompts": "Prompts importieren",
"Import successful": "Import erfolgreich", "Import successful": "Import erfolgreich",
"Import Tools": "Werkzeuge importieren", "Import Tools": "Werkzeuge importieren",
@ -1011,6 +1028,9 @@
"MCP": "MCP", "MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "Die MCP-Unterstützung ist experimentell und ihre Spezifikation ändert sich häufig, was zu Inkompatibilitäten führen kann. Die Unterstützung der OpenAPI-Spezifikation wird direkt vom OpenWebUITeam gepflegt und ist daher die verlässlichere Option in Bezug auf Kompatibilität.", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "Die MCP-Unterstützung ist experimentell und ihre Spezifikation ändert sich häufig, was zu Inkompatibilitäten führen kann. Die Unterstützung der OpenAPI-Spezifikation wird direkt vom OpenWebUITeam gepflegt und ist daher die verlässlichere Option in Bezug auf Kompatibilität.",
"Medium": "Mittel", "Medium": "Mittel",
"Member removed successfully": "Mitglied erfolgreich entfernt",
"Members": "Mitglieder",
"Members added successfully": "Mitglieder erfolgreich hinzugefügt",
"Memories accessible by LLMs will be shown here.": "Erinnerungen, die für Modelle zugänglich sind, werden hier angezeigt.", "Memories accessible by LLMs will be shown here.": "Erinnerungen, die für Modelle zugänglich sind, werden hier angezeigt.",
"Memory": "Erinnerungen", "Memory": "Erinnerungen",
"Memory added successfully": "Erinnerung erfolgreich hinzugefügt", "Memory added successfully": "Erinnerung erfolgreich hinzugefügt",
@ -1110,6 +1130,7 @@
"No models selected": "Keine Modelle ausgewählt", "No models selected": "Keine Modelle ausgewählt",
"No Notes": "Keine Notizen", "No Notes": "Keine Notizen",
"No notes found": "Keine Notizen gefunden", "No notes found": "Keine Notizen gefunden",
"No pinned messages": "Keine angehefteten Nachrichten",
"No prompts found": "Keine Prompts gefunden", "No prompts found": "Keine Prompts gefunden",
"No results": "Keine Ergebnisse gefunden", "No results": "Keine Ergebnisse gefunden",
"No results found": "Keine Ergebnisse gefunden", "No results found": "Keine Ergebnisse gefunden",
@ -1157,6 +1178,7 @@
"Only alphanumeric characters and hyphens are allowed in the command string.": "In der Befehlszeichenfolge sind nur alphanumerische Zeichen und Bindestriche erlaubt.", "Only alphanumeric characters and hyphens are allowed in the command string.": "In der Befehlszeichenfolge sind nur alphanumerische Zeichen und Bindestriche erlaubt.",
"Only can be triggered when the chat input is in focus.": "Kann nur ausgelöst werden, wenn das Chat-Eingabefeld fokussiert ist.", "Only can be triggered when the chat input is in focus.": "Kann nur ausgelöst werden, wenn das Chat-Eingabefeld fokussiert ist.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Nur Sammlungen können bearbeitet werden. Erstellen Sie eine neue Wissensbasis, um Dokumente zu bearbeiten/hinzuzufügen.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Nur Sammlungen können bearbeitet werden. Erstellen Sie eine neue Wissensbasis, um Dokumente zu bearbeiten/hinzuzufügen.",
"Only invited users can access": "Nur eingeladene Benutzer haben Zugriff",
"Only markdown files are allowed": "Nur Markdown-Dateien sind erlaubt", "Only markdown files are allowed": "Nur Markdown-Dateien sind erlaubt",
"Only select users and groups with permission can access": "Nur ausgewählte Benutzer und Gruppen mit Berechtigung können darauf zugreifen", "Only select users and groups with permission can access": "Nur ausgewählte Benutzer und Gruppen mit Berechtigung können darauf zugreifen",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "Hoppla! Es scheint, dass die URL ungültig ist. Bitte überprüfen Sie diese und versuchen Sie es erneut.", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Hoppla! Es scheint, dass die URL ungültig ist. Bitte überprüfen Sie diese und versuchen Sie es erneut.",
@ -1219,6 +1241,7 @@
"Personalization": "Personalisierung", "Personalization": "Personalisierung",
"Pin": "Anheften", "Pin": "Anheften",
"Pinned": "Angeheftet", "Pinned": "Angeheftet",
"Pinned Messages": "Angeheftete Nachrichten",
"Pioneer insights": "Bahnbrechende Erkenntnisse", "Pioneer insights": "Bahnbrechende Erkenntnisse",
"Pipe": "Pipe", "Pipe": "Pipe",
"Pipeline deleted successfully": "Pipeline erfolgreich gelöscht", "Pipeline deleted successfully": "Pipeline erfolgreich gelöscht",
@ -1248,7 +1271,7 @@
"Please select a model.": "Bitte wählen Sie ein Modell aus.", "Please select a model.": "Bitte wählen Sie ein Modell aus.",
"Please select a reason": "Bitte wählen Sie einen Grund aus", "Please select a reason": "Bitte wählen Sie einen Grund aus",
"Please select a valid JSON file": "Bitte wählen Sie eine gültige JSON-Datei aus", "Please select a valid JSON file": "Bitte wählen Sie eine gültige JSON-Datei aus",
"Please select at least one user for Direct Message channel.": "", "Please select at least one user for Direct Message channel.": "Bitte wähle mindestens einen Nutzer um einen Direktnachrichten-Kanal zu erstellen.",
"Please wait until all files are uploaded.": "Bitte warten Sie, bis alle Dateien hochgeladen sind.", "Please wait until all files are uploaded.": "Bitte warten Sie, bis alle Dateien hochgeladen sind.",
"Port": "Port", "Port": "Port",
"Positive attitude": "Positive Einstellung", "Positive attitude": "Positive Einstellung",
@ -1261,9 +1284,9 @@
"Previous 7 days": "Vorherige 7 Tage", "Previous 7 days": "Vorherige 7 Tage",
"Previous message": "Vorherige Nachricht", "Previous message": "Vorherige Nachricht",
"Private": "Privat", "Private": "Privat",
"Private conversation between selected users": "Private Unterhaltung zwischen ausgewählten Benutzern",
"Profile": "Profil", "Profile": "Profil",
"Prompt": "Prompt", "Prompt": "Prompt",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (z. B. \"Erzähle mir eine interessante Tatsache über das Römische Reich\")",
"Prompt Autocompletion": "Prompt Autovervollständigung", "Prompt Autocompletion": "Prompt Autovervollständigung",
"Prompt Content": "Prompt-Inhalt", "Prompt Content": "Prompt-Inhalt",
"Prompt created successfully": "Prompt erfolgreich erstellt", "Prompt created successfully": "Prompt erfolgreich erstellt",
@ -1449,6 +1472,7 @@
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Legt die Anzahl der für die Berechnung verwendeten Worker-Threads fest. Diese Option steuert, wie viele Threads zur gleichzeitigen Verarbeitung eingehender Anfragen verwendet werden. Eine Erhöhung dieses Wertes kann die Leistung bei hoher Parallelität verbessern, kann aber mehr CPU-Ressourcen verbrauchen.", "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Legt die Anzahl der für die Berechnung verwendeten Worker-Threads fest. Diese Option steuert, wie viele Threads zur gleichzeitigen Verarbeitung eingehender Anfragen verwendet werden. Eine Erhöhung dieses Wertes kann die Leistung bei hoher Parallelität verbessern, kann aber mehr CPU-Ressourcen verbrauchen.",
"Set Voice": "Stimme festlegen", "Set Voice": "Stimme festlegen",
"Set whisper model": "Whisper-Modell festlegen", "Set whisper model": "Whisper-Modell festlegen",
"Set your status": "Status festlegen",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Legt einen festen Bias gegen Token fest, die mindestens einmal erschienen sind. Ein höherer Wert (z.\u202fB. 1.5) bestraft Wiederholungen stärker, während ein niedrigerer Wert (z.\u202fB. 0.9) nachsichtiger ist. Bei 0 ist die Funktion deaktiviert.", "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Legt einen festen Bias gegen Token fest, die mindestens einmal erschienen sind. Ein höherer Wert (z.\u202fB. 1.5) bestraft Wiederholungen stärker, während ein niedrigerer Wert (z.\u202fB. 0.9) nachsichtiger ist. Bei 0 ist die Funktion deaktiviert.",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Legt einen skalierenden Bias gegen Token fest, um Wiederholungen basierend auf ihrer Häufigkeit zu bestrafen. Ein höherer Wert (z.\u202fB. 1.5) bestraft Wiederholungen stärker, während ein niedrigerer Wert (z.\u202fB. 0.9) nachsichtiger ist. Bei 0 ist die Funktion deaktiviert.", "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Legt einen skalierenden Bias gegen Token fest, um Wiederholungen basierend auf ihrer Häufigkeit zu bestrafen. Ein höherer Wert (z.\u202fB. 1.5) bestraft Wiederholungen stärker, während ein niedrigerer Wert (z.\u202fB. 0.9) nachsichtiger ist. Bei 0 ist die Funktion deaktiviert.",
"Sets how far back for the model to look back to prevent repetition.": "Legt fest, wie weit das Modell zurückblickt, um Wiederholungen zu verhindern.", "Sets how far back for the model to look back to prevent repetition.": "Legt fest, wie weit das Modell zurückblickt, um Wiederholungen zu verhindern.",
@ -1501,6 +1525,9 @@
"Start a new conversation": "Neue Unterhaltung starten", "Start a new conversation": "Neue Unterhaltung starten",
"Start of the channel": "Beginn des Kanals", "Start of the channel": "Beginn des Kanals",
"Start Tag": "Start-Tag", "Start Tag": "Start-Tag",
"Status": "Status",
"Status cleared successfully": "Status erfolgreich gelöscht",
"Status updated successfully": "Status erfolgreich aktualisiert",
"Status Updates": "Statusaktualisierungen", "Status Updates": "Statusaktualisierungen",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Steps": "Schritte", "Steps": "Schritte",
@ -1516,7 +1543,7 @@
"STT Model": "STT-Modell", "STT Model": "STT-Modell",
"STT Settings": "STT-Einstellungen", "STT Settings": "STT-Einstellungen",
"Stylized PDF Export": "Stilisierter PDF-Export", "Stylized PDF Export": "Stilisierter PDF-Export",
"Subtitle (e.g. about the Roman Empire)": "Untertitel (z. B. über das Römische Reich)", "Subtitle": "Untertitel",
"Success": "Erfolg", "Success": "Erfolg",
"Successfully imported {{userCount}} users.": "Erfolgreich {{userCount}} Benutzer importiert.", "Successfully imported {{userCount}} users.": "Erfolgreich {{userCount}} Benutzer importiert.",
"Successfully updated.": "Erfolgreich aktualisiert.", "Successfully updated.": "Erfolgreich aktualisiert.",
@ -1599,7 +1626,6 @@
"Tika Server URL required.": "Tika-Server-URL erforderlich.", "Tika Server URL required.": "Tika-Server-URL erforderlich.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Title": "Titel", "Title": "Titel",
"Title (e.g. Tell me a fun fact)": "Titel (z. B. Erzähl mir einen lustigen Fakt)",
"Title Auto-Generation": "Chat-Titel automatisch generieren", "Title Auto-Generation": "Chat-Titel automatisch generieren",
"Title cannot be an empty string.": "Titel darf nicht leer sein.", "Title cannot be an empty string.": "Titel darf nicht leer sein.",
"Title Generation": "Titelgenerierung", "Title Generation": "Titelgenerierung",
@ -1668,6 +1694,7 @@
"Update and Copy Link": "Aktualisieren und Link kopieren", "Update and Copy Link": "Aktualisieren und Link kopieren",
"Update for the latest features and improvements.": "Aktualisieren Sie für die neuesten Funktionen und Verbesserungen.", "Update for the latest features and improvements.": "Aktualisieren Sie für die neuesten Funktionen und Verbesserungen.",
"Update password": "Passwort aktualisieren", "Update password": "Passwort aktualisieren",
"Update your status": "Aktualisiere deinen Status",
"Updated": "Aktualisiert", "Updated": "Aktualisiert",
"Updated at": "Aktualisiert am", "Updated at": "Aktualisiert am",
"Updated At": "Aktualisiert am", "Updated At": "Aktualisiert am",
@ -1701,7 +1728,7 @@
"User menu": "Benutzermenü", "User menu": "Benutzermenü",
"User Webhooks": "Benutzer Webhooks", "User Webhooks": "Benutzer Webhooks",
"Username": "Benutzername", "Username": "Benutzername",
"users": "", "users": "Nutzer",
"Users": "Benutzer", "Users": "Benutzer",
"Uses DefaultAzureCredential to authenticate": "Verwendet DefaultAzureCredential zur Authentifizierung", "Uses DefaultAzureCredential to authenticate": "Verwendet DefaultAzureCredential zur Authentifizierung",
"Uses OAuth 2.1 Dynamic Client Registration": "Verwendet OAuth 2.1 Dynamic Client Registration", "Uses OAuth 2.1 Dynamic Client Registration": "Verwendet OAuth 2.1 Dynamic Client Registration",
@ -1721,6 +1748,7 @@
"View Replies": "Antworten anzeigen", "View Replies": "Antworten anzeigen",
"View Result from **{{NAME}}**": "Ergebnis von **{{NAME}}** anzeigen", "View Result from **{{NAME}}**": "Ergebnis von **{{NAME}}** anzeigen",
"Visibility": "Sichtbarkeit", "Visibility": "Sichtbarkeit",
"Visible to all users": "Sichtbar für alle Nutzer",
"Vision": "Bilderkennung", "Vision": "Bilderkennung",
"Voice": "Stimme", "Voice": "Stimme",
"Voice Input": "Spracheingabe", "Voice Input": "Spracheingabe",
@ -1748,6 +1776,7 @@
"What are you trying to achieve?": "Was versuchen Sie zu erreichen?", "What are you trying to achieve?": "Was versuchen Sie zu erreichen?",
"What are you working on?": "Woran arbeiten Sie?", "What are you working on?": "Woran arbeiten Sie?",
"What's New in": "Neuigkeiten von", "What's New in": "Neuigkeiten von",
"What's on your mind?": "Was beschäftigt Sie gerade?",
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Wenn aktiviert, antwortet das Modell in Echtzeit auf jede Chat-Nachricht und generiert eine Antwort, sobald der Benutzer eine Nachricht sendet. Dieser Modus ist nützlich für Live-Chat-Anwendungen, kann jedoch die Leistung auf langsamerer Hardware beeinträchtigen.", "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Wenn aktiviert, antwortet das Modell in Echtzeit auf jede Chat-Nachricht und generiert eine Antwort, sobald der Benutzer eine Nachricht sendet. Dieser Modus ist nützlich für Live-Chat-Anwendungen, kann jedoch die Leistung auf langsamerer Hardware beeinträchtigen.",
"wherever you are": "wo immer Sie sind", "wherever you are": "wo immer Sie sind",
"Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Ob die Ausgabe paginiert werden soll. Jede Seite wird durch eine horizontale Linie und eine Seitenzahl getrennt. Standardmäßig deaktiviert.", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Ob die Ausgabe paginiert werden soll. Jede Seite wird durch eine horizontale Linie und eine Seitenzahl getrennt. Standardmäßig deaktiviert.",

View file

@ -18,11 +18,15 @@
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
"{{model}} download has been canceled": "", "{{model}} download has been canceled": "",
"{{NAMES}} reacted with {{REACTION}}": "",
"{{user}}'s Chats": "", "{{user}}'s Chats": "",
"{{webUIName}} Backend Required": "{{webUIName}} Backend Much Required", "{{webUIName}} Backend Required": "{{webUIName}} Backend Much Required",
"*Prompt node ID(s) are required for image generation": "", "*Prompt node ID(s) are required for image generation": "",
"1 Source": "", "1 Source": "",
"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.": "", "A new version (v{{LATEST_VERSION}}) is now available.": "",
"A private conversation between you and selected users": "",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "", "A task model is used when performing tasks such as generating titles for chats and web search queries": "",
"a user": "such user", "a user": "such user",
"About": "Much About", "About": "Much About",
@ -53,7 +57,8 @@
"Add Custom Prompt": "", "Add Custom Prompt": "",
"Add Details": "", "Add Details": "",
"Add Files": "Add Files", "Add Files": "Add Files",
"Add Group": "", "Add Member": "",
"Add Members": "",
"Add Memory": "", "Add Memory": "",
"Add Model": "", "Add Model": "",
"Add Reaction": "", "Add Reaction": "",
@ -252,6 +257,7 @@
"Citations": "", "Citations": "",
"Clear memory": "", "Clear memory": "",
"Clear Memory": "", "Clear Memory": "",
"Clear status": "",
"click here": "", "click here": "",
"Click here for filter guides.": "", "Click here for filter guides.": "",
"Click here for help.": "Click for help. Much assist.", "Click here for help.": "Click for help. Much assist.",
@ -288,6 +294,7 @@
"Code Interpreter": "", "Code Interpreter": "",
"Code Interpreter Engine": "", "Code Interpreter Engine": "",
"Code Interpreter Prompt Template": "", "Code Interpreter Prompt Template": "",
"Collaboration channel where people join as members": "",
"Collapse": "", "Collapse": "",
"Collection": "Collection", "Collection": "Collection",
"Color": "", "Color": "",
@ -447,6 +454,7 @@
"Discover, download, and explore custom prompts": "Discover, download, and explore custom prompts", "Discover, download, and explore custom prompts": "Discover, download, and explore custom prompts",
"Discover, download, and explore custom tools": "", "Discover, download, and explore custom tools": "",
"Discover, download, and explore model presets": "Discover, download, and explore model presets", "Discover, download, and explore model presets": "Discover, download, and explore model presets",
"Discussion channel where access is based on groups and permissions": "",
"Display": "", "Display": "",
"Display chat title in tab": "", "Display chat title in tab": "",
"Display Emoji in Call": "", "Display Emoji in Call": "",
@ -463,6 +471,7 @@
"Document": "Document", "Document": "Document",
"Document Intelligence": "", "Document Intelligence": "",
"Document Intelligence endpoint required.": "", "Document Intelligence endpoint required.": "",
"Document Intelligence Model": "",
"Documentation": "", "Documentation": "",
"Documents": "Documents", "Documents": "Documents",
"does not make any external connections, and your data stays securely on your locally hosted server.": "does not connect external, data stays safe locally.", "does not make any external connections, and your data stays securely on your locally hosted server.": "does not connect external, data stays safe locally.",
@ -485,12 +494,15 @@
"e.g. \"json\" or a JSON schema": "", "e.g. \"json\" or a JSON schema": "",
"e.g. 60": "", "e.g. 60": "",
"e.g. A filter to remove profanity from text": "", "e.g. A filter to remove profanity from text": "",
"e.g. about the Roman Empire": "",
"e.g. en": "", "e.g. en": "",
"e.g. My Filter": "", "e.g. My Filter": "",
"e.g. My Tools": "", "e.g. My Tools": "",
"e.g. my_filter": "", "e.g. my_filter": "",
"e.g. my_tools": "", "e.g. my_tools": "",
"e.g. pdf, docx, txt": "", "e.g. pdf, docx, txt": "",
"e.g. Tell me a fun fact": "",
"e.g. Tell me a fun fact about the Roman Empire": "",
"e.g. Tools for performing various operations": "", "e.g. Tools for performing various operations": "",
"e.g., 3, 4, 5 (leave blank for default)": "", "e.g., 3, 4, 5 (leave blank for default)": "",
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "", "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
@ -564,6 +576,7 @@
"Enter Docling Server URL": "", "Enter Docling Server URL": "",
"Enter Document Intelligence Endpoint": "", "Enter Document Intelligence Endpoint": "",
"Enter Document Intelligence Key": "", "Enter Document Intelligence Key": "",
"Enter Document Intelligence Model": "",
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "", "Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
"Enter Exa API Key": "", "Enter Exa API Key": "",
"Enter External Document Loader API Key": "", "Enter External Document Loader API Key": "",
@ -689,7 +702,6 @@
"Export Config to JSON File": "", "Export Config to JSON File": "",
"Export Models": "", "Export Models": "",
"Export Presets": "", "Export Presets": "",
"Export Prompt Suggestions": "",
"Export Prompts": "", "Export Prompts": "",
"Export to CSV": "", "Export to CSV": "",
"Export Tools": "", "Export Tools": "",
@ -704,6 +716,8 @@
"External Web Search URL": "", "External Web Search URL": "",
"Fade Effect for Streaming Text": "", "Fade Effect for Streaming Text": "",
"Failed to add file.": "", "Failed to add file.": "",
"Failed to add members": "",
"Failed to clear status": "",
"Failed to connect to {{URL}} OpenAPI tool server": "", "Failed to connect to {{URL}} OpenAPI tool server": "",
"Failed to copy link": "", "Failed to copy link": "",
"Failed to create API Key.": "", "Failed to create API Key.": "",
@ -717,12 +731,14 @@
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to read clipboard contents": "Failed to read clipboard borks", "Failed to read clipboard contents": "Failed to read clipboard borks",
"Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
"Failed to render visualization": "", "Failed to render visualization": "",
"Failed to save connections": "", "Failed to save connections": "",
"Failed to save conversation": "Failed to save conversation borks", "Failed to save conversation": "Failed to save conversation borks",
"Failed to save models configuration": "", "Failed to save models configuration": "",
"Failed to update settings": "", "Failed to update settings": "",
"Failed to update status": "",
"Failed to upload file.": "", "Failed to upload file.": "",
"Features": "", "Features": "",
"Features Permissions": "", "Features Permissions": "",
@ -816,11 +832,13 @@
"Google PSE Engine Id": "", "Google PSE Engine Id": "",
"Gravatar": "", "Gravatar": "",
"Group": "Much group", "Group": "Much group",
"Group Channel": "",
"Group created successfully": "", "Group created successfully": "",
"Group deleted successfully": "", "Group deleted successfully": "",
"Group Description": "", "Group Description": "",
"Group Name": "", "Group Name": "",
"Group updated successfully": "", "Group updated successfully": "",
"groups": "",
"Groups": "", "Groups": "",
"H1": "", "H1": "",
"H2": "", "H2": "",
@ -875,7 +893,6 @@
"Import Models": "", "Import Models": "",
"Import Notes": "", "Import Notes": "",
"Import Presets": "", "Import Presets": "",
"Import Prompt Suggestions": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
"Import Tools": "", "Import Tools": "",
@ -1011,6 +1028,9 @@
"MCP": "", "MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Medium": "", "Medium": "",
"Member removed successfully": "",
"Members": "",
"Members added successfully": "",
"Memories accessible by LLMs will be shown here.": "", "Memories accessible by LLMs will be shown here.": "",
"Memory": "", "Memory": "",
"Memory added successfully": "", "Memory added successfully": "",
@ -1110,6 +1130,7 @@
"No models selected": "", "No models selected": "",
"No Notes": "", "No Notes": "",
"No notes found": "", "No notes found": "",
"No pinned messages": "",
"No prompts found": "", "No prompts found": "",
"No results": "No results, very empty", "No results": "No results, very empty",
"No results found": "", "No results found": "",
@ -1157,6 +1178,7 @@
"Only alphanumeric characters and hyphens are allowed in the command string.": "Only wow characters and hyphens are allowed in the bork string.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Only wow characters and hyphens are allowed in the bork string.",
"Only can be triggered when the chat input is in focus.": "", "Only can be triggered when the chat input is in focus.": "",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "", "Only collections can be edited, create a new knowledge base to edit/add documents.": "",
"Only invited users can access": "",
"Only markdown files are allowed": "", "Only markdown files are allowed": "",
"Only select users and groups with permission can access": "", "Only select users and groups with permission can access": "",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "Oops! Looks like the URL is invalid. Please double-check and try again.", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Oops! Looks like the URL is invalid. Please double-check and try again.",
@ -1219,6 +1241,7 @@
"Personalization": "Personalization", "Personalization": "Personalization",
"Pin": "", "Pin": "",
"Pinned": "", "Pinned": "",
"Pinned Messages": "",
"Pioneer insights": "", "Pioneer insights": "",
"Pipe": "", "Pipe": "",
"Pipeline deleted successfully": "", "Pipeline deleted successfully": "",
@ -1261,9 +1284,9 @@
"Previous 7 days": "", "Previous 7 days": "",
"Previous message": "", "Previous message": "",
"Private": "", "Private": "",
"Private conversation between selected users": "",
"Profile": "Such profile", "Profile": "Such profile",
"Prompt": "", "Prompt": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "",
"Prompt Autocompletion": "", "Prompt Autocompletion": "",
"Prompt Content": "Prompt Content", "Prompt Content": "Prompt Content",
"Prompt created successfully": "", "Prompt created successfully": "",
@ -1449,6 +1472,7 @@
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "", "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
"Set Voice": "Set Voice so speak", "Set Voice": "Set Voice so speak",
"Set whisper model": "", "Set whisper model": "",
"Set your status": "",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "", "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "", "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets how far back for the model to look back to prevent repetition.": "", "Sets how far back for the model to look back to prevent repetition.": "",
@ -1501,6 +1525,9 @@
"Start a new conversation": "", "Start a new conversation": "",
"Start of the channel": "Start of channel", "Start of the channel": "Start of channel",
"Start Tag": "", "Start Tag": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Steps": "", "Steps": "",
@ -1516,7 +1543,7 @@
"STT Model": "", "STT Model": "",
"STT Settings": "STT Settings very settings", "STT Settings": "STT Settings very settings",
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "", "Subtitle": "",
"Success": "Success very success", "Success": "Success very success",
"Successfully imported {{userCount}} users.": "", "Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Successfully updated. Very updated.", "Successfully updated.": "Successfully updated. Very updated.",
@ -1599,7 +1626,6 @@
"Tika Server URL required.": "", "Tika Server URL required.": "",
"Tiktoken": "", "Tiktoken": "",
"Title": "Title very title", "Title": "Title very title",
"Title (e.g. Tell me a fun fact)": "",
"Title Auto-Generation": "Title Auto-Generation much auto-gen", "Title Auto-Generation": "Title Auto-Generation much auto-gen",
"Title cannot be an empty string.": "", "Title cannot be an empty string.": "",
"Title Generation": "", "Title Generation": "",
@ -1668,6 +1694,7 @@
"Update and Copy Link": "", "Update and Copy Link": "",
"Update for the latest features and improvements.": "", "Update for the latest features and improvements.": "",
"Update password": "Update password much change", "Update password": "Update password much change",
"Update your status": "",
"Updated": "", "Updated": "",
"Updated at": "", "Updated at": "",
"Updated At": "", "Updated At": "",
@ -1721,6 +1748,7 @@
"View Replies": "", "View Replies": "",
"View Result from **{{NAME}}**": "", "View Result from **{{NAME}}**": "",
"Visibility": "", "Visibility": "",
"Visible to all users": "",
"Vision": "", "Vision": "",
"Voice": "", "Voice": "",
"Voice Input": "", "Voice Input": "",
@ -1748,6 +1776,7 @@
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"What's New in": "What's New in much new", "What's New in": "What's New in much new",
"What's on your mind?": "",
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "", "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
"wherever you are": "", "wherever you are": "",
"Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "",

View file

@ -18,11 +18,15 @@
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
"{{model}} download has been canceled": "", "{{model}} download has been canceled": "",
"{{NAMES}} reacted with {{REACTION}}": "",
"{{user}}'s Chats": "Συνομιλίες του {{user}}", "{{user}}'s Chats": "Συνομιλίες του {{user}}",
"{{webUIName}} Backend Required": "{{webUIName}} Απαιτείται Backend", "{{webUIName}} Backend Required": "{{webUIName}} Απαιτείται Backend",
"*Prompt node ID(s) are required for image generation": "*Τα αναγνωριστικά κόμβου Prompt απαιτούνται για τη δημιουργία εικόνων", "*Prompt node ID(s) are required for image generation": "*Τα αναγνωριστικά κόμβου Prompt απαιτούνται για τη δημιουργία εικόνων",
"1 Source": "", "1 Source": "",
"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}}) είναι τώρα διαθέσιμη.", "A new version (v{{LATEST_VERSION}}) is now available.": "Μια νέα έκδοση (v{{LATEST_VERSION}}) είναι τώρα διαθέσιμη.",
"A private conversation between you and selected users": "",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Ένα μοντέλο εργασίας χρησιμοποιείται κατά την εκτέλεση εργασιών όπως η δημιουργία τίτλων για συνομιλίες και αναζητήσεις στο διαδίκτυο", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Ένα μοντέλο εργασίας χρησιμοποιείται κατά την εκτέλεση εργασιών όπως η δημιουργία τίτλων για συνομιλίες και αναζητήσεις στο διαδίκτυο",
"a user": "ένας χρήστης", "a user": "ένας χρήστης",
"About": "Σχετικά", "About": "Σχετικά",
@ -53,7 +57,8 @@
"Add Custom Prompt": "", "Add Custom Prompt": "",
"Add Details": "", "Add Details": "",
"Add Files": "Προσθήκη Αρχείων", "Add Files": "Προσθήκη Αρχείων",
"Add Group": "Προσθήκη Ομάδας", "Add Member": "",
"Add Members": "",
"Add Memory": "Προσθήκη Μνήμης", "Add Memory": "Προσθήκη Μνήμης",
"Add Model": "Προσθήκη Μοντέλου", "Add Model": "Προσθήκη Μοντέλου",
"Add Reaction": "", "Add Reaction": "",
@ -252,6 +257,7 @@
"Citations": "Παραπομπές", "Citations": "Παραπομπές",
"Clear memory": "Καθαρισμός μνήμης", "Clear memory": "Καθαρισμός μνήμης",
"Clear Memory": "", "Clear Memory": "",
"Clear status": "",
"click here": "κλικ εδώ", "click here": "κλικ εδώ",
"Click here for filter guides.": "Κάντε κλικ εδώ για οδηγούς φίλτρων.", "Click here for filter guides.": "Κάντε κλικ εδώ για οδηγούς φίλτρων.",
"Click here for help.": "Κάντε κλικ εδώ για βοήθεια.", "Click here for help.": "Κάντε κλικ εδώ για βοήθεια.",
@ -288,6 +294,7 @@
"Code Interpreter": "Διερμηνέας Κώδικα", "Code Interpreter": "Διερμηνέας Κώδικα",
"Code Interpreter Engine": "Μηχανή Διερμηνέα Κώδικα", "Code Interpreter Engine": "Μηχανή Διερμηνέα Κώδικα",
"Code Interpreter Prompt Template": "Πρότυπο Προτροπής Διερμηνέα Κώδικα", "Code Interpreter Prompt Template": "Πρότυπο Προτροπής Διερμηνέα Κώδικα",
"Collaboration channel where people join as members": "",
"Collapse": "Σύμπτυξη", "Collapse": "Σύμπτυξη",
"Collection": "Συλλογή", "Collection": "Συλλογή",
"Color": "Χρώμα", "Color": "Χρώμα",
@ -447,6 +454,7 @@
"Discover, download, and explore custom prompts": "Ανακαλύψτε, κατεβάστε και εξερευνήστε προσαρμοσμένες προτροπές", "Discover, download, and explore custom prompts": "Ανακαλύψτε, κατεβάστε και εξερευνήστε προσαρμοσμένες προτροπές",
"Discover, download, and explore custom tools": "Ανακαλύψτε, κατεβάστε και εξερευνήστε προσαρμοσμένα εργαλεία", "Discover, download, and explore custom tools": "Ανακαλύψτε, κατεβάστε και εξερευνήστε προσαρμοσμένα εργαλεία",
"Discover, download, and explore model presets": "Ανακαλύψτε, κατεβάστε και εξερευνήστε προκαθορισμένα μοντέλα", "Discover, download, and explore model presets": "Ανακαλύψτε, κατεβάστε και εξερευνήστε προκαθορισμένα μοντέλα",
"Discussion channel where access is based on groups and permissions": "",
"Display": "Εμφάνιση", "Display": "Εμφάνιση",
"Display chat title in tab": "Εμφάνιση τίτλου συνομιλίας στην καρτέλα", "Display chat title in tab": "Εμφάνιση τίτλου συνομιλίας στην καρτέλα",
"Display Emoji in Call": "Εμφάνιση Emoji στην Κλήση", "Display Emoji in Call": "Εμφάνιση Emoji στην Κλήση",
@ -463,6 +471,7 @@
"Document": "Έγγραφο", "Document": "Έγγραφο",
"Document Intelligence": "", "Document Intelligence": "",
"Document Intelligence endpoint required.": "Απαιτείται το endpoint του Document Intelligence.", "Document Intelligence endpoint required.": "Απαιτείται το endpoint του Document Intelligence.",
"Document Intelligence Model": "",
"Documentation": "Τεκμηρίωση", "Documentation": "Τεκμηρίωση",
"Documents": "Έγγραφα", "Documents": "Έγγραφα",
"does not make any external connections, and your data stays securely on your locally hosted server.": "δεν κάνει καμία εξωτερική σύνδεση, και τα δεδομένα σας παραμένουν ασφαλή στον τοπικά φιλοξενούμενο διακομιστή σας.", "does not make any external connections, and your data stays securely on your locally hosted server.": "δεν κάνει καμία εξωτερική σύνδεση, και τα δεδομένα σας παραμένουν ασφαλή στον τοπικά φιλοξενούμενο διακομιστή σας.",
@ -485,12 +494,15 @@
"e.g. \"json\" or a JSON schema": "π.χ. \"json\" ή ένα JSON σχήμα", "e.g. \"json\" or a JSON schema": "π.χ. \"json\" ή ένα JSON σχήμα",
"e.g. 60": "π.χ. 60", "e.g. 60": "π.χ. 60",
"e.g. A filter to remove profanity from text": "π.χ. Ένα φίλτρο για να αφαιρέσετε βρισιές από το κείμενο", "e.g. A filter to remove profanity from text": "π.χ. Ένα φίλτρο για να αφαιρέσετε βρισιές από το κείμενο",
"e.g. about the Roman Empire": "",
"e.g. en": "π.χ. en", "e.g. en": "π.χ. en",
"e.g. My Filter": "π.χ. Το Φίλτρο Μου", "e.g. My Filter": "π.χ. Το Φίλτρο Μου",
"e.g. My Tools": "π.χ. Τα Εργαλεία Μου", "e.g. My Tools": "π.χ. Τα Εργαλεία Μου",
"e.g. my_filter": "π.χ. my_filter", "e.g. my_filter": "π.χ. my_filter",
"e.g. my_tools": "π.χ. my_tools", "e.g. my_tools": "π.χ. my_tools",
"e.g. pdf, docx, txt": "π.χ. pdf, docx, txt", "e.g. pdf, docx, txt": "π.χ. pdf, docx, txt",
"e.g. Tell me a fun fact": "",
"e.g. Tell me a fun fact about the Roman Empire": "",
"e.g. Tools for performing various operations": "π.χ. Εργαλεία για την εκτέλεση διάφορων λειτουργιών", "e.g. Tools for performing various operations": "π.χ. Εργαλεία για την εκτέλεση διάφορων λειτουργιών",
"e.g., 3, 4, 5 (leave blank for default)": "π.χ. 3, 4, 5 (αφήστε κενό για προεπιλογή)", "e.g., 3, 4, 5 (leave blank for default)": "π.χ. 3, 4, 5 (αφήστε κενό για προεπιλογή)",
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "π.χ. audio/wav,audio/mpeg,video/* (αφήστε κενό για προεπιλογή)", "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "π.χ. audio/wav,audio/mpeg,video/* (αφήστε κενό για προεπιλογή)",
@ -564,6 +576,7 @@
"Enter Docling Server URL": "", "Enter Docling Server URL": "",
"Enter Document Intelligence Endpoint": "", "Enter Document Intelligence Endpoint": "",
"Enter Document Intelligence Key": "", "Enter Document Intelligence Key": "",
"Enter Document Intelligence Model": "",
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "", "Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
"Enter Exa API Key": "", "Enter Exa API Key": "",
"Enter External Document Loader API Key": "Εισάγετε το API κλειδί του εξωτερικού προγράμματος φόρτωσης εγγράφων", "Enter External Document Loader API Key": "Εισάγετε το API κλειδί του εξωτερικού προγράμματος φόρτωσης εγγράφων",
@ -689,7 +702,6 @@
"Export Config to JSON File": "Εξαγωγή Διαμόρφωσης σε Αρχείο JSON", "Export Config to JSON File": "Εξαγωγή Διαμόρφωσης σε Αρχείο JSON",
"Export Models": "", "Export Models": "",
"Export Presets": "Εξαγωγή Προκαθορισμένων", "Export Presets": "Εξαγωγή Προκαθορισμένων",
"Export Prompt Suggestions": "Εξαγωγή Προτεινόμενων Προτροπών",
"Export Prompts": "", "Export Prompts": "",
"Export to CSV": "Εξαγωγή σε CSV", "Export to CSV": "Εξαγωγή σε CSV",
"Export Tools": "", "Export Tools": "",
@ -704,6 +716,8 @@
"External Web Search URL": "URL του εξωτερικού διακομιστή αναζήτησης", "External Web Search URL": "URL του εξωτερικού διακομιστή αναζήτησης",
"Fade Effect for Streaming Text": "", "Fade Effect for Streaming Text": "",
"Failed to add file.": "Αποτυχία προσθήκης αρχείου.", "Failed to add file.": "Αποτυχία προσθήκης αρχείου.",
"Failed to add members": "",
"Failed to clear status": "",
"Failed to connect to {{URL}} OpenAPI tool server": "Αποτυχία σύνδεσης στο διακομιστή εργαλείων OpenAPI {{URL}}", "Failed to connect to {{URL}} OpenAPI tool server": "Αποτυχία σύνδεσης στο διακομιστή εργαλείων OpenAPI {{URL}}",
"Failed to copy link": "Αποτυχία αντιγραφής συνδέσμου", "Failed to copy link": "Αποτυχία αντιγραφής συνδέσμου",
"Failed to create API Key.": "Αποτυχία δημιουργίας Κλειδιού API.", "Failed to create API Key.": "Αποτυχία δημιουργίας Κλειδιού API.",
@ -717,12 +731,14 @@
"Failed to load file content.": "Αποτυχία φόρτωσης περιεχομένου αρχείου", "Failed to load file content.": "Αποτυχία φόρτωσης περιεχομένου αρχείου",
"Failed to move chat": "Αποτυχία μετακίνησης συνομιλίας", "Failed to move chat": "Αποτυχία μετακίνησης συνομιλίας",
"Failed to read clipboard contents": "Αποτυχία ανάγνωσης περιεχομένων πρόχειρου", "Failed to read clipboard contents": "Αποτυχία ανάγνωσης περιεχομένων πρόχειρου",
"Failed to remove member": "",
"Failed to render diagram": "Αποτυχία απεικόνισης διαγράμματος", "Failed to render diagram": "Αποτυχία απεικόνισης διαγράμματος",
"Failed to render visualization": "", "Failed to render visualization": "",
"Failed to save connections": "Αποτυχία αποθήκευσης συνδέσεων", "Failed to save connections": "Αποτυχία αποθήκευσης συνδέσεων",
"Failed to save conversation": "Αποτυχία αποθήκευσης συνομιλίας", "Failed to save conversation": "Αποτυχία αποθήκευσης συνομιλίας",
"Failed to save models configuration": "Αποτυχία αποθήκευσης ρυθμίσεων μοντέλων", "Failed to save models configuration": "Αποτυχία αποθήκευσης ρυθμίσεων μοντέλων",
"Failed to update settings": "Αποτυχία ενημέρωσης ρυθμίσεων", "Failed to update settings": "Αποτυχία ενημέρωσης ρυθμίσεων",
"Failed to update status": "",
"Failed to upload file.": "Αποτυχία ανεβάσματος αρχείου.", "Failed to upload file.": "Αποτυχία ανεβάσματος αρχείου.",
"Features": "Λειτουργίες", "Features": "Λειτουργίες",
"Features Permissions": "", "Features Permissions": "",
@ -816,11 +832,13 @@
"Google PSE Engine Id": "Αναγνωριστικό Μηχανής Google PSE", "Google PSE Engine Id": "Αναγνωριστικό Μηχανής Google PSE",
"Gravatar": "", "Gravatar": "",
"Group": "Ομάδα", "Group": "Ομάδα",
"Group Channel": "",
"Group created successfully": "Η ομάδα δημιουργήθηκε με επιτυχία", "Group created successfully": "Η ομάδα δημιουργήθηκε με επιτυχία",
"Group deleted successfully": "Η ομάδα διαγράφηκε με επιτυχία", "Group deleted successfully": "Η ομάδα διαγράφηκε με επιτυχία",
"Group Description": "Περιγραφή Ομάδας", "Group Description": "Περιγραφή Ομάδας",
"Group Name": "Όνομα Ομάδας", "Group Name": "Όνομα Ομάδας",
"Group updated successfully": "Η ομάδα ενημερώθηκε με επιτυχία", "Group updated successfully": "Η ομάδα ενημερώθηκε με επιτυχία",
"groups": "",
"Groups": "Ομάδες", "Groups": "Ομάδες",
"H1": "", "H1": "",
"H2": "", "H2": "",
@ -875,7 +893,6 @@
"Import Models": "", "Import Models": "",
"Import Notes": "", "Import Notes": "",
"Import Presets": "Εισαγωγή Προκαθορισμένων", "Import Presets": "Εισαγωγή Προκαθορισμένων",
"Import Prompt Suggestions": "Εισαγωγή Προτεινόμενων Προτροπών",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "Εισαγωγή επιτυχής", "Import successful": "Εισαγωγή επιτυχής",
"Import Tools": "", "Import Tools": "",
@ -1011,6 +1028,9 @@
"MCP": "", "MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Medium": "", "Medium": "",
"Member removed successfully": "",
"Members": "",
"Members added successfully": "",
"Memories accessible by LLMs will be shown here.": "Οι αναμνήσεις προσβάσιμες από τα LLMs θα εμφανιστούν εδώ.", "Memories accessible by LLMs will be shown here.": "Οι αναμνήσεις προσβάσιμες από τα LLMs θα εμφανιστούν εδώ.",
"Memory": "Μνήμη", "Memory": "Μνήμη",
"Memory added successfully": "Η μνήμη προστέθηκε με επιτυχία", "Memory added successfully": "Η μνήμη προστέθηκε με επιτυχία",
@ -1110,6 +1130,7 @@
"No models selected": "Δεν έχουν επιλεγεί μοντέλα", "No models selected": "Δεν έχουν επιλεγεί μοντέλα",
"No Notes": "", "No Notes": "",
"No notes found": "Δεν βρέθηκαν σημειώσεις", "No notes found": "Δεν βρέθηκαν σημειώσεις",
"No pinned messages": "",
"No prompts found": "Δεν βρέθηκαν προτροπές", "No prompts found": "Δεν βρέθηκαν προτροπές",
"No results": "Δεν βρέθηκαν αποτελέσματα", "No results": "Δεν βρέθηκαν αποτελέσματα",
"No results found": "Δεν βρέθηκαν αποτελέσματα", "No results found": "Δεν βρέθηκαν αποτελέσματα",
@ -1157,6 +1178,7 @@
"Only alphanumeric characters and hyphens are allowed in the command string.": "Επιτρέπονται μόνο αλφαριθμητικοί χαρακτήρες και παύλες στο string της εντολής.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Επιτρέπονται μόνο αλφαριθμητικοί χαρακτήρες και παύλες στο string της εντολής.",
"Only can be triggered when the chat input is in focus.": "", "Only can be triggered when the chat input is in focus.": "",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Μόνο συλλογές μπορούν να επεξεργαστούν, δημιουργήστε μια νέα βάση γνώσης για επεξεργασία/προσθήκη εγγράφων.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Μόνο συλλογές μπορούν να επεξεργαστούν, δημιουργήστε μια νέα βάση γνώσης για επεξεργασία/προσθήκη εγγράφων.",
"Only invited users can access": "",
"Only markdown files are allowed": "", "Only markdown files are allowed": "",
"Only select users and groups with permission can access": "Μόνο επιλεγμένοι χρήστες και ομάδες με άδεια μπορούν να έχουν πρόσβαση", "Only select users and groups with permission can access": "Μόνο επιλεγμένοι χρήστες και ομάδες με άδεια μπορούν να έχουν πρόσβαση",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "Ωχ! Φαίνεται ότι το URL είναι μη έγκυρο. Παρακαλώ ελέγξτε ξανά και δοκιμάστε.", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Ωχ! Φαίνεται ότι το URL είναι μη έγκυρο. Παρακαλώ ελέγξτε ξανά και δοκιμάστε.",
@ -1219,6 +1241,7 @@
"Personalization": "Προσωποποίηση", "Personalization": "Προσωποποίηση",
"Pin": "Καρφίτσωμα", "Pin": "Καρφίτσωμα",
"Pinned": "Καρφιτσωμένο", "Pinned": "Καρφιτσωμένο",
"Pinned Messages": "",
"Pioneer insights": "Συμβουλές πρωτοπόρων", "Pioneer insights": "Συμβουλές πρωτοπόρων",
"Pipe": "", "Pipe": "",
"Pipeline deleted successfully": "Η συνάρτηση διαγράφηκε με επιτυχία", "Pipeline deleted successfully": "Η συνάρτηση διαγράφηκε με επιτυχία",
@ -1261,9 +1284,9 @@
"Previous 7 days": "Προηγούμενες 7 ημέρες", "Previous 7 days": "Προηγούμενες 7 ημέρες",
"Previous message": "Προηγούμενο μήνυμα", "Previous message": "Προηγούμενο μήνυμα",
"Private": "Ιδιωτικό", "Private": "Ιδιωτικό",
"Private conversation between selected users": "",
"Profile": "Προφίλ", "Profile": "Προφίλ",
"Prompt": "Προτροπή", "Prompt": "Προτροπή",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Προτροπή (π.χ. Πες μου ένα διασκεδαστικό γεγονός για την Ρωμαϊκή Αυτοκρατορία)",
"Prompt Autocompletion": "Αυτόματη συμπλήρωση προτροπής", "Prompt Autocompletion": "Αυτόματη συμπλήρωση προτροπής",
"Prompt Content": "Περιεχόμενο Προτροπής", "Prompt Content": "Περιεχόμενο Προτροπής",
"Prompt created successfully": "Η προτροπή δημιουργήθηκε με επιτυχία", "Prompt created successfully": "Η προτροπή δημιουργήθηκε με επιτυχία",
@ -1449,6 +1472,7 @@
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Ορισμός του αριθμού των νημάτων εργασίας που χρησιμοποιούνται για υπολογισμούς. Αυτή η επιλογή ελέγχει πόσα νήματα χρησιμοποιούνται για την επεξεργασία των εισερχόμενων αιτημάτων ταυτόχρονα. Η αύξηση αυτής της τιμής μπορεί να βελτιώσει την απόδοση σε εργασίες υψηλής συγχρονισμένης φόρτωσης αλλά μπορεί επίσης να καταναλώσει περισσότερους πόρους CPU.", "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Ορισμός του αριθμού των νημάτων εργασίας που χρησιμοποιούνται για υπολογισμούς. Αυτή η επιλογή ελέγχει πόσα νήματα χρησιμοποιούνται για την επεξεργασία των εισερχόμενων αιτημάτων ταυτόχρονα. Η αύξηση αυτής της τιμής μπορεί να βελτιώσει την απόδοση σε εργασίες υψηλής συγχρονισμένης φόρτωσης αλλά μπορεί επίσης να καταναλώσει περισσότερους πόρους CPU.",
"Set Voice": "Ορισμός Φωνής", "Set Voice": "Ορισμός Φωνής",
"Set whisper model": "Ορισμός μοντέλου whisper", "Set whisper model": "Ορισμός μοντέλου whisper",
"Set your status": "",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "", "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "", "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets how far back for the model to look back to prevent repetition.": "", "Sets how far back for the model to look back to prevent repetition.": "",
@ -1501,6 +1525,9 @@
"Start a new conversation": "", "Start a new conversation": "",
"Start of the channel": "Αρχή του καναλιού", "Start of the channel": "Αρχή του καναλιού",
"Start Tag": "", "Start Tag": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Steps": "", "Steps": "",
@ -1516,7 +1543,7 @@
"STT Model": "Μοντέλο Μετατροπής Ομιλίας σε Κείμενο", "STT Model": "Μοντέλο Μετατροπής Ομιλίας σε Κείμενο",
"STT Settings": "Ρυθμίσεις Μετατροπής Ομιλίας σε Κείμενο", "STT Settings": "Ρυθμίσεις Μετατροπής Ομιλίας σε Κείμενο",
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Υπότιτλος (π.χ. για την Ρωμαϊκή Αυτοκρατορία)", "Subtitle": "",
"Success": "Επιτυχία", "Success": "Επιτυχία",
"Successfully imported {{userCount}} users.": "", "Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Επιτυχώς ενημερώθηκε.", "Successfully updated.": "Επιτυχώς ενημερώθηκε.",
@ -1599,7 +1626,6 @@
"Tika Server URL required.": "Απαιτείται το URL διακομιστή Tika.", "Tika Server URL required.": "Απαιτείται το URL διακομιστή Tika.",
"Tiktoken": "", "Tiktoken": "",
"Title": "Τίτλος", "Title": "Τίτλος",
"Title (e.g. Tell me a fun fact)": "Τίτλος (π.χ. Πες μου ένα διασκεδαστικό γεγονός)",
"Title Auto-Generation": "Αυτόματη Γενιά Τίτλων", "Title Auto-Generation": "Αυτόματη Γενιά Τίτλων",
"Title cannot be an empty string.": "Ο τίτλος δεν μπορεί να είναι κενή συμβολοσειρά.", "Title cannot be an empty string.": "Ο τίτλος δεν μπορεί να είναι κενή συμβολοσειρά.",
"Title Generation": "Δημιουργία Τίτλου", "Title Generation": "Δημιουργία Τίτλου",
@ -1668,6 +1694,7 @@
"Update and Copy Link": "Ενημέρωση και Αντιγραφή Συνδέσμου", "Update and Copy Link": "Ενημέρωση και Αντιγραφή Συνδέσμου",
"Update for the latest features and improvements.": "Ενημερωθείτε για τις τελευταίες λειτουργίες και βελτιώσεις.", "Update for the latest features and improvements.": "Ενημερωθείτε για τις τελευταίες λειτουργίες και βελτιώσεις.",
"Update password": "Ενημέρωση κωδικού", "Update password": "Ενημέρωση κωδικού",
"Update your status": "",
"Updated": "Ενημερώθηκε", "Updated": "Ενημερώθηκε",
"Updated at": "Ενημερώθηκε στις", "Updated at": "Ενημερώθηκε στις",
"Updated At": "Ενημερώθηκε στις", "Updated At": "Ενημερώθηκε στις",
@ -1721,6 +1748,7 @@
"View Replies": "Προβολή Απαντήσεων", "View Replies": "Προβολή Απαντήσεων",
"View Result from **{{NAME}}**": "Προβολή Αποτελέσματος από **{{NAME}}**", "View Result from **{{NAME}}**": "Προβολή Αποτελέσματος από **{{NAME}}**",
"Visibility": "Ορατότητα", "Visibility": "Ορατότητα",
"Visible to all users": "",
"Vision": "Όραση", "Vision": "Όραση",
"Voice": "Φωνή", "Voice": "Φωνή",
"Voice Input": "Εισαγωγή Φωνής", "Voice Input": "Εισαγωγή Φωνής",
@ -1748,6 +1776,7 @@
"What are you trying to achieve?": "Τι προσπαθείτε να πετύχετε?", "What are you trying to achieve?": "Τι προσπαθείτε να πετύχετε?",
"What are you working on?": "Τι εργάζεστε;", "What are you working on?": "Τι εργάζεστε;",
"What's New in": "Τι νέο υπάρχει στο", "What's New in": "Τι νέο υπάρχει στο",
"What's on your mind?": "",
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Όταν ενεργοποιηθεί, το μοντέλο θα ανταποκρίνεται σε κάθε μήνυμα συνομιλίας σε πραγματικό χρόνο, δημιουργώντας μια απάντηση μόλις ο χρήστης στείλει ένα μήνυμα. Αυτή η λειτουργία είναι χρήσιμη για εφαρμογές ζωντανής συνομιλίας, αλλά μπορεί να επηρεάσει την απόδοση σε πιο αργό υλικό.", "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Όταν ενεργοποιηθεί, το μοντέλο θα ανταποκρίνεται σε κάθε μήνυμα συνομιλίας σε πραγματικό χρόνο, δημιουργώντας μια απάντηση μόλις ο χρήστης στείλει ένα μήνυμα. Αυτή η λειτουργία είναι χρήσιμη για εφαρμογές ζωντανής συνομιλίας, αλλά μπορεί να επηρεάσει την απόδοση σε πιο αργό υλικό.",
"wherever you are": "οπουδήποτε βρίσκεστε", "wherever you are": "οπουδήποτε βρίσκεστε",
"Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "",

View file

@ -18,11 +18,15 @@
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
"{{model}} download has been canceled": "", "{{model}} download has been canceled": "",
"{{NAMES}} reacted with {{REACTION}}": "",
"{{user}}'s Chats": "", "{{user}}'s Chats": "",
"{{webUIName}} Backend Required": "", "{{webUIName}} Backend Required": "",
"*Prompt node ID(s) are required for image generation": "", "*Prompt node ID(s) are required for image generation": "",
"1 Source": "", "1 Source": "",
"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.": "", "A new version (v{{LATEST_VERSION}}) is now available.": "",
"A private conversation between you and selected users": "",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "", "A task model is used when performing tasks such as generating titles for chats and web search queries": "",
"a user": "", "a user": "",
"About": "", "About": "",
@ -53,7 +57,8 @@
"Add Custom Prompt": "", "Add Custom Prompt": "",
"Add Details": "", "Add Details": "",
"Add Files": "", "Add Files": "",
"Add Group": "", "Add Member": "",
"Add Members": "",
"Add Memory": "", "Add Memory": "",
"Add Model": "", "Add Model": "",
"Add Reaction": "", "Add Reaction": "",
@ -252,6 +257,7 @@
"Citations": "", "Citations": "",
"Clear memory": "", "Clear memory": "",
"Clear Memory": "", "Clear Memory": "",
"Clear status": "",
"click here": "", "click here": "",
"Click here for filter guides.": "", "Click here for filter guides.": "",
"Click here for help.": "", "Click here for help.": "",
@ -288,6 +294,7 @@
"Code Interpreter": "", "Code Interpreter": "",
"Code Interpreter Engine": "", "Code Interpreter Engine": "",
"Code Interpreter Prompt Template": "", "Code Interpreter Prompt Template": "",
"Collaboration channel where people join as members": "",
"Collapse": "", "Collapse": "",
"Collection": "", "Collection": "",
"Color": "Colour", "Color": "Colour",
@ -447,6 +454,7 @@
"Discover, download, and explore custom prompts": "", "Discover, download, and explore custom prompts": "",
"Discover, download, and explore custom tools": "", "Discover, download, and explore custom tools": "",
"Discover, download, and explore model presets": "", "Discover, download, and explore model presets": "",
"Discussion channel where access is based on groups and permissions": "",
"Display": "", "Display": "",
"Display chat title in tab": "", "Display chat title in tab": "",
"Display Emoji in Call": "", "Display Emoji in Call": "",
@ -463,6 +471,7 @@
"Document": "", "Document": "",
"Document Intelligence": "", "Document Intelligence": "",
"Document Intelligence endpoint required.": "", "Document Intelligence endpoint required.": "",
"Document Intelligence Model": "",
"Documentation": "", "Documentation": "",
"Documents": "", "Documents": "",
"does not make any external connections, and your data stays securely on your locally hosted server.": "", "does not make any external connections, and your data stays securely on your locally hosted server.": "",
@ -485,12 +494,15 @@
"e.g. \"json\" or a JSON schema": "", "e.g. \"json\" or a JSON schema": "",
"e.g. 60": "", "e.g. 60": "",
"e.g. A filter to remove profanity from text": "", "e.g. A filter to remove profanity from text": "",
"e.g. about the Roman Empire": "",
"e.g. en": "", "e.g. en": "",
"e.g. My Filter": "", "e.g. My Filter": "",
"e.g. My Tools": "", "e.g. My Tools": "",
"e.g. my_filter": "", "e.g. my_filter": "",
"e.g. my_tools": "", "e.g. my_tools": "",
"e.g. pdf, docx, txt": "", "e.g. pdf, docx, txt": "",
"e.g. Tell me a fun fact": "",
"e.g. Tell me a fun fact about the Roman Empire": "",
"e.g. Tools for performing various operations": "", "e.g. Tools for performing various operations": "",
"e.g., 3, 4, 5 (leave blank for default)": "", "e.g., 3, 4, 5 (leave blank for default)": "",
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "", "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
@ -564,6 +576,7 @@
"Enter Docling Server URL": "", "Enter Docling Server URL": "",
"Enter Document Intelligence Endpoint": "", "Enter Document Intelligence Endpoint": "",
"Enter Document Intelligence Key": "", "Enter Document Intelligence Key": "",
"Enter Document Intelligence Model": "",
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "", "Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
"Enter Exa API Key": "", "Enter Exa API Key": "",
"Enter External Document Loader API Key": "", "Enter External Document Loader API Key": "",
@ -689,7 +702,6 @@
"Export Config to JSON File": "", "Export Config to JSON File": "",
"Export Models": "", "Export Models": "",
"Export Presets": "", "Export Presets": "",
"Export Prompt Suggestions": "",
"Export Prompts": "", "Export Prompts": "",
"Export to CSV": "", "Export to CSV": "",
"Export Tools": "", "Export Tools": "",
@ -704,6 +716,8 @@
"External Web Search URL": "", "External Web Search URL": "",
"Fade Effect for Streaming Text": "", "Fade Effect for Streaming Text": "",
"Failed to add file.": "", "Failed to add file.": "",
"Failed to add members": "",
"Failed to clear status": "",
"Failed to connect to {{URL}} OpenAPI tool server": "", "Failed to connect to {{URL}} OpenAPI tool server": "",
"Failed to copy link": "", "Failed to copy link": "",
"Failed to create API Key.": "", "Failed to create API Key.": "",
@ -717,12 +731,14 @@
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to read clipboard contents": "", "Failed to read clipboard contents": "",
"Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
"Failed to render visualization": "", "Failed to render visualization": "",
"Failed to save connections": "", "Failed to save connections": "",
"Failed to save conversation": "", "Failed to save conversation": "",
"Failed to save models configuration": "", "Failed to save models configuration": "",
"Failed to update settings": "", "Failed to update settings": "",
"Failed to update status": "",
"Failed to upload file.": "", "Failed to upload file.": "",
"Features": "", "Features": "",
"Features Permissions": "", "Features Permissions": "",
@ -816,11 +832,13 @@
"Google PSE Engine Id": "", "Google PSE Engine Id": "",
"Gravatar": "", "Gravatar": "",
"Group": "", "Group": "",
"Group Channel": "",
"Group created successfully": "", "Group created successfully": "",
"Group deleted successfully": "", "Group deleted successfully": "",
"Group Description": "", "Group Description": "",
"Group Name": "", "Group Name": "",
"Group updated successfully": "", "Group updated successfully": "",
"groups": "",
"Groups": "", "Groups": "",
"H1": "", "H1": "",
"H2": "", "H2": "",
@ -875,7 +893,6 @@
"Import Models": "", "Import Models": "",
"Import Notes": "", "Import Notes": "",
"Import Presets": "", "Import Presets": "",
"Import Prompt Suggestions": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
"Import Tools": "", "Import Tools": "",
@ -1011,6 +1028,9 @@
"MCP": "", "MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Medium": "", "Medium": "",
"Member removed successfully": "",
"Members": "",
"Members added successfully": "",
"Memories accessible by LLMs will be shown here.": "", "Memories accessible by LLMs will be shown here.": "",
"Memory": "", "Memory": "",
"Memory added successfully": "", "Memory added successfully": "",
@ -1110,6 +1130,7 @@
"No models selected": "", "No models selected": "",
"No Notes": "", "No Notes": "",
"No notes found": "", "No notes found": "",
"No pinned messages": "",
"No prompts found": "", "No prompts found": "",
"No results": "", "No results": "",
"No results found": "", "No results found": "",
@ -1157,6 +1178,7 @@
"Only alphanumeric characters and hyphens are allowed in the command string.": "", "Only alphanumeric characters and hyphens are allowed in the command string.": "",
"Only can be triggered when the chat input is in focus.": "", "Only can be triggered when the chat input is in focus.": "",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "", "Only collections can be edited, create a new knowledge base to edit/add documents.": "",
"Only invited users can access": "",
"Only markdown files are allowed": "", "Only markdown files are allowed": "",
"Only select users and groups with permission can access": "", "Only select users and groups with permission can access": "",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "",
@ -1219,6 +1241,7 @@
"Personalization": "Personalisation", "Personalization": "Personalisation",
"Pin": "", "Pin": "",
"Pinned": "", "Pinned": "",
"Pinned Messages": "",
"Pioneer insights": "", "Pioneer insights": "",
"Pipe": "", "Pipe": "",
"Pipeline deleted successfully": "", "Pipeline deleted successfully": "",
@ -1261,9 +1284,9 @@
"Previous 7 days": "", "Previous 7 days": "",
"Previous message": "", "Previous message": "",
"Private": "", "Private": "",
"Private conversation between selected users": "",
"Profile": "", "Profile": "",
"Prompt": "", "Prompt": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "",
"Prompt Autocompletion": "", "Prompt Autocompletion": "",
"Prompt Content": "", "Prompt Content": "",
"Prompt created successfully": "", "Prompt created successfully": "",
@ -1449,6 +1472,7 @@
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "", "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
"Set Voice": "", "Set Voice": "",
"Set whisper model": "", "Set whisper model": "",
"Set your status": "",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalise repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.", "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalise repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Sets a scaling bias against tokens to penalise repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalise repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.", "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Sets a scaling bias against tokens to penalise repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalise repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.",
"Sets how far back for the model to look back to prevent repetition.": "", "Sets how far back for the model to look back to prevent repetition.": "",
@ -1501,6 +1525,9 @@
"Start a new conversation": "", "Start a new conversation": "",
"Start of the channel": "", "Start of the channel": "",
"Start Tag": "", "Start Tag": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "", "STDOUT/STDERR": "",
"Steps": "", "Steps": "",
@ -1516,7 +1543,7 @@
"STT Model": "", "STT Model": "",
"STT Settings": "", "STT Settings": "",
"Stylized PDF Export": "Stylised PDF Export", "Stylized PDF Export": "Stylised PDF Export",
"Subtitle (e.g. about the Roman Empire)": "", "Subtitle": "",
"Success": "", "Success": "",
"Successfully imported {{userCount}} users.": "", "Successfully imported {{userCount}} users.": "",
"Successfully updated.": "", "Successfully updated.": "",
@ -1599,7 +1626,6 @@
"Tika Server URL required.": "", "Tika Server URL required.": "",
"Tiktoken": "", "Tiktoken": "",
"Title": "", "Title": "",
"Title (e.g. Tell me a fun fact)": "",
"Title Auto-Generation": "", "Title Auto-Generation": "",
"Title cannot be an empty string.": "", "Title cannot be an empty string.": "",
"Title Generation": "", "Title Generation": "",
@ -1668,6 +1694,7 @@
"Update and Copy Link": "", "Update and Copy Link": "",
"Update for the latest features and improvements.": "", "Update for the latest features and improvements.": "",
"Update password": "", "Update password": "",
"Update your status": "",
"Updated": "", "Updated": "",
"Updated at": "", "Updated at": "",
"Updated At": "", "Updated At": "",
@ -1721,6 +1748,7 @@
"View Replies": "", "View Replies": "",
"View Result from **{{NAME}}**": "", "View Result from **{{NAME}}**": "",
"Visibility": "", "Visibility": "",
"Visible to all users": "",
"Vision": "", "Vision": "",
"Voice": "", "Voice": "",
"Voice Input": "", "Voice Input": "",
@ -1748,6 +1776,7 @@
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"What's New in": "", "What's New in": "",
"What's on your mind?": "",
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "", "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
"wherever you are": "", "wherever you are": "",
"Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "",

View file

@ -18,11 +18,15 @@
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
"{{model}} download has been canceled": "", "{{model}} download has been canceled": "",
"{{NAMES}} reacted with {{REACTION}}": "",
"{{user}}'s Chats": "", "{{user}}'s Chats": "",
"{{webUIName}} Backend Required": "", "{{webUIName}} Backend Required": "",
"*Prompt node ID(s) are required for image generation": "", "*Prompt node ID(s) are required for image generation": "",
"1 Source": "", "1 Source": "",
"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.": "", "A new version (v{{LATEST_VERSION}}) is now available.": "",
"A private conversation between you and selected users": "",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "", "A task model is used when performing tasks such as generating titles for chats and web search queries": "",
"a user": "", "a user": "",
"About": "", "About": "",
@ -53,7 +57,8 @@
"Add Custom Prompt": "", "Add Custom Prompt": "",
"Add Details": "", "Add Details": "",
"Add Files": "", "Add Files": "",
"Add Group": "", "Add Member": "",
"Add Members": "",
"Add Memory": "", "Add Memory": "",
"Add Model": "", "Add Model": "",
"Add Reaction": "", "Add Reaction": "",
@ -252,6 +257,7 @@
"Citations": "", "Citations": "",
"Clear memory": "", "Clear memory": "",
"Clear Memory": "", "Clear Memory": "",
"Clear status": "",
"click here": "", "click here": "",
"Click here for filter guides.": "", "Click here for filter guides.": "",
"Click here for help.": "", "Click here for help.": "",
@ -288,6 +294,7 @@
"Code Interpreter": "", "Code Interpreter": "",
"Code Interpreter Engine": "", "Code Interpreter Engine": "",
"Code Interpreter Prompt Template": "", "Code Interpreter Prompt Template": "",
"Collaboration channel where people join as members": "",
"Collapse": "", "Collapse": "",
"Collection": "", "Collection": "",
"Color": "", "Color": "",
@ -447,6 +454,7 @@
"Discover, download, and explore custom prompts": "", "Discover, download, and explore custom prompts": "",
"Discover, download, and explore custom tools": "", "Discover, download, and explore custom tools": "",
"Discover, download, and explore model presets": "", "Discover, download, and explore model presets": "",
"Discussion channel where access is based on groups and permissions": "",
"Display": "", "Display": "",
"Display chat title in tab": "", "Display chat title in tab": "",
"Display Emoji in Call": "", "Display Emoji in Call": "",
@ -463,6 +471,7 @@
"Document": "", "Document": "",
"Document Intelligence": "", "Document Intelligence": "",
"Document Intelligence endpoint required.": "", "Document Intelligence endpoint required.": "",
"Document Intelligence Model": "",
"Documentation": "", "Documentation": "",
"Documents": "", "Documents": "",
"does not make any external connections, and your data stays securely on your locally hosted server.": "", "does not make any external connections, and your data stays securely on your locally hosted server.": "",
@ -485,12 +494,15 @@
"e.g. \"json\" or a JSON schema": "", "e.g. \"json\" or a JSON schema": "",
"e.g. 60": "", "e.g. 60": "",
"e.g. A filter to remove profanity from text": "", "e.g. A filter to remove profanity from text": "",
"e.g. about the Roman Empire": "",
"e.g. en": "", "e.g. en": "",
"e.g. My Filter": "", "e.g. My Filter": "",
"e.g. My Tools": "", "e.g. My Tools": "",
"e.g. my_filter": "", "e.g. my_filter": "",
"e.g. my_tools": "", "e.g. my_tools": "",
"e.g. pdf, docx, txt": "", "e.g. pdf, docx, txt": "",
"e.g. Tell me a fun fact": "",
"e.g. Tell me a fun fact about the Roman Empire": "",
"e.g. Tools for performing various operations": "", "e.g. Tools for performing various operations": "",
"e.g., 3, 4, 5 (leave blank for default)": "", "e.g., 3, 4, 5 (leave blank for default)": "",
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "", "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
@ -564,6 +576,7 @@
"Enter Docling Server URL": "", "Enter Docling Server URL": "",
"Enter Document Intelligence Endpoint": "", "Enter Document Intelligence Endpoint": "",
"Enter Document Intelligence Key": "", "Enter Document Intelligence Key": "",
"Enter Document Intelligence Model": "",
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "", "Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
"Enter Exa API Key": "", "Enter Exa API Key": "",
"Enter External Document Loader API Key": "", "Enter External Document Loader API Key": "",
@ -689,7 +702,6 @@
"Export Config to JSON File": "", "Export Config to JSON File": "",
"Export Models": "", "Export Models": "",
"Export Presets": "", "Export Presets": "",
"Export Prompt Suggestions": "",
"Export Prompts": "", "Export Prompts": "",
"Export to CSV": "", "Export to CSV": "",
"Export Tools": "", "Export Tools": "",
@ -704,6 +716,8 @@
"External Web Search URL": "", "External Web Search URL": "",
"Fade Effect for Streaming Text": "", "Fade Effect for Streaming Text": "",
"Failed to add file.": "", "Failed to add file.": "",
"Failed to add members": "",
"Failed to clear status": "",
"Failed to connect to {{URL}} OpenAPI tool server": "", "Failed to connect to {{URL}} OpenAPI tool server": "",
"Failed to copy link": "", "Failed to copy link": "",
"Failed to create API Key.": "", "Failed to create API Key.": "",
@ -717,12 +731,14 @@
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to read clipboard contents": "", "Failed to read clipboard contents": "",
"Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
"Failed to render visualization": "", "Failed to render visualization": "",
"Failed to save connections": "", "Failed to save connections": "",
"Failed to save conversation": "", "Failed to save conversation": "",
"Failed to save models configuration": "", "Failed to save models configuration": "",
"Failed to update settings": "", "Failed to update settings": "",
"Failed to update status": "",
"Failed to upload file.": "", "Failed to upload file.": "",
"Features": "", "Features": "",
"Features Permissions": "", "Features Permissions": "",
@ -816,11 +832,13 @@
"Google PSE Engine Id": "", "Google PSE Engine Id": "",
"Gravatar": "", "Gravatar": "",
"Group": "", "Group": "",
"Group Channel": "",
"Group created successfully": "", "Group created successfully": "",
"Group deleted successfully": "", "Group deleted successfully": "",
"Group Description": "", "Group Description": "",
"Group Name": "", "Group Name": "",
"Group updated successfully": "", "Group updated successfully": "",
"groups": "",
"Groups": "", "Groups": "",
"H1": "", "H1": "",
"H2": "", "H2": "",
@ -875,7 +893,6 @@
"Import Models": "", "Import Models": "",
"Import Notes": "", "Import Notes": "",
"Import Presets": "", "Import Presets": "",
"Import Prompt Suggestions": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
"Import Tools": "", "Import Tools": "",
@ -1011,6 +1028,9 @@
"MCP": "", "MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Medium": "", "Medium": "",
"Member removed successfully": "",
"Members": "",
"Members added successfully": "",
"Memories accessible by LLMs will be shown here.": "", "Memories accessible by LLMs will be shown here.": "",
"Memory": "", "Memory": "",
"Memory added successfully": "", "Memory added successfully": "",
@ -1110,6 +1130,7 @@
"No models selected": "", "No models selected": "",
"No Notes": "", "No Notes": "",
"No notes found": "", "No notes found": "",
"No pinned messages": "",
"No prompts found": "", "No prompts found": "",
"No results": "", "No results": "",
"No results found": "", "No results found": "",
@ -1157,6 +1178,7 @@
"Only alphanumeric characters and hyphens are allowed in the command string.": "", "Only alphanumeric characters and hyphens are allowed in the command string.": "",
"Only can be triggered when the chat input is in focus.": "", "Only can be triggered when the chat input is in focus.": "",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "", "Only collections can be edited, create a new knowledge base to edit/add documents.": "",
"Only invited users can access": "",
"Only markdown files are allowed": "", "Only markdown files are allowed": "",
"Only select users and groups with permission can access": "", "Only select users and groups with permission can access": "",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "",
@ -1219,6 +1241,7 @@
"Personalization": "", "Personalization": "",
"Pin": "", "Pin": "",
"Pinned": "", "Pinned": "",
"Pinned Messages": "",
"Pioneer insights": "", "Pioneer insights": "",
"Pipe": "", "Pipe": "",
"Pipeline deleted successfully": "", "Pipeline deleted successfully": "",
@ -1261,9 +1284,9 @@
"Previous 7 days": "", "Previous 7 days": "",
"Previous message": "Previous message", "Previous message": "Previous message",
"Private": "", "Private": "",
"Private conversation between selected users": "",
"Profile": "", "Profile": "",
"Prompt": "", "Prompt": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "",
"Prompt Autocompletion": "", "Prompt Autocompletion": "",
"Prompt Content": "", "Prompt Content": "",
"Prompt created successfully": "", "Prompt created successfully": "",
@ -1449,6 +1472,7 @@
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "", "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
"Set Voice": "", "Set Voice": "",
"Set whisper model": "", "Set whisper model": "",
"Set your status": "",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "", "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "", "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets how far back for the model to look back to prevent repetition.": "", "Sets how far back for the model to look back to prevent repetition.": "",
@ -1501,6 +1525,9 @@
"Start a new conversation": "", "Start a new conversation": "",
"Start of the channel": "", "Start of the channel": "",
"Start Tag": "", "Start Tag": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "", "STDOUT/STDERR": "",
"Steps": "", "Steps": "",
@ -1516,7 +1543,7 @@
"STT Model": "", "STT Model": "",
"STT Settings": "", "STT Settings": "",
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "", "Subtitle": "",
"Success": "", "Success": "",
"Successfully imported {{userCount}} users.": "", "Successfully imported {{userCount}} users.": "",
"Successfully updated.": "", "Successfully updated.": "",
@ -1599,7 +1626,6 @@
"Tika Server URL required.": "", "Tika Server URL required.": "",
"Tiktoken": "", "Tiktoken": "",
"Title": "", "Title": "",
"Title (e.g. Tell me a fun fact)": "",
"Title Auto-Generation": "", "Title Auto-Generation": "",
"Title cannot be an empty string.": "", "Title cannot be an empty string.": "",
"Title Generation": "", "Title Generation": "",
@ -1668,6 +1694,7 @@
"Update and Copy Link": "", "Update and Copy Link": "",
"Update for the latest features and improvements.": "", "Update for the latest features and improvements.": "",
"Update password": "", "Update password": "",
"Update your status": "",
"Updated": "", "Updated": "",
"Updated at": "", "Updated at": "",
"Updated At": "", "Updated At": "",
@ -1721,6 +1748,7 @@
"View Replies": "", "View Replies": "",
"View Result from **{{NAME}}**": "", "View Result from **{{NAME}}**": "",
"Visibility": "", "Visibility": "",
"Visible to all users": "",
"Vision": "", "Vision": "",
"Voice": "", "Voice": "",
"Voice Input": "", "Voice Input": "",
@ -1748,6 +1776,7 @@
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"What's New in": "", "What's New in": "",
"What's on your mind?": "",
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "", "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
"wherever you are": "", "wherever you are": "",
"Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "",

View file

@ -18,11 +18,15 @@
"{{COUNT}} words": "{{COUNT}} palabras", "{{COUNT}} words": "{{COUNT}} palabras",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} a las {{LOCALIZED_TIME}}", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} a las {{LOCALIZED_TIME}}",
"{{model}} download has been canceled": "La descarga de {{model}} ha sido cancelada", "{{model}} download has been canceled": "La descarga de {{model}} ha sido cancelada",
"{{NAMES}} reacted with {{REACTION}}": "",
"{{user}}'s Chats": "Chats de {{user}}", "{{user}}'s Chats": "Chats de {{user}}",
"{{webUIName}} Backend Required": "{{webUIName}} Servidor Requerido", "{{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", "*Prompt node ID(s) are required for image generation": "Los ID de nodo son requeridos para la generación de imágenes",
"1 Source": "1 Fuente", "1 Source": "1 Fuente",
"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.": "Nueva versión (v{{LATEST_VERSION}}) disponible.", "A new version (v{{LATEST_VERSION}}) is now available.": "Nueva versión (v{{LATEST_VERSION}}) disponible.",
"A private conversation between you and selected users": "",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "El modelo de tareas realiza tareas como la generación de títulos para chats y consultas de búsqueda web", "A task model is used when performing tasks such as generating titles for chats and web search queries": "El modelo de tareas realiza tareas como la generación de títulos para chats y consultas de búsqueda web",
"a user": "un usuario", "a user": "un usuario",
"About": "Acerca de", "About": "Acerca de",
@ -53,7 +57,8 @@
"Add Custom Prompt": "Añadir Indicador Personalizado", "Add Custom Prompt": "Añadir Indicador Personalizado",
"Add Details": "Añadir Detalles", "Add Details": "Añadir Detalles",
"Add Files": "Añadir Archivos", "Add Files": "Añadir Archivos",
"Add Group": "Añadir Grupo", "Add Member": "",
"Add Members": "",
"Add Memory": "Añadir Memoria", "Add Memory": "Añadir Memoria",
"Add Model": "Añadir Modelo", "Add Model": "Añadir Modelo",
"Add Reaction": "Añadir Reacción", "Add Reaction": "Añadir Reacción",
@ -252,6 +257,7 @@
"Citations": "Citas", "Citations": "Citas",
"Clear memory": "Liberar memoria", "Clear memory": "Liberar memoria",
"Clear Memory": "Liberar Memoria", "Clear Memory": "Liberar Memoria",
"Clear status": "",
"click here": "Pulsar aquí", "click here": "Pulsar aquí",
"Click here for filter guides.": "Pulsar aquí para guías de filtros", "Click here for filter guides.": "Pulsar aquí para guías de filtros",
"Click here for help.": "Pulsar aquí para Ayuda.", "Click here for help.": "Pulsar aquí para Ayuda.",
@ -288,6 +294,7 @@
"Code Interpreter": "Interprete de Código", "Code Interpreter": "Interprete de Código",
"Code Interpreter Engine": "Motor del Interprete de Código", "Code Interpreter Engine": "Motor del Interprete de Código",
"Code Interpreter Prompt Template": "Plantilla del Indicador del Interprete de Código", "Code Interpreter Prompt Template": "Plantilla del Indicador del Interprete de Código",
"Collaboration channel where people join as members": "",
"Collapse": "Plegar", "Collapse": "Plegar",
"Collection": "Colección", "Collection": "Colección",
"Color": "Color", "Color": "Color",
@ -447,6 +454,7 @@
"Discover, download, and explore custom prompts": "Descubre, descarga, y explora indicadores personalizados", "Discover, download, and explore custom prompts": "Descubre, descarga, y explora indicadores personalizados",
"Discover, download, and explore custom tools": "Descubre, descarga y explora herramientas personalizadas", "Discover, download, and explore custom tools": "Descubre, descarga y explora herramientas personalizadas",
"Discover, download, and explore model presets": "Descubre, descarga y explora modelos con preajustados", "Discover, download, and explore model presets": "Descubre, descarga y explora modelos con preajustados",
"Discussion channel where access is based on groups and permissions": "",
"Display": "Mostrar", "Display": "Mostrar",
"Display chat title in tab": "Mostrar título del chat en el tabulador", "Display chat title in tab": "Mostrar título del chat en el tabulador",
"Display Emoji in Call": "Muestra Emojis en Llamada", "Display Emoji in Call": "Muestra Emojis en Llamada",
@ -463,6 +471,7 @@
"Document": "Documento", "Document": "Documento",
"Document Intelligence": "Azure Doc Intelligence", "Document Intelligence": "Azure Doc Intelligence",
"Document Intelligence endpoint required.": "Endpoint Azure Doc Intelligence requerido", "Document Intelligence endpoint required.": "Endpoint Azure Doc Intelligence requerido",
"Document Intelligence Model": "",
"Documentation": "Documentación", "Documentation": "Documentación",
"Documents": "Documentos", "Documents": "Documentos",
"does not make any external connections, and your data stays securely on your locally hosted server.": "no se realiza ninguna conexión externa y tus datos permanecen seguros alojados localmente en tu servidor.", "does not make any external connections, and your data stays securely on your locally hosted server.": "no se realiza ninguna conexión externa y tus datos permanecen seguros alojados localmente en tu servidor.",
@ -485,12 +494,15 @@
"e.g. \"json\" or a JSON schema": "p.ej. \"json\" o un esquema JSON", "e.g. \"json\" or a JSON schema": "p.ej. \"json\" o un esquema JSON",
"e.g. 60": "p.ej. 60", "e.g. 60": "p.ej. 60",
"e.g. A filter to remove profanity from text": "p.ej. Un filtro para eliminar malas palabras del texto", "e.g. A filter to remove profanity from text": "p.ej. Un filtro para eliminar malas palabras del texto",
"e.g. about the Roman Empire": "",
"e.g. en": "p.ej. es", "e.g. en": "p.ej. es",
"e.g. My Filter": "p.ej. Mi Filtro", "e.g. My Filter": "p.ej. Mi Filtro",
"e.g. My Tools": "p.ej. Mis Herramientas", "e.g. My Tools": "p.ej. Mis Herramientas",
"e.g. my_filter": "p.ej. mi_filtro", "e.g. my_filter": "p.ej. mi_filtro",
"e.g. my_tools": "p.ej. mis_herramientas", "e.g. my_tools": "p.ej. mis_herramientas",
"e.g. pdf, docx, txt": "p.ej. pdf, docx, txt ...", "e.g. pdf, docx, txt": "p.ej. pdf, docx, txt ...",
"e.g. Tell me a fun fact": "",
"e.g. Tell me a fun fact about the Roman Empire": "",
"e.g. Tools for performing various operations": "p.ej. Herramientas para realizar diversas operaciones", "e.g. Tools for performing various operations": "p.ej. Herramientas para realizar diversas operaciones",
"e.g., 3, 4, 5 (leave blank for default)": "p.ej. , 3, 4, 5 ...", "e.g., 3, 4, 5 (leave blank for default)": "p.ej. , 3, 4, 5 ...",
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "e.g., audio/wav,audio/mpeg,video/* (dejar en blanco para predeterminados)", "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "e.g., audio/wav,audio/mpeg,video/* (dejar en blanco para predeterminados)",
@ -564,6 +576,7 @@
"Enter Docling Server URL": "Ingresar URL del Servidor Docling", "Enter Docling Server URL": "Ingresar URL del Servidor Docling",
"Enter Document Intelligence Endpoint": "Ingresar el Endpoint de Azure Document Intelligence", "Enter Document Intelligence Endpoint": "Ingresar el Endpoint de Azure Document Intelligence",
"Enter Document Intelligence Key": "Ingresar Clave de Azure Document Intelligence", "Enter Document Intelligence Key": "Ingresar Clave de Azure Document Intelligence",
"Enter Document Intelligence Model": "",
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "Ingresar dominios separados por comas (ej. ejemplocom, site,org, !excludedsite.com)", "Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "Ingresar dominios separados por comas (ej. ejemplocom, site,org, !excludedsite.com)",
"Enter Exa API Key": "Ingresar Clave API de Exa", "Enter Exa API Key": "Ingresar Clave API de Exa",
"Enter External Document Loader API Key": "Ingresar Clave API del Cargador Externo de Documentos", "Enter External Document Loader API Key": "Ingresar Clave API del Cargador Externo de Documentos",
@ -689,7 +702,6 @@
"Export Config to JSON File": "Exportar Configuración a archivo JSON", "Export Config to JSON File": "Exportar Configuración a archivo JSON",
"Export Models": "Exportar Modelos", "Export Models": "Exportar Modelos",
"Export Presets": "Exportar Preajustes", "Export Presets": "Exportar Preajustes",
"Export Prompt Suggestions": "Exportar Sugerencias de Indicador",
"Export Prompts": "Exportar Indicadores", "Export Prompts": "Exportar Indicadores",
"Export to CSV": "Exportar a CSV", "Export to CSV": "Exportar a CSV",
"Export Tools": "Exportar Herramientas", "Export Tools": "Exportar Herramientas",
@ -704,6 +716,8 @@
"External Web Search URL": "URL del Buscador Web Externo", "External Web Search URL": "URL del Buscador Web Externo",
"Fade Effect for Streaming Text": "Efecto de desvanecimiento para texto transmitido (streaming)", "Fade Effect for Streaming Text": "Efecto de desvanecimiento para texto transmitido (streaming)",
"Failed to add file.": "Fallo al añadir el archivo.", "Failed to add file.": "Fallo al añadir el archivo.",
"Failed to add members": "",
"Failed to clear status": "",
"Failed to connect to {{URL}} OpenAPI tool server": "Fallo al conectar al servidor de herramientas {{URL}}", "Failed to connect to {{URL}} OpenAPI tool server": "Fallo al conectar al servidor de herramientas {{URL}}",
"Failed to copy link": "Fallo al copiar enlace", "Failed to copy link": "Fallo al copiar enlace",
"Failed to create API Key.": "Fallo al crear la Clave API.", "Failed to create API Key.": "Fallo al crear la Clave API.",
@ -717,12 +731,14 @@
"Failed to load file content.": "Fallo al cargar el contenido del archivo", "Failed to load file content.": "Fallo al cargar el contenido del archivo",
"Failed to move chat": "Fallo al mover el chat", "Failed to move chat": "Fallo al mover el chat",
"Failed to read clipboard contents": "Fallo al leer el contenido del portapapeles", "Failed to read clipboard contents": "Fallo al leer el contenido del portapapeles",
"Failed to remove member": "",
"Failed to render diagram": "Fallo al renderizar el diagrama", "Failed to render diagram": "Fallo al renderizar el diagrama",
"Failed to render visualization": "Fallo al renderizar la visualización", "Failed to render visualization": "Fallo al renderizar la visualización",
"Failed to save connections": "Fallo al guardar las conexiones", "Failed to save connections": "Fallo al guardar las conexiones",
"Failed to save conversation": "Fallo al guardar la conversación", "Failed to save conversation": "Fallo al guardar la conversación",
"Failed to save models configuration": "Fallo al guardar la configuración de los modelos", "Failed to save models configuration": "Fallo al guardar la configuración de los modelos",
"Failed to update settings": "Fallo al actualizar los ajustes", "Failed to update settings": "Fallo al actualizar los ajustes",
"Failed to update status": "",
"Failed to upload file.": "Fallo al subir el archivo.", "Failed to upload file.": "Fallo al subir el archivo.",
"Features": "Características", "Features": "Características",
"Features Permissions": "Permisos de las Características", "Features Permissions": "Permisos de las Características",
@ -816,11 +832,13 @@
"Google PSE Engine Id": "ID del Motor PSE de Google", "Google PSE Engine Id": "ID del Motor PSE de Google",
"Gravatar": "Gravatar", "Gravatar": "Gravatar",
"Group": "Grupo", "Group": "Grupo",
"Group Channel": "",
"Group created successfully": "Grupo creado correctamente", "Group created successfully": "Grupo creado correctamente",
"Group deleted successfully": "Grupo eliminado correctamente", "Group deleted successfully": "Grupo eliminado correctamente",
"Group Description": "Descripción del Grupo", "Group Description": "Descripción del Grupo",
"Group Name": "Nombre del Grupo", "Group Name": "Nombre del Grupo",
"Group updated successfully": "Grupo actualizado correctamente", "Group updated successfully": "Grupo actualizado correctamente",
"groups": "",
"Groups": "Grupos", "Groups": "Grupos",
"H1": "H1", "H1": "H1",
"H2": "H2", "H2": "H2",
@ -875,7 +893,6 @@
"Import Models": "Importar Modelos", "Import Models": "Importar Modelos",
"Import Notes": "Importar Notas", "Import Notes": "Importar Notas",
"Import Presets": "Importar Preajustes", "Import Presets": "Importar Preajustes",
"Import Prompt Suggestions": "Importar Sugerencias de Indicador",
"Import Prompts": "Importar Indicadores", "Import Prompts": "Importar Indicadores",
"Import successful": "Importación realizada correctamente", "Import successful": "Importación realizada correctamente",
"Import Tools": "Importar Herramientas", "Import Tools": "Importar Herramientas",
@ -1011,6 +1028,9 @@
"MCP": "MCP", "MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "El soporte de MCP es experimental y su especificación cambia con frecuencia, lo que puede generar incompatibilidades. El equipo de Open WebUI mantiene directamente la compatibilidad con la especificación OpenAPI, lo que la convierte en la opción más fiable para la compatibilidad.", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "El soporte de MCP es experimental y su especificación cambia con frecuencia, lo que puede generar incompatibilidades. El equipo de Open WebUI mantiene directamente la compatibilidad con la especificación OpenAPI, lo que la convierte en la opción más fiable para la compatibilidad.",
"Medium": "Medio", "Medium": "Medio",
"Member removed successfully": "",
"Members": "",
"Members added successfully": "",
"Memories accessible by LLMs will be shown here.": "Las memorias accesibles por los LLMs se mostrarán aquí.", "Memories accessible by LLMs will be shown here.": "Las memorias accesibles por los LLMs se mostrarán aquí.",
"Memory": "Memoria", "Memory": "Memoria",
"Memory added successfully": "Memoria añadida correctamente", "Memory added successfully": "Memoria añadida correctamente",
@ -1110,6 +1130,7 @@
"No models selected": "No se seleccionaron modelos", "No models selected": "No se seleccionaron modelos",
"No Notes": "Sin Notas", "No Notes": "Sin Notas",
"No notes found": "No se encontraron notas", "No notes found": "No se encontraron notas",
"No pinned messages": "",
"No prompts found": "No se encontraron indicadores", "No prompts found": "No se encontraron indicadores",
"No results": "No se encontraron resultados", "No results": "No se encontraron resultados",
"No results found": "No se encontraron resultados", "No results found": "No se encontraron resultados",
@ -1157,6 +1178,7 @@
"Only alphanumeric characters and hyphens are allowed in the command string.": "Sólo están permitidos en la cadena de comandos caracteres alfanuméricos y guiones.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Sólo están permitidos en la cadena de comandos caracteres alfanuméricos y guiones.",
"Only can be triggered when the chat input is in focus.": "Solo se puede activar cuando el foco está en la entrada del chat.", "Only can be triggered when the chat input is in focus.": "Solo se puede activar cuando el foco está en la entrada del chat.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Solo se pueden editar las colecciones, para añadir/editar documentos hay que crear una nueva base de conocimientos", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Solo se pueden editar las colecciones, para añadir/editar documentos hay que crear una nueva base de conocimientos",
"Only invited users can access": "",
"Only markdown files are allowed": "Solo están permitidos archivos markdown", "Only markdown files are allowed": "Solo están permitidos archivos markdown",
"Only select users and groups with permission can access": "Solo pueden acceder los usuarios y grupos con permiso", "Only select users and groups with permission can access": "Solo pueden acceder los usuarios y grupos con permiso",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "¡vaya! Parece que la URL es inválida. Por favor, revisala y reintenta de nuevo.", "Oops! Looks like the URL is invalid. Please double-check and try again.": "¡vaya! Parece que la URL es inválida. Por favor, revisala y reintenta de nuevo.",
@ -1219,6 +1241,7 @@
"Personalization": "Personalización", "Personalization": "Personalización",
"Pin": "Fijar", "Pin": "Fijar",
"Pinned": "Fijado", "Pinned": "Fijado",
"Pinned Messages": "",
"Pioneer insights": "Descubrir nuevas perspectivas", "Pioneer insights": "Descubrir nuevas perspectivas",
"Pipe": "Tubo", "Pipe": "Tubo",
"Pipeline deleted successfully": "Tubería borrada correctamente", "Pipeline deleted successfully": "Tubería borrada correctamente",
@ -1261,9 +1284,9 @@
"Previous 7 days": "7 días previos", "Previous 7 days": "7 días previos",
"Previous message": "Mensaje anterior", "Previous message": "Mensaje anterior",
"Private": "Privado", "Private": "Privado",
"Private conversation between selected users": "",
"Profile": "Perfil", "Profile": "Perfil",
"Prompt": "Indicador", "Prompt": "Indicador",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Indicador (p.ej. Cuéntame una cosa divertida sobre el Imperio Romano)",
"Prompt Autocompletion": "Autocompletado del Indicador", "Prompt Autocompletion": "Autocompletado del Indicador",
"Prompt Content": "Contenido del Indicador", "Prompt Content": "Contenido del Indicador",
"Prompt created successfully": "Indicador creado exitosamente", "Prompt created successfully": "Indicador creado exitosamente",
@ -1450,6 +1473,7 @@
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Establece el número de hilos de trabajo utilizados para el computo. Esta opción controla cuántos hilos son usados para procesar solicitudes entrantes concurrentes. Aumentar este valor puede mejorar el rendimiento bajo cargas de trabajo de alta concurrencia, pero también puede consumir más recursos de la CPU.", "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Establece el número de hilos de trabajo utilizados para el computo. Esta opción controla cuántos hilos son usados para procesar solicitudes entrantes concurrentes. Aumentar este valor puede mejorar el rendimiento bajo cargas de trabajo de alta concurrencia, pero también puede consumir más recursos de la CPU.",
"Set Voice": "Establecer la voz", "Set Voice": "Establecer la voz",
"Set whisper model": "Establecer modelo whisper (transcripción)", "Set whisper model": "Establecer modelo whisper (transcripción)",
"Set your status": "",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Establece un sesgo plano contra los tokens que han aparecido al menos una vez. Un valor más alto (p.ej. 1.5) penalizará las repeticiones más fuertemente, mientras que un valor más bajo (p.ej. 0.9) será más indulgente. En 0, está deshabilitado.", "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Establece un sesgo plano contra los tokens que han aparecido al menos una vez. Un valor más alto (p.ej. 1.5) penalizará las repeticiones más fuertemente, mientras que un valor más bajo (p.ej. 0.9) será más indulgente. En 0, está deshabilitado.",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Establece un sesgo escalado contra los tokens para penalizar las repeticiones, basado en cuántas veces han aparecido. Un valor más alto (por ejemplo, 1.5) penalizará las repeticiones más fuertemente, mientras que un valor más bajo (por ejemplo, 0.9) será más indulgente. En 0, está deshabilitado.", "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Establece un sesgo escalado contra los tokens para penalizar las repeticiones, basado en cuántas veces han aparecido. Un valor más alto (por ejemplo, 1.5) penalizará las repeticiones más fuertemente, mientras que un valor más bajo (por ejemplo, 0.9) será más indulgente. En 0, está deshabilitado.",
"Sets how far back for the model to look back to prevent repetition.": "Establece cuántos tokens debe mirar atrás el modelo para prevenir la repetición. ", "Sets how far back for the model to look back to prevent repetition.": "Establece cuántos tokens debe mirar atrás el modelo para prevenir la repetición. ",
@ -1502,6 +1526,9 @@
"Start a new conversation": "Comenzar una conversación nueva", "Start a new conversation": "Comenzar una conversación nueva",
"Start of the channel": "Inicio del canal", "Start of the channel": "Inicio del canal",
"Start Tag": "Etiqueta de Inicio", "Start Tag": "Etiqueta de Inicio",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
"Status Updates": "Actualizaciones de Estado", "Status Updates": "Actualizaciones de Estado",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Steps": "Pasos", "Steps": "Pasos",
@ -1517,7 +1544,7 @@
"STT Model": "Modelo STT", "STT Model": "Modelo STT",
"STT Settings": "Ajustes Voz a Texto (STT)", "STT Settings": "Ajustes Voz a Texto (STT)",
"Stylized PDF Export": "Exportar PDF Estilizado", "Stylized PDF Export": "Exportar PDF Estilizado",
"Subtitle (e.g. about the Roman Empire)": "Subtítulo (p.ej. sobre el Imperio Romano)", "Subtitle": "",
"Success": "Correcto", "Success": "Correcto",
"Successfully imported {{userCount}} users.": "{{userCount}} usuarios importados correctamente.", "Successfully imported {{userCount}} users.": "{{userCount}} usuarios importados correctamente.",
"Successfully updated.": "Actualizado correctamente.", "Successfully updated.": "Actualizado correctamente.",
@ -1600,7 +1627,6 @@
"Tika Server URL required.": "URL del Servidor Tika necesaria", "Tika Server URL required.": "URL del Servidor Tika necesaria",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Title": "Título", "Title": "Título",
"Title (e.g. Tell me a fun fact)": "Título (p.ej. cuéntame un hecho divertidado)",
"Title Auto-Generation": "AutoGeneración de Títulos", "Title Auto-Generation": "AutoGeneración de Títulos",
"Title cannot be an empty string.": "El título no puede ser una cadena vacía.", "Title cannot be an empty string.": "El título no puede ser una cadena vacía.",
"Title Generation": "Generación de Títulos", "Title Generation": "Generación de Títulos",
@ -1669,6 +1695,7 @@
"Update and Copy Link": "Actualizar y Copiar Enlace", "Update and Copy Link": "Actualizar y Copiar Enlace",
"Update for the latest features and improvements.": "Actualizar para las últimas características y mejoras.", "Update for the latest features and improvements.": "Actualizar para las últimas características y mejoras.",
"Update password": "Actualizar contraseña", "Update password": "Actualizar contraseña",
"Update your status": "",
"Updated": "Actualizado", "Updated": "Actualizado",
"Updated at": "Actualizado el", "Updated at": "Actualizado el",
"Updated At": "Actualizado El", "Updated At": "Actualizado El",
@ -1722,6 +1749,7 @@
"View Replies": "Ver Respuestas", "View Replies": "Ver Respuestas",
"View Result from **{{NAME}}**": "Ver Resultado desde **{{NAME}}**", "View Result from **{{NAME}}**": "Ver Resultado desde **{{NAME}}**",
"Visibility": "Visibilidad", "Visibility": "Visibilidad",
"Visible to all users": "",
"Vision": "Visión", "Vision": "Visión",
"Voice": "Voz", "Voice": "Voz",
"Voice Input": "Entrada de Voz", "Voice Input": "Entrada de Voz",
@ -1749,6 +1777,7 @@
"What are you trying to achieve?": "¿Qué estás tratando de conseguir?", "What are you trying to achieve?": "¿Qué estás tratando de conseguir?",
"What are you working on?": "¿En qué estás trabajando?", "What are you working on?": "¿En qué estás trabajando?",
"What's New in": "Que hay de Nuevo en", "What's New in": "Que hay de Nuevo en",
"What's on your mind?": "",
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Cuando está habilitado, el modelo responderá a cada mensaje de chat en tiempo real, generando una respuesta tan pronto como se envíe un mensaje. Este modo es útil para aplicaciones de chat en vivo, pero puede afectar al rendimiento en equipos más lentos.", "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Cuando está habilitado, el modelo responderá a cada mensaje de chat en tiempo real, generando una respuesta tan pronto como se envíe un mensaje. Este modo es útil para aplicaciones de chat en vivo, pero puede afectar al rendimiento en equipos más lentos.",
"wherever you are": "dondequiera que estés", "wherever you are": "dondequiera que estés",
"Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Al paginar la salida. Cada página será separada por una línea horizontal y número de página. Por defecto: Falso", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Al paginar la salida. Cada página será separada por una línea horizontal y número de página. Por defecto: Falso",

View file

@ -18,11 +18,15 @@
"{{COUNT}} words": "{{COUNT}} sõna", "{{COUNT}} words": "{{COUNT}} sõna",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} kell {{LOCALIZED_TIME}}", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} kell {{LOCALIZED_TIME}}",
"{{model}} download has been canceled": "{{model}} allalaadimine on tühistatud", "{{model}} download has been canceled": "{{model}} allalaadimine on tühistatud",
"{{NAMES}} reacted with {{REACTION}}": "",
"{{user}}'s Chats": "{{user}} vestlused", "{{user}}'s Chats": "{{user}} vestlused",
"{{webUIName}} Backend Required": "{{webUIName}} taustaserver on vajalik", "{{webUIName}} Backend Required": "{{webUIName}} taustaserver on vajalik",
"*Prompt node ID(s) are required for image generation": "*Vihje sõlme ID(d) on piltide genereerimiseks vajalikud", "*Prompt node ID(s) are required for image generation": "*Vihje sõlme ID(d) on piltide genereerimiseks vajalikud",
"1 Source": "1 allikas", "1 Source": "1 allikas",
"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.": "Uus versioon (v{{LATEST_VERSION}}) on saadaval.", "A new version (v{{LATEST_VERSION}}) is now available.": "Uus versioon (v{{LATEST_VERSION}}) on saadaval.",
"A private conversation between you and selected users": "",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Ülesande mudelit kasutatakse selliste toimingute jaoks nagu vestluste pealkirjade ja veebiotsingu päringute genereerimine", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Ülesande mudelit kasutatakse selliste toimingute jaoks nagu vestluste pealkirjade ja veebiotsingu päringute genereerimine",
"a user": "kasutaja", "a user": "kasutaja",
"About": "Teave", "About": "Teave",
@ -53,7 +57,8 @@
"Add Custom Prompt": "", "Add Custom Prompt": "",
"Add Details": "Lisa üksikasjad", "Add Details": "Lisa üksikasjad",
"Add Files": "Lisa faile", "Add Files": "Lisa faile",
"Add Group": "Lisa grupp", "Add Member": "",
"Add Members": "",
"Add Memory": "Lisa mälu", "Add Memory": "Lisa mälu",
"Add Model": "Lisa mudel", "Add Model": "Lisa mudel",
"Add Reaction": "Lisa reaktsioon", "Add Reaction": "Lisa reaktsioon",
@ -252,6 +257,7 @@
"Citations": "Citations", "Citations": "Citations",
"Clear memory": "Tühjenda mälu", "Clear memory": "Tühjenda mälu",
"Clear Memory": "Tühjenda mälu", "Clear Memory": "Tühjenda mälu",
"Clear status": "",
"click here": "klõpsake siia", "click here": "klõpsake siia",
"Click here for filter guides.": "Filtri juhiste jaoks klõpsake siia.", "Click here for filter guides.": "Filtri juhiste jaoks klõpsake siia.",
"Click here for help.": "Abi saamiseks klõpsake siia.", "Click here for help.": "Abi saamiseks klõpsake siia.",
@ -288,6 +294,7 @@
"Code Interpreter": "Koodi interpretaator", "Code Interpreter": "Koodi interpretaator",
"Code Interpreter Engine": "Koodi interpretaatori mootor", "Code Interpreter Engine": "Koodi interpretaatori mootor",
"Code Interpreter Prompt Template": "Koodi interpretaatori vihje mall", "Code Interpreter Prompt Template": "Koodi interpretaatori vihje mall",
"Collaboration channel where people join as members": "",
"Collapse": "Ahenda", "Collapse": "Ahenda",
"Collection": "Kogu", "Collection": "Kogu",
"Color": "Värv", "Color": "Värv",
@ -447,6 +454,7 @@
"Discover, download, and explore custom prompts": "Avasta, laadi alla ja uuri kohandatud vihjeid", "Discover, download, and explore custom prompts": "Avasta, laadi alla ja uuri kohandatud vihjeid",
"Discover, download, and explore custom tools": "Avasta, laadi alla ja uuri kohandatud tööriistu", "Discover, download, and explore custom tools": "Avasta, laadi alla ja uuri kohandatud tööriistu",
"Discover, download, and explore model presets": "Avasta, laadi alla ja uuri mudeli eelseadistusi", "Discover, download, and explore model presets": "Avasta, laadi alla ja uuri mudeli eelseadistusi",
"Discussion channel where access is based on groups and permissions": "",
"Display": "Kuva", "Display": "Kuva",
"Display chat title in tab": "Display vestlus title in tab", "Display chat title in tab": "Display vestlus title in tab",
"Display Emoji in Call": "Kuva kõnes emoji", "Display Emoji in Call": "Kuva kõnes emoji",
@ -463,6 +471,7 @@
"Document": "Dokument", "Document": "Dokument",
"Document Intelligence": "Dokumendi intelligentsus", "Document Intelligence": "Dokumendi intelligentsus",
"Document Intelligence endpoint required.": "Document Intelligence lõpp-punkt on nõutav.", "Document Intelligence endpoint required.": "Document Intelligence lõpp-punkt on nõutav.",
"Document Intelligence Model": "",
"Documentation": "Dokumentatsioon", "Documentation": "Dokumentatsioon",
"Documents": "Dokumendid", "Documents": "Dokumendid",
"does not make any external connections, and your data stays securely on your locally hosted server.": "ei loo väliseid ühendusi ja teie andmed jäävad turvaliselt teie kohalikult majutatud serverisse.", "does not make any external connections, and your data stays securely on your locally hosted server.": "ei loo väliseid ühendusi ja teie andmed jäävad turvaliselt teie kohalikult majutatud serverisse.",
@ -485,12 +494,15 @@
"e.g. \"json\" or a JSON schema": "nt \"json\" või JSON skeem", "e.g. \"json\" or a JSON schema": "nt \"json\" või JSON skeem",
"e.g. 60": "nt 60", "e.g. 60": "nt 60",
"e.g. A filter to remove profanity from text": "nt filter, mis eemaldab tekstist roppused", "e.g. A filter to remove profanity from text": "nt filter, mis eemaldab tekstist roppused",
"e.g. about the Roman Empire": "",
"e.g. en": "nt en", "e.g. en": "nt en",
"e.g. My Filter": "nt Minu Filter", "e.g. My Filter": "nt Minu Filter",
"e.g. My Tools": "nt Minu Tööriistad", "e.g. My Tools": "nt Minu Tööriistad",
"e.g. my_filter": "nt minu_filter", "e.g. my_filter": "nt minu_filter",
"e.g. my_tools": "nt minu_toriistad", "e.g. my_tools": "nt minu_toriistad",
"e.g. pdf, docx, txt": "nt pdf, docx, txt", "e.g. pdf, docx, txt": "nt pdf, docx, txt",
"e.g. Tell me a fun fact": "",
"e.g. Tell me a fun fact about the Roman Empire": "",
"e.g. Tools for performing various operations": "nt tööriistad mitmesuguste operatsioonide teostamiseks", "e.g. Tools for performing various operations": "nt tööriistad mitmesuguste operatsioonide teostamiseks",
"e.g., 3, 4, 5 (leave blank for default)": "nt 3, 4, 5 (jäta vaikimisi jaoks tühjaks)", "e.g., 3, 4, 5 (leave blank for default)": "nt 3, 4, 5 (jäta vaikimisi jaoks tühjaks)",
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "nt audio/wav,audio/mpeg,video/* (vaikeväärtuste jaoks jäta tühjaks)", "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "nt audio/wav,audio/mpeg,video/* (vaikeväärtuste jaoks jäta tühjaks)",
@ -564,6 +576,7 @@
"Enter Docling Server URL": "Enter Docling Server URL", "Enter Docling Server URL": "Enter Docling Server URL",
"Enter Document Intelligence Endpoint": "Sisestage dokumendi intelligentsuse lõpp-punkt", "Enter Document Intelligence Endpoint": "Sisestage dokumendi intelligentsuse lõpp-punkt",
"Enter Document Intelligence Key": "Sisestage dokumendi intelligentsuse võti", "Enter Document Intelligence Key": "Sisestage dokumendi intelligentsuse võti",
"Enter Document Intelligence Model": "",
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "", "Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
"Enter Exa API Key": "Sisestage Exa API võti", "Enter Exa API Key": "Sisestage Exa API võti",
"Enter External Document Loader API Key": "Enter Väline Dokument Loader API Võti", "Enter External Document Loader API Key": "Enter Väline Dokument Loader API Võti",
@ -689,7 +702,6 @@
"Export Config to JSON File": "Ekspordi seadistus JSON-failina", "Export Config to JSON File": "Ekspordi seadistus JSON-failina",
"Export Models": "", "Export Models": "",
"Export Presets": "Ekspordi eelseadistused", "Export Presets": "Ekspordi eelseadistused",
"Export Prompt Suggestions": "Ekspordi vihje soovitused",
"Export Prompts": "", "Export Prompts": "",
"Export to CSV": "Ekspordi CSV-na", "Export to CSV": "Ekspordi CSV-na",
"Export Tools": "", "Export Tools": "",
@ -704,6 +716,8 @@
"External Web Search URL": "Välise veebiotsingu URL", "External Web Search URL": "Välise veebiotsingu URL",
"Fade Effect for Streaming Text": "Hajuefekt voogteksti jaoks", "Fade Effect for Streaming Text": "Hajuefekt voogteksti jaoks",
"Failed to add file.": "Faili lisamine ebaõnnestus.", "Failed to add file.": "Faili lisamine ebaõnnestus.",
"Failed to add members": "",
"Failed to clear status": "",
"Failed to connect to {{URL}} OpenAPI tool server": "Ebaõnnestus kuni connect kuni {{URL}} OpenAPI tööriist server", "Failed to connect to {{URL}} OpenAPI tool server": "Ebaõnnestus kuni connect kuni {{URL}} OpenAPI tööriist server",
"Failed to copy link": "Lingi kopeerimine ebaõnnestus", "Failed to copy link": "Lingi kopeerimine ebaõnnestus",
"Failed to create API Key.": "API võtme loomine ebaõnnestus.", "Failed to create API Key.": "API võtme loomine ebaõnnestus.",
@ -717,12 +731,14 @@
"Failed to load file content.": "Ebaõnnestus kuni load fail content.", "Failed to load file content.": "Ebaõnnestus kuni load fail content.",
"Failed to move chat": "Ebaõnnestus kuni teisalda vestlus", "Failed to move chat": "Ebaõnnestus kuni teisalda vestlus",
"Failed to read clipboard contents": "Lõikelaua sisu lugemine ebaõnnestus", "Failed to read clipboard contents": "Lõikelaua sisu lugemine ebaõnnestus",
"Failed to remove member": "",
"Failed to render diagram": "Diagrammi renderdamine ebaõnnestus", "Failed to render diagram": "Diagrammi renderdamine ebaõnnestus",
"Failed to render visualization": "", "Failed to render visualization": "",
"Failed to save connections": "Ebaõnnestus kuni salvesta connections", "Failed to save connections": "Ebaõnnestus kuni salvesta connections",
"Failed to save conversation": "Vestluse salvestamine ebaõnnestus", "Failed to save conversation": "Vestluse salvestamine ebaõnnestus",
"Failed to save models configuration": "Mudelite konfiguratsiooni salvestamine ebaõnnestus", "Failed to save models configuration": "Mudelite konfiguratsiooni salvestamine ebaõnnestus",
"Failed to update settings": "Seadete uuendamine ebaõnnestus", "Failed to update settings": "Seadete uuendamine ebaõnnestus",
"Failed to update status": "",
"Failed to upload file.": "Faili üleslaadimine ebaõnnestus.", "Failed to upload file.": "Faili üleslaadimine ebaõnnestus.",
"Features": "Funktsioonid", "Features": "Funktsioonid",
"Features Permissions": "Funktsioonide õigused", "Features Permissions": "Funktsioonide õigused",
@ -816,11 +832,13 @@
"Google PSE Engine Id": "Google PSE mootori ID", "Google PSE Engine Id": "Google PSE mootori ID",
"Gravatar": "Gravatar", "Gravatar": "Gravatar",
"Group": "Rühm", "Group": "Rühm",
"Group Channel": "",
"Group created successfully": "Grupp edukalt loodud", "Group created successfully": "Grupp edukalt loodud",
"Group deleted successfully": "Grupp edukalt kustutatud", "Group deleted successfully": "Grupp edukalt kustutatud",
"Group Description": "Grupi kirjeldus", "Group Description": "Grupi kirjeldus",
"Group Name": "Grupi nimi", "Group Name": "Grupi nimi",
"Group updated successfully": "Grupp edukalt uuendatud", "Group updated successfully": "Grupp edukalt uuendatud",
"groups": "",
"Groups": "Grupid", "Groups": "Grupid",
"H1": "H1", "H1": "H1",
"H2": "H2", "H2": "H2",
@ -875,7 +893,6 @@
"Import Models": "", "Import Models": "",
"Import Notes": "Impordi märkmed", "Import Notes": "Impordi märkmed",
"Import Presets": "Impordi eelseadistused", "Import Presets": "Impordi eelseadistused",
"Import Prompt Suggestions": "Impordi vihje soovitused",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "Import õnnestus", "Import successful": "Import õnnestus",
"Import Tools": "", "Import Tools": "",
@ -1011,6 +1028,9 @@
"MCP": "MCP", "MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "MCP support is katsetuslik ja its specification changes often, which can lead kuni incompatibilities. OpenAPI specification support is directly maintained autor the Ava WebUI team, making it the more reliable option for compatibility.", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "MCP support is katsetuslik ja its specification changes often, which can lead kuni incompatibilities. OpenAPI specification support is directly maintained autor the Ava WebUI team, making it the more reliable option for compatibility.",
"Medium": "Keskmine", "Medium": "Keskmine",
"Member removed successfully": "",
"Members": "",
"Members added successfully": "",
"Memories accessible by LLMs will be shown here.": "LLM-idele ligipääsetavad mälestused kuvatakse siin.", "Memories accessible by LLMs will be shown here.": "LLM-idele ligipääsetavad mälestused kuvatakse siin.",
"Memory": "Mälu", "Memory": "Mälu",
"Memory added successfully": "Mälu edukalt lisatud", "Memory added successfully": "Mälu edukalt lisatud",
@ -1110,6 +1130,7 @@
"No models selected": "Mudeleid pole valitud", "No models selected": "Mudeleid pole valitud",
"No Notes": "No Märkmed", "No Notes": "No Märkmed",
"No notes found": "No märkmed found", "No notes found": "No märkmed found",
"No pinned messages": "",
"No prompts found": "No prompts found", "No prompts found": "No prompts found",
"No results": "Tulemusi ei leitud", "No results": "Tulemusi ei leitud",
"No results found": "Tulemusi ei leitud", "No results found": "Tulemusi ei leitud",
@ -1157,6 +1178,7 @@
"Only alphanumeric characters and hyphens are allowed in the command string.": "Käsustringis on lubatud ainult tähtede-numbrite kombinatsioonid ja sidekriipsud.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Käsustringis on lubatud ainult tähtede-numbrite kombinatsioonid ja sidekriipsud.",
"Only can be triggered when the chat input is in focus.": "", "Only can be triggered when the chat input is in focus.": "",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Muuta saab ainult kogusid, dokumentide muutmiseks/lisamiseks looge uus teadmiste baas.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Muuta saab ainult kogusid, dokumentide muutmiseks/lisamiseks looge uus teadmiste baas.",
"Only invited users can access": "",
"Only markdown files are allowed": "Only markdown failid are allowed", "Only markdown files are allowed": "Only markdown failid are allowed",
"Only select users and groups with permission can access": "Juurdepääs on ainult valitud õigustega kasutajatel ja gruppidel", "Only select users and groups with permission can access": "Juurdepääs on ainult valitud õigustega kasutajatel ja gruppidel",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "Oih! URL tundub olevat vigane. Palun kontrollige ja proovige uuesti.", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Oih! URL tundub olevat vigane. Palun kontrollige ja proovige uuesti.",
@ -1219,6 +1241,7 @@
"Personalization": "Isikupärastamine", "Personalization": "Isikupärastamine",
"Pin": "Kinnita", "Pin": "Kinnita",
"Pinned": "Kinnitatud", "Pinned": "Kinnitatud",
"Pinned Messages": "",
"Pioneer insights": "Pioneeri arusaamad", "Pioneer insights": "Pioneeri arusaamad",
"Pipe": "Pipe", "Pipe": "Pipe",
"Pipeline deleted successfully": "Torustik edukalt kustutatud", "Pipeline deleted successfully": "Torustik edukalt kustutatud",
@ -1261,9 +1284,9 @@
"Previous 7 days": "Eelmised 7 päeva", "Previous 7 days": "Eelmised 7 päeva",
"Previous message": "Previous sõnum", "Previous message": "Previous sõnum",
"Private": "Privaatne", "Private": "Privaatne",
"Private conversation between selected users": "",
"Profile": "Profiil", "Profile": "Profiil",
"Prompt": "Vihje", "Prompt": "Vihje",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Vihje (nt Räägi mulle üks huvitav fakt Rooma impeeriumi kohta)",
"Prompt Autocompletion": "Prompt Autocompletion", "Prompt Autocompletion": "Prompt Autocompletion",
"Prompt Content": "Vihje sisu", "Prompt Content": "Vihje sisu",
"Prompt created successfully": "Vihje edukalt loodud", "Prompt created successfully": "Vihje edukalt loodud",
@ -1449,6 +1472,7 @@
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Määrake arvutusteks kasutatavate töölõimede arv. See valik kontrollib, mitu lõime kasutatakse saabuvate päringute samaaegseks töötlemiseks. Selle väärtuse suurendamine võib parandada jõudlust suure samaaegsusega töökoormuste korral, kuid võib tarbida rohkem CPU ressursse.", "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Määrake arvutusteks kasutatavate töölõimede arv. See valik kontrollib, mitu lõime kasutatakse saabuvate päringute samaaegseks töötlemiseks. Selle väärtuse suurendamine võib parandada jõudlust suure samaaegsusega töökoormuste korral, kuid võib tarbida rohkem CPU ressursse.",
"Set Voice": "Määra hääl", "Set Voice": "Määra hääl",
"Set whisper model": "Määra whisper mudel", "Set whisper model": "Määra whisper mudel",
"Set your status": "",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Seab tasase kallutatuse tokenite vastu, mis on esinenud vähemalt üks kord. Kõrgem väärtus (nt 1,5) karistab kordusi tugevamalt, samas kui madalam väärtus (nt 0,9) on leebem. Väärtuse 0 korral on see keelatud.", "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Seab tasase kallutatuse tokenite vastu, mis on esinenud vähemalt üks kord. Kõrgem väärtus (nt 1,5) karistab kordusi tugevamalt, samas kui madalam väärtus (nt 0,9) on leebem. Väärtuse 0 korral on see keelatud.",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Seab skaleeritava kallutatuse tokenite vastu korduste karistamiseks, põhinedes sellel, mitu korda need on esinenud. Kõrgem väärtus (nt 1,5) karistab kordusi tugevamalt, samas kui madalam väärtus (nt 0,9) on leebem. Väärtuse 0 korral on see keelatud.", "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Seab skaleeritava kallutatuse tokenite vastu korduste karistamiseks, põhinedes sellel, mitu korda need on esinenud. Kõrgem väärtus (nt 1,5) karistab kordusi tugevamalt, samas kui madalam väärtus (nt 0,9) on leebem. Väärtuse 0 korral on see keelatud.",
"Sets how far back for the model to look back to prevent repetition.": "Määrab, kui kaugele mudel tagasi vaatab, et vältida kordusi.", "Sets how far back for the model to look back to prevent repetition.": "Määrab, kui kaugele mudel tagasi vaatab, et vältida kordusi.",
@ -1501,6 +1525,9 @@
"Start a new conversation": "Käivita a new conversation", "Start a new conversation": "Käivita a new conversation",
"Start of the channel": "Kanali algus", "Start of the channel": "Kanali algus",
"Start Tag": "Käivita Silt", "Start Tag": "Käivita Silt",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
"Status Updates": "Olek Updates", "Status Updates": "Olek Updates",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Steps": "", "Steps": "",
@ -1516,7 +1543,7 @@
"STT Model": "STT mudel", "STT Model": "STT mudel",
"STT Settings": "STT seaded", "STT Settings": "STT seaded",
"Stylized PDF Export": "Stylized PDF Ekspordi", "Stylized PDF Export": "Stylized PDF Ekspordi",
"Subtitle (e.g. about the Roman Empire)": "Alampealkiri (nt Rooma impeeriumi kohta)", "Subtitle": "",
"Success": "Õnnestus", "Success": "Õnnestus",
"Successfully imported {{userCount}} users.": "Successfully imported {{userCount}} kasutajat.", "Successfully imported {{userCount}} users.": "Successfully imported {{userCount}} kasutajat.",
"Successfully updated.": "Edukalt uuendatud.", "Successfully updated.": "Edukalt uuendatud.",
@ -1599,7 +1626,6 @@
"Tika Server URL required.": "Tika serveri URL on nõutav.", "Tika Server URL required.": "Tika serveri URL on nõutav.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Title": "Pealkiri", "Title": "Pealkiri",
"Title (e.g. Tell me a fun fact)": "Pealkiri (nt Räägi mulle üks huvitav fakt)",
"Title Auto-Generation": "Pealkirja automaatne genereerimine", "Title Auto-Generation": "Pealkirja automaatne genereerimine",
"Title cannot be an empty string.": "Pealkiri ei saa olla tühi string.", "Title cannot be an empty string.": "Pealkiri ei saa olla tühi string.",
"Title Generation": "Pealkirja genereerimine", "Title Generation": "Pealkirja genereerimine",
@ -1668,6 +1694,7 @@
"Update and Copy Link": "Uuenda ja kopeeri link", "Update and Copy Link": "Uuenda ja kopeeri link",
"Update for the latest features and improvements.": "Uuendage, et saada uusimad funktsioonid ja täiustused.", "Update for the latest features and improvements.": "Uuendage, et saada uusimad funktsioonid ja täiustused.",
"Update password": "Uuenda parooli", "Update password": "Uuenda parooli",
"Update your status": "",
"Updated": "Uuendatud", "Updated": "Uuendatud",
"Updated at": "Uuendamise aeg", "Updated at": "Uuendamise aeg",
"Updated At": "Uuendamise aeg", "Updated At": "Uuendamise aeg",
@ -1721,6 +1748,7 @@
"View Replies": "Vaata vastuseid", "View Replies": "Vaata vastuseid",
"View Result from **{{NAME}}**": "Vaata Result alates **{{NAME}}**", "View Result from **{{NAME}}**": "Vaata Result alates **{{NAME}}**",
"Visibility": "Nähtavus", "Visibility": "Nähtavus",
"Visible to all users": "",
"Vision": "Vision", "Vision": "Vision",
"Voice": "Hääl", "Voice": "Hääl",
"Voice Input": "Hääle sisend", "Voice Input": "Hääle sisend",
@ -1748,6 +1776,7 @@
"What are you trying to achieve?": "Mida te püüate saavutada?", "What are you trying to achieve?": "Mida te püüate saavutada?",
"What are you working on?": "Millega te tegelete?", "What are you working on?": "Millega te tegelete?",
"What's New in": "Mis on uut", "What's New in": "Mis on uut",
"What's on your mind?": "",
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Kui see on lubatud, vastab mudel igale vestlussõnumile reaalajas, genereerides vastuse niipea, kui kasutaja sõnumi saadab. See režiim on kasulik reaalajas vestlusrakendustes, kuid võib mõjutada jõudlust aeglasema riistvara puhul.", "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Kui see on lubatud, vastab mudel igale vestlussõnumile reaalajas, genereerides vastuse niipea, kui kasutaja sõnumi saadab. See režiim on kasulik reaalajas vestlusrakendustes, kuid võib mõjutada jõudlust aeglasema riistvara puhul.",
"wherever you are": "kus iganes te olete", "wherever you are": "kus iganes te olete",
"Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Whether kuni paginate the output. Each leht will be separated autor a horizontal rule ja leht number. Defaults kuni False.", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Whether kuni paginate the output. Each leht will be separated autor a horizontal rule ja leht number. Defaults kuni False.",

View file

@ -18,11 +18,15 @@
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
"{{model}} download has been canceled": "", "{{model}} download has been canceled": "",
"{{NAMES}} reacted with {{REACTION}}": "",
"{{user}}'s Chats": "{{user}}-ren Txatak", "{{user}}'s Chats": "{{user}}-ren Txatak",
"{{webUIName}} Backend Required": "{{webUIName}} Backend-a Beharrezkoa", "{{webUIName}} Backend Required": "{{webUIName}} Backend-a Beharrezkoa",
"*Prompt node ID(s) are required for image generation": "Prompt nodoaren IDa(k) beharrezkoak dira irudiak sortzeko", "*Prompt node ID(s) are required for image generation": "Prompt nodoaren IDa(k) beharrezkoak dira irudiak sortzeko",
"1 Source": "", "1 Source": "",
"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.", "A new version (v{{LATEST_VERSION}}) is now available.": "Bertsio berri bat (v{{LATEST_VERSION}}) eskuragarri dago orain.",
"A private conversation between you and selected users": "",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Ataza eredua erabiltzen da txatentzako izenburuak eta web bilaketa kontsultak sortzeko bezalako atazak egitean", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Ataza eredua erabiltzen da txatentzako izenburuak eta web bilaketa kontsultak sortzeko bezalako atazak egitean",
"a user": "erabiltzaile bat", "a user": "erabiltzaile bat",
"About": "Honi buruz", "About": "Honi buruz",
@ -53,7 +57,8 @@
"Add Custom Prompt": "", "Add Custom Prompt": "",
"Add Details": "", "Add Details": "",
"Add Files": "Gehitu Fitxategiak", "Add Files": "Gehitu Fitxategiak",
"Add Group": "Gehitu Taldea", "Add Member": "",
"Add Members": "",
"Add Memory": "Gehitu Memoria", "Add Memory": "Gehitu Memoria",
"Add Model": "Gehitu Eredua", "Add Model": "Gehitu Eredua",
"Add Reaction": "", "Add Reaction": "",
@ -252,6 +257,7 @@
"Citations": "", "Citations": "",
"Clear memory": "Garbitu memoria", "Clear memory": "Garbitu memoria",
"Clear Memory": "", "Clear Memory": "",
"Clear status": "",
"click here": "klikatu hemen", "click here": "klikatu hemen",
"Click here for filter guides.": "Klikatu hemen iragazkien gidak ikusteko.", "Click here for filter guides.": "Klikatu hemen iragazkien gidak ikusteko.",
"Click here for help.": "Klikatu hemen laguntzarako.", "Click here for help.": "Klikatu hemen laguntzarako.",
@ -288,6 +294,7 @@
"Code Interpreter": "", "Code Interpreter": "",
"Code Interpreter Engine": "", "Code Interpreter Engine": "",
"Code Interpreter Prompt Template": "", "Code Interpreter Prompt Template": "",
"Collaboration channel where people join as members": "",
"Collapse": "", "Collapse": "",
"Collection": "Bilduma", "Collection": "Bilduma",
"Color": "Kolorea", "Color": "Kolorea",
@ -447,6 +454,7 @@
"Discover, download, and explore custom prompts": "Aurkitu, deskargatu eta esploratu prompt pertsonalizatuak", "Discover, download, and explore custom prompts": "Aurkitu, deskargatu eta esploratu prompt pertsonalizatuak",
"Discover, download, and explore custom tools": "Aurkitu, deskargatu eta esploratu tresna pertsonalizatuak", "Discover, download, and explore custom tools": "Aurkitu, deskargatu eta esploratu tresna pertsonalizatuak",
"Discover, download, and explore model presets": "Aurkitu, deskargatu eta esploratu ereduen aurrezarpenak", "Discover, download, and explore model presets": "Aurkitu, deskargatu eta esploratu ereduen aurrezarpenak",
"Discussion channel where access is based on groups and permissions": "",
"Display": "Bistaratu", "Display": "Bistaratu",
"Display chat title in tab": "", "Display chat title in tab": "",
"Display Emoji in Call": "Bistaratu Emojiak Deietan", "Display Emoji in Call": "Bistaratu Emojiak Deietan",
@ -463,6 +471,7 @@
"Document": "Dokumentua", "Document": "Dokumentua",
"Document Intelligence": "", "Document Intelligence": "",
"Document Intelligence endpoint required.": "", "Document Intelligence endpoint required.": "",
"Document Intelligence Model": "",
"Documentation": "Dokumentazioa", "Documentation": "Dokumentazioa",
"Documents": "Dokumentuak", "Documents": "Dokumentuak",
"does not make any external connections, and your data stays securely on your locally hosted server.": "ez du kanpo konexiorik egiten, eta zure datuak modu seguruan mantentzen dira zure zerbitzari lokalean.", "does not make any external connections, and your data stays securely on your locally hosted server.": "ez du kanpo konexiorik egiten, eta zure datuak modu seguruan mantentzen dira zure zerbitzari lokalean.",
@ -485,12 +494,15 @@
"e.g. \"json\" or a JSON schema": "", "e.g. \"json\" or a JSON schema": "",
"e.g. 60": "", "e.g. 60": "",
"e.g. A filter to remove profanity from text": "adib. Testutik lizunkeriak kentzeko iragazki bat", "e.g. A filter to remove profanity from text": "adib. Testutik lizunkeriak kentzeko iragazki bat",
"e.g. about the Roman Empire": "",
"e.g. en": "", "e.g. en": "",
"e.g. My Filter": "adib. Nire Iragazkia", "e.g. My Filter": "adib. Nire Iragazkia",
"e.g. My Tools": "adib. Nire Tresnak", "e.g. My Tools": "adib. Nire Tresnak",
"e.g. my_filter": "adib. nire_iragazkia", "e.g. my_filter": "adib. nire_iragazkia",
"e.g. my_tools": "adib. nire_tresnak", "e.g. my_tools": "adib. nire_tresnak",
"e.g. pdf, docx, txt": "", "e.g. pdf, docx, txt": "",
"e.g. Tell me a fun fact": "",
"e.g. Tell me a fun fact about the Roman Empire": "",
"e.g. Tools for performing various operations": "adib. Hainbat eragiketa egiteko tresnak", "e.g. Tools for performing various operations": "adib. Hainbat eragiketa egiteko tresnak",
"e.g., 3, 4, 5 (leave blank for default)": "", "e.g., 3, 4, 5 (leave blank for default)": "",
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "", "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
@ -564,6 +576,7 @@
"Enter Docling Server URL": "", "Enter Docling Server URL": "",
"Enter Document Intelligence Endpoint": "", "Enter Document Intelligence Endpoint": "",
"Enter Document Intelligence Key": "", "Enter Document Intelligence Key": "",
"Enter Document Intelligence Model": "",
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "", "Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
"Enter Exa API Key": "", "Enter Exa API Key": "",
"Enter External Document Loader API Key": "", "Enter External Document Loader API Key": "",
@ -689,7 +702,6 @@
"Export Config to JSON File": "Esportatu Konfigurazioa JSON Fitxategira", "Export Config to JSON File": "Esportatu Konfigurazioa JSON Fitxategira",
"Export Models": "", "Export Models": "",
"Export Presets": "Esportatu Aurrezarpenak", "Export Presets": "Esportatu Aurrezarpenak",
"Export Prompt Suggestions": "",
"Export Prompts": "", "Export Prompts": "",
"Export to CSV": "Esportatu CSVra", "Export to CSV": "Esportatu CSVra",
"Export Tools": "", "Export Tools": "",
@ -704,6 +716,8 @@
"External Web Search URL": "", "External Web Search URL": "",
"Fade Effect for Streaming Text": "", "Fade Effect for Streaming Text": "",
"Failed to add file.": "Huts egin du fitxategia gehitzean.", "Failed to add file.": "Huts egin du fitxategia gehitzean.",
"Failed to add members": "",
"Failed to clear status": "",
"Failed to connect to {{URL}} OpenAPI tool server": "", "Failed to connect to {{URL}} OpenAPI tool server": "",
"Failed to copy link": "", "Failed to copy link": "",
"Failed to create API Key.": "Huts egin du API Gakoa sortzean.", "Failed to create API Key.": "Huts egin du API Gakoa sortzean.",
@ -717,12 +731,14 @@
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to read clipboard contents": "Huts egin du arbelaren edukia irakurtzean", "Failed to read clipboard contents": "Huts egin du arbelaren edukia irakurtzean",
"Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
"Failed to render visualization": "", "Failed to render visualization": "",
"Failed to save connections": "", "Failed to save connections": "",
"Failed to save conversation": "Huts egin du elkarrizketa gordetzean", "Failed to save conversation": "Huts egin du elkarrizketa gordetzean",
"Failed to save models configuration": "Huts egin du ereduen konfigurazioa gordetzean", "Failed to save models configuration": "Huts egin du ereduen konfigurazioa gordetzean",
"Failed to update settings": "Huts egin du ezarpenak eguneratzean", "Failed to update settings": "Huts egin du ezarpenak eguneratzean",
"Failed to update status": "",
"Failed to upload file.": "Huts egin du fitxategia igotzean.", "Failed to upload file.": "Huts egin du fitxategia igotzean.",
"Features": "", "Features": "",
"Features Permissions": "", "Features Permissions": "",
@ -816,11 +832,13 @@
"Google PSE Engine Id": "Google PSE Motor IDa", "Google PSE Engine Id": "Google PSE Motor IDa",
"Gravatar": "", "Gravatar": "",
"Group": "Taldea", "Group": "Taldea",
"Group Channel": "",
"Group created successfully": "Taldea ongi sortu da", "Group created successfully": "Taldea ongi sortu da",
"Group deleted successfully": "Taldea ongi ezabatu da", "Group deleted successfully": "Taldea ongi ezabatu da",
"Group Description": "Taldearen Deskribapena", "Group Description": "Taldearen Deskribapena",
"Group Name": "Taldearen Izena", "Group Name": "Taldearen Izena",
"Group updated successfully": "Taldea ongi eguneratu da", "Group updated successfully": "Taldea ongi eguneratu da",
"groups": "",
"Groups": "Taldeak", "Groups": "Taldeak",
"H1": "", "H1": "",
"H2": "", "H2": "",
@ -875,7 +893,6 @@
"Import Models": "", "Import Models": "",
"Import Notes": "", "Import Notes": "",
"Import Presets": "Inportatu Aurrezarpenak", "Import Presets": "Inportatu Aurrezarpenak",
"Import Prompt Suggestions": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
"Import Tools": "", "Import Tools": "",
@ -1011,6 +1028,9 @@
"MCP": "", "MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Medium": "", "Medium": "",
"Member removed successfully": "",
"Members": "",
"Members added successfully": "",
"Memories accessible by LLMs will be shown here.": "LLMek atzitu ditzaketen memoriak hemen erakutsiko dira.", "Memories accessible by LLMs will be shown here.": "LLMek atzitu ditzaketen memoriak hemen erakutsiko dira.",
"Memory": "Memoria", "Memory": "Memoria",
"Memory added successfully": "Memoria ongi gehitu da", "Memory added successfully": "Memoria ongi gehitu da",
@ -1110,6 +1130,7 @@
"No models selected": "Ez da modelorik hautatu", "No models selected": "Ez da modelorik hautatu",
"No Notes": "", "No Notes": "",
"No notes found": "", "No notes found": "",
"No pinned messages": "",
"No prompts found": "", "No prompts found": "",
"No results": "Ez da emaitzarik aurkitu", "No results": "Ez da emaitzarik aurkitu",
"No results found": "Ez da emaitzarik aurkitu", "No results found": "Ez da emaitzarik aurkitu",
@ -1157,6 +1178,7 @@
"Only alphanumeric characters and hyphens are allowed in the command string.": "Karaktere alfanumerikoak eta marratxoak soilik onartzen dira komando katean.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Karaktere alfanumerikoak eta marratxoak soilik onartzen dira komando katean.",
"Only can be triggered when the chat input is in focus.": "", "Only can be triggered when the chat input is in focus.": "",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Bildumak soilik edita daitezke, sortu ezagutza-base berri bat dokumentuak editatzeko/gehitzeko.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Bildumak soilik edita daitezke, sortu ezagutza-base berri bat dokumentuak editatzeko/gehitzeko.",
"Only invited users can access": "",
"Only markdown files are allowed": "", "Only markdown files are allowed": "",
"Only select users and groups with permission can access": "Baimena duten erabiltzaile eta talde hautatuek soilik sar daitezke", "Only select users and groups with permission can access": "Baimena duten erabiltzaile eta talde hautatuek soilik sar daitezke",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "Ui! URLa ez da baliozkoa. Mesedez, egiaztatu eta saiatu berriro.", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Ui! URLa ez da baliozkoa. Mesedez, egiaztatu eta saiatu berriro.",
@ -1219,6 +1241,7 @@
"Personalization": "Pertsonalizazioa", "Personalization": "Pertsonalizazioa",
"Pin": "Ainguratu", "Pin": "Ainguratu",
"Pinned": "Ainguratuta", "Pinned": "Ainguratuta",
"Pinned Messages": "",
"Pioneer insights": "Ikuspegi aitzindariak", "Pioneer insights": "Ikuspegi aitzindariak",
"Pipe": "", "Pipe": "",
"Pipeline deleted successfully": "Pipeline-a ongi ezabatu da", "Pipeline deleted successfully": "Pipeline-a ongi ezabatu da",
@ -1261,9 +1284,9 @@
"Previous 7 days": "Aurreko 7 egunak", "Previous 7 days": "Aurreko 7 egunak",
"Previous message": "", "Previous message": "",
"Private": "", "Private": "",
"Private conversation between selected users": "",
"Profile": "Profila", "Profile": "Profila",
"Prompt": "", "Prompt": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt-a (adib. Kontatu datu dibertigarri bat Erromatar Inperioari buruz)",
"Prompt Autocompletion": "", "Prompt Autocompletion": "",
"Prompt Content": "Prompt edukia", "Prompt Content": "Prompt edukia",
"Prompt created successfully": "Prompt-a ongi sortu da", "Prompt created successfully": "Prompt-a ongi sortu da",
@ -1449,6 +1472,7 @@
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Ezarri kalkulurako erabilitako langile harien kopurua. Aukera honek kontrolatzen du zenbat hari erabiltzen diren sarrerako eskaerak aldi berean prozesatzeko. Balio hau handitzeak errendimendua hobetu dezake konkurrentzia altuko lan-kargetan, baina CPU baliabide gehiago kontsumitu ditzake.", "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Ezarri kalkulurako erabilitako langile harien kopurua. Aukera honek kontrolatzen du zenbat hari erabiltzen diren sarrerako eskaerak aldi berean prozesatzeko. Balio hau handitzeak errendimendua hobetu dezake konkurrentzia altuko lan-kargetan, baina CPU baliabide gehiago kontsumitu ditzake.",
"Set Voice": "Ezarri ahotsa", "Set Voice": "Ezarri ahotsa",
"Set whisper model": "Ezarri whisper modeloa", "Set whisper model": "Ezarri whisper modeloa",
"Set your status": "",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "", "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "", "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets how far back for the model to look back to prevent repetition.": "", "Sets how far back for the model to look back to prevent repetition.": "",
@ -1501,6 +1525,9 @@
"Start a new conversation": "", "Start a new conversation": "",
"Start of the channel": "Kanalaren hasiera", "Start of the channel": "Kanalaren hasiera",
"Start Tag": "", "Start Tag": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Steps": "", "Steps": "",
@ -1516,7 +1543,7 @@
"STT Model": "STT modeloa", "STT Model": "STT modeloa",
"STT Settings": "STT ezarpenak", "STT Settings": "STT ezarpenak",
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Azpititulua (adib. Erromatar Inperioari buruz)", "Subtitle": "",
"Success": "Arrakasta", "Success": "Arrakasta",
"Successfully imported {{userCount}} users.": "", "Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Ongi eguneratu da.", "Successfully updated.": "Ongi eguneratu da.",
@ -1599,7 +1626,6 @@
"Tika Server URL required.": "Tika zerbitzariaren URLa beharrezkoa da.", "Tika Server URL required.": "Tika zerbitzariaren URLa beharrezkoa da.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Title": "Izenburua", "Title": "Izenburua",
"Title (e.g. Tell me a fun fact)": "Izenburua (adib. Kontatu datu dibertigarri bat)",
"Title Auto-Generation": "Izenburuen sorrera automatikoa", "Title Auto-Generation": "Izenburuen sorrera automatikoa",
"Title cannot be an empty string.": "Izenburua ezin da kate hutsa izan.", "Title cannot be an empty string.": "Izenburua ezin da kate hutsa izan.",
"Title Generation": "", "Title Generation": "",
@ -1668,6 +1694,7 @@
"Update and Copy Link": "Eguneratu eta kopiatu esteka", "Update and Copy Link": "Eguneratu eta kopiatu esteka",
"Update for the latest features and improvements.": "Eguneratu azken ezaugarri eta hobekuntzak izateko.", "Update for the latest features and improvements.": "Eguneratu azken ezaugarri eta hobekuntzak izateko.",
"Update password": "Eguneratu pasahitza", "Update password": "Eguneratu pasahitza",
"Update your status": "",
"Updated": "Eguneratuta", "Updated": "Eguneratuta",
"Updated at": "Noiz eguneratuta", "Updated at": "Noiz eguneratuta",
"Updated At": "Noiz eguneratuta", "Updated At": "Noiz eguneratuta",
@ -1721,6 +1748,7 @@
"View Replies": "", "View Replies": "",
"View Result from **{{NAME}}**": "", "View Result from **{{NAME}}**": "",
"Visibility": "Ikusgarritasuna", "Visibility": "Ikusgarritasuna",
"Visible to all users": "",
"Vision": "", "Vision": "",
"Voice": "Ahotsa", "Voice": "Ahotsa",
"Voice Input": "Ahots sarrera", "Voice Input": "Ahots sarrera",
@ -1748,6 +1776,7 @@
"What are you trying to achieve?": "Zer lortu nahi duzu?", "What are you trying to achieve?": "Zer lortu nahi duzu?",
"What are you working on?": "Zertan ari zara lanean?", "What are you working on?": "Zertan ari zara lanean?",
"What's New in": "Zer berri honetan:", "What's New in": "Zer berri honetan:",
"What's on your mind?": "",
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Gaituta dagoenean, modeloak txat mezu bakoitzari denbora errealean erantzungo dio, erantzun bat sortuz erabiltzaileak mezua bidaltzen duen bezain laster. Modu hau erabilgarria da zuzeneko txat aplikazioetarako, baina errendimenduan eragina izan dezake hardware motelagoan.", "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Gaituta dagoenean, modeloak txat mezu bakoitzari denbora errealean erantzungo dio, erantzun bat sortuz erabiltzaileak mezua bidaltzen duen bezain laster. Modu hau erabilgarria da zuzeneko txat aplikazioetarako, baina errendimenduan eragina izan dezake hardware motelagoan.",
"wherever you are": "zauden tokian zaudela", "wherever you are": "zauden tokian zaudela",
"Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "",

View file

@ -18,11 +18,15 @@
"{{COUNT}} words": "{{COUNT}} کلمه", "{{COUNT}} words": "{{COUNT}} کلمه",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} در {{LOCALIZED_TIME}}", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} در {{LOCALIZED_TIME}}",
"{{model}} download has been canceled": "دانلود {{model}} لغو شده است", "{{model}} download has been canceled": "دانلود {{model}} لغو شده است",
"{{NAMES}} reacted with {{REACTION}}": "",
"{{user}}'s Chats": "{{user}} گفتگوهای", "{{user}}'s Chats": "{{user}} گفتگوهای",
"{{webUIName}} Backend Required": "بکند {{webUIName}} نیاز است.", "{{webUIName}} Backend Required": "بکند {{webUIName}} نیاز است.",
"*Prompt node ID(s) are required for image generation": "*شناسه(های) گره پرامپت برای تولید تصویر مورد نیاز است", "*Prompt node ID(s) are required for image generation": "*شناسه(های) گره پرامپت برای تولید تصویر مورد نیاز است",
"1 Source": "۱ منبع", "1 Source": "۱ منبع",
"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}}) در دسترس است.", "A new version (v{{LATEST_VERSION}}) is now available.": "نسخه جدید (v{{LATEST_VERSION}}) در دسترس است.",
"A private conversation between you and selected users": "",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "یک مدل وظیفه هنگام انجام وظایف مانند تولید عناوین برای چت ها و نمایش های جستجوی وب استفاده می شود.", "A task model is used when performing tasks such as generating titles for chats and web search queries": "یک مدل وظیفه هنگام انجام وظایف مانند تولید عناوین برای چت ها و نمایش های جستجوی وب استفاده می شود.",
"a user": "یک کاربر", "a user": "یک کاربر",
"About": "درباره", "About": "درباره",
@ -53,7 +57,8 @@
"Add Custom Prompt": "افزودن پرامپت سفارشی", "Add Custom Prompt": "افزودن پرامپت سفارشی",
"Add Details": "افزودن جزئیات", "Add Details": "افزودن جزئیات",
"Add Files": "افزودن فایل\u200cها", "Add Files": "افزودن فایل\u200cها",
"Add Group": "افزودن گروه", "Add Member": "",
"Add Members": "",
"Add Memory": "افزودن حافظه", "Add Memory": "افزودن حافظه",
"Add Model": "افزودن مدل", "Add Model": "افزودن مدل",
"Add Reaction": "افزودن واکنش", "Add Reaction": "افزودن واکنش",
@ -252,6 +257,7 @@
"Citations": "ارجاعات", "Citations": "ارجاعات",
"Clear memory": "پاک کردن حافظه", "Clear memory": "پاک کردن حافظه",
"Clear Memory": "پاک کردن حافظه", "Clear Memory": "پاک کردن حافظه",
"Clear status": "",
"click here": "اینجا کلیک کنید", "click here": "اینجا کلیک کنید",
"Click here for filter guides.": "برای راهنمای فیلترها اینجا کلیک کنید.", "Click here for filter guides.": "برای راهنمای فیلترها اینجا کلیک کنید.",
"Click here for help.": "برای کمک اینجا را کلیک کنید.", "Click here for help.": "برای کمک اینجا را کلیک کنید.",
@ -288,6 +294,7 @@
"Code Interpreter": "مفسر کد", "Code Interpreter": "مفسر کد",
"Code Interpreter Engine": "موتور مفسر کد", "Code Interpreter Engine": "موتور مفسر کد",
"Code Interpreter Prompt Template": "قالب پرامپت مفسر کد", "Code Interpreter Prompt Template": "قالب پرامپت مفسر کد",
"Collaboration channel where people join as members": "",
"Collapse": "جمع کردن", "Collapse": "جمع کردن",
"Collection": "مجموعه", "Collection": "مجموعه",
"Color": "رنگ", "Color": "رنگ",
@ -447,6 +454,7 @@
"Discover, download, and explore custom prompts": "پرامپت\u200cهای سفارشی را کشف، دانلود و کاوش کنید", "Discover, download, and explore custom prompts": "پرامپت\u200cهای سفارشی را کشف، دانلود و کاوش کنید",
"Discover, download, and explore custom tools": "کشف، دانلود و کاوش ابزارهای سفارشی", "Discover, download, and explore custom tools": "کشف، دانلود و کاوش ابزارهای سفارشی",
"Discover, download, and explore model presets": "پیش تنظیمات مدل را کشف، دانلود و کاوش کنید", "Discover, download, and explore model presets": "پیش تنظیمات مدل را کشف، دانلود و کاوش کنید",
"Discussion channel where access is based on groups and permissions": "",
"Display": "نمایش", "Display": "نمایش",
"Display chat title in tab": "نمایش عنوان چت در تب", "Display chat title in tab": "نمایش عنوان چت در تب",
"Display Emoji in Call": "نمایش اموجی در تماس", "Display Emoji in Call": "نمایش اموجی در تماس",
@ -463,6 +471,7 @@
"Document": "سند", "Document": "سند",
"Document Intelligence": "هوش اسناد", "Document Intelligence": "هوش اسناد",
"Document Intelligence endpoint required.": "نقطه پایانی هوش سند مورد نیاز است.", "Document Intelligence endpoint required.": "نقطه پایانی هوش سند مورد نیاز است.",
"Document Intelligence Model": "",
"Documentation": "مستندات", "Documentation": "مستندات",
"Documents": "اسناد", "Documents": "اسناد",
"does not make any external connections, and your data stays securely on your locally hosted server.": "هیچ اتصال خارجی ایجاد نمی کند و داده های شما به طور ایمن در سرور میزبان محلی شما باقی می ماند.", "does not make any external connections, and your data stays securely on your locally hosted server.": "هیچ اتصال خارجی ایجاد نمی کند و داده های شما به طور ایمن در سرور میزبان محلی شما باقی می ماند.",
@ -485,12 +494,15 @@
"e.g. \"json\" or a JSON schema": "مثلا \"json\" یا یک طرح JSON", "e.g. \"json\" or a JSON schema": "مثلا \"json\" یا یک طرح JSON",
"e.g. 60": "مثلا 60", "e.g. 60": "مثلا 60",
"e.g. A filter to remove profanity from text": "مثلا فیلتری برای حذف ناسزا از متن", "e.g. A filter to remove profanity from text": "مثلا فیلتری برای حذف ناسزا از متن",
"e.g. about the Roman Empire": "",
"e.g. en": "مثلاً en", "e.g. en": "مثلاً en",
"e.g. My Filter": "مثلا فیلتر من", "e.g. My Filter": "مثلا فیلتر من",
"e.g. My Tools": "مثلا ابزارهای من", "e.g. My Tools": "مثلا ابزارهای من",
"e.g. my_filter": "مثلا my_filter", "e.g. my_filter": "مثلا my_filter",
"e.g. my_tools": "مثلا my_tools", "e.g. my_tools": "مثلا my_tools",
"e.g. pdf, docx, txt": "مثلاً pdf, docx, txt", "e.g. pdf, docx, txt": "مثلاً pdf, docx, txt",
"e.g. Tell me a fun fact": "",
"e.g. Tell me a fun fact about the Roman Empire": "",
"e.g. Tools for performing various operations": "مثلا ابزارهایی برای انجام عملیات مختلف", "e.g. Tools for performing various operations": "مثلا ابزارهایی برای انجام عملیات مختلف",
"e.g., 3, 4, 5 (leave blank for default)": "مثلاً ۳، ۴، ۵ (برای پیش\u200cفرض خالی بگذارید)", "e.g., 3, 4, 5 (leave blank for default)": "مثلاً ۳، ۴، ۵ (برای پیش\u200cفرض خالی بگذارید)",
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "مثلاً audio/wav,audio/mpeg,video/* (برای پیش\u200cفرض\u200cها خالی بگذارید)", "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "مثلاً audio/wav,audio/mpeg,video/* (برای پیش\u200cفرض\u200cها خالی بگذارید)",
@ -564,6 +576,7 @@
"Enter Docling Server URL": "آدرس سرور Docling را وارد کنید", "Enter Docling Server URL": "آدرس سرور Docling را وارد کنید",
"Enter Document Intelligence Endpoint": "نقطه پایانی هوش سند را وارد کنید", "Enter Document Intelligence Endpoint": "نقطه پایانی هوش سند را وارد کنید",
"Enter Document Intelligence Key": "کلید هوش سند را وارد کنید", "Enter Document Intelligence Key": "کلید هوش سند را وارد کنید",
"Enter Document Intelligence Model": "",
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "", "Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
"Enter Exa API Key": "کلید API اکسا را وارد کنید", "Enter Exa API Key": "کلید API اکسا را وارد کنید",
"Enter External Document Loader API Key": "کلید API بارگذار سند خارجی را وارد کنید", "Enter External Document Loader API Key": "کلید API بارگذار سند خارجی را وارد کنید",
@ -689,7 +702,6 @@
"Export Config to JSON File": "برون\u200cریزی پیکربندی به پروندهٔ JSON", "Export Config to JSON File": "برون\u200cریزی پیکربندی به پروندهٔ JSON",
"Export Models": "", "Export Models": "",
"Export Presets": "برون\u200cریزی پیش\u200cتنظیم\u200cها", "Export Presets": "برون\u200cریزی پیش\u200cتنظیم\u200cها",
"Export Prompt Suggestions": "خروجی گرفتن از پیشنهادات پرامپت",
"Export Prompts": "", "Export Prompts": "",
"Export to CSV": "برون\u200cریزی به CSV", "Export to CSV": "برون\u200cریزی به CSV",
"Export Tools": "", "Export Tools": "",
@ -704,6 +716,8 @@
"External Web Search URL": "آدرس URL جستجوی وب خارجی", "External Web Search URL": "آدرس URL جستجوی وب خارجی",
"Fade Effect for Streaming Text": "جلوه محو شدن برای متن جریانی", "Fade Effect for Streaming Text": "جلوه محو شدن برای متن جریانی",
"Failed to add file.": "خطا در افزودن پرونده", "Failed to add file.": "خطا در افزودن پرونده",
"Failed to add members": "",
"Failed to clear status": "",
"Failed to connect to {{URL}} OpenAPI tool server": "خطا در اتصال به سرور ابزار OpenAPI {{URL}}", "Failed to connect to {{URL}} OpenAPI tool server": "خطا در اتصال به سرور ابزار OpenAPI {{URL}}",
"Failed to copy link": "کپی لینک ناموفق بود", "Failed to copy link": "کپی لینک ناموفق بود",
"Failed to create API Key.": "ایجاد کلید API با خطا مواجه شد.", "Failed to create API Key.": "ایجاد کلید API با خطا مواجه شد.",
@ -717,12 +731,14 @@
"Failed to load file content.": "بارگیری محتوای فایل ناموفق بود.", "Failed to load file content.": "بارگیری محتوای فایل ناموفق بود.",
"Failed to move chat": "انتقال چت ناموفق بود", "Failed to move chat": "انتقال چت ناموفق بود",
"Failed to read clipboard contents": "خواندن محتوای کلیپ بورد ناموفق بود", "Failed to read clipboard contents": "خواندن محتوای کلیپ بورد ناموفق بود",
"Failed to remove member": "",
"Failed to render diagram": "رندر دیاگرام ناموفق بود", "Failed to render diagram": "رندر دیاگرام ناموفق بود",
"Failed to render visualization": "رندر بصری\u200cسازی ناموفق بود", "Failed to render visualization": "رندر بصری\u200cسازی ناموفق بود",
"Failed to save connections": "خطا در ذخیره\u200cسازی اتصالات", "Failed to save connections": "خطا در ذخیره\u200cسازی اتصالات",
"Failed to save conversation": "خطا در ذخیره\u200cسازی گفت\u200cوگو", "Failed to save conversation": "خطا در ذخیره\u200cسازی گفت\u200cوگو",
"Failed to save models configuration": "خطا در ذخیره\u200cسازی پیکربندی مدل\u200cها", "Failed to save models configuration": "خطا در ذخیره\u200cسازی پیکربندی مدل\u200cها",
"Failed to update settings": "خطا در به\u200cروزرسانی تنظیمات", "Failed to update settings": "خطا در به\u200cروزرسانی تنظیمات",
"Failed to update status": "",
"Failed to upload file.": "خطا در بارگذاری پرونده", "Failed to upload file.": "خطا در بارگذاری پرونده",
"Features": "ویژگی\u200cها", "Features": "ویژگی\u200cها",
"Features Permissions": "مجوزهای ویژگی\u200cها", "Features Permissions": "مجوزهای ویژگی\u200cها",
@ -816,11 +832,13 @@
"Google PSE Engine Id": "شناسه موتور PSE گوگل", "Google PSE Engine Id": "شناسه موتور PSE گوگل",
"Gravatar": "گراواتار", "Gravatar": "گراواتار",
"Group": "گروه", "Group": "گروه",
"Group Channel": "",
"Group created successfully": "گروه با موفقیت ایجاد شد", "Group created successfully": "گروه با موفقیت ایجاد شد",
"Group deleted successfully": "گروه با موفقیت حذف شد", "Group deleted successfully": "گروه با موفقیت حذف شد",
"Group Description": "توضیحات گروه", "Group Description": "توضیحات گروه",
"Group Name": "نام گروه", "Group Name": "نام گروه",
"Group updated successfully": "گروه با موفقیت به\u200cروز شد", "Group updated successfully": "گروه با موفقیت به\u200cروز شد",
"groups": "",
"Groups": "گروه\u200cها", "Groups": "گروه\u200cها",
"H1": "H1", "H1": "H1",
"H2": "H2", "H2": "H2",
@ -875,7 +893,6 @@
"Import Models": "", "Import Models": "",
"Import Notes": "وارد کردن یادداشت\u200cها", "Import Notes": "وارد کردن یادداشت\u200cها",
"Import Presets": "درون\u200cریزی پیش\u200cتنظیم\u200cها", "Import Presets": "درون\u200cریزی پیش\u200cتنظیم\u200cها",
"Import Prompt Suggestions": "وارد کردن پیشنهادات پرامپت",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "وارد کردن با موفقیت انجام شد", "Import successful": "وارد کردن با موفقیت انجام شد",
"Import Tools": "", "Import Tools": "",
@ -1011,6 +1028,9 @@
"MCP": "MCP", "MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "پشتیبانی MCP آزمایشی است و مشخصات آن اغلب تغییر می\u200cکند، که می\u200cتواند منجر به ناسازگاری شود. پشتیبانی از مشخصات OpenAPI مستقیماً توسط تیم Open WebUI نگهداری می\u200cشود و آن را به گزینه قابل اعتماد\u200cتری برای سازگاری تبدیل می\u200cکند.", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "پشتیبانی MCP آزمایشی است و مشخصات آن اغلب تغییر می\u200cکند، که می\u200cتواند منجر به ناسازگاری شود. پشتیبانی از مشخصات OpenAPI مستقیماً توسط تیم Open WebUI نگهداری می\u200cشود و آن را به گزینه قابل اعتماد\u200cتری برای سازگاری تبدیل می\u200cکند.",
"Medium": "متوسط", "Medium": "متوسط",
"Member removed successfully": "",
"Members": "",
"Members added successfully": "",
"Memories accessible by LLMs will be shown here.": "حافظه های دسترسی به LLMs در اینجا نمایش داده می شوند.", "Memories accessible by LLMs will be shown here.": "حافظه های دسترسی به LLMs در اینجا نمایش داده می شوند.",
"Memory": "حافظه", "Memory": "حافظه",
"Memory added successfully": "حافظه با موفقیت اضافه شد", "Memory added successfully": "حافظه با موفقیت اضافه شد",
@ -1110,6 +1130,7 @@
"No models selected": "مدلی انتخاب نشده است", "No models selected": "مدلی انتخاب نشده است",
"No Notes": "هیچ یادداشتی وجود ندارد", "No Notes": "هیچ یادداشتی وجود ندارد",
"No notes found": "هیچ یادداشتی یافت نشد", "No notes found": "هیچ یادداشتی یافت نشد",
"No pinned messages": "",
"No prompts found": "هیچ پرامپتی یافت نشد", "No prompts found": "هیچ پرامپتی یافت نشد",
"No results": "نتیجه\u200cای یافت نشد", "No results": "نتیجه\u200cای یافت نشد",
"No results found": "نتیجه\u200cای یافت نشد", "No results found": "نتیجه\u200cای یافت نشد",
@ -1157,6 +1178,7 @@
"Only alphanumeric characters and hyphens are allowed in the command string.": "فقط کاراکترهای الفبایی و خط فاصله در رشته فرمان مجاز هستند.", "Only alphanumeric characters and hyphens are allowed in the command string.": "فقط کاراکترهای الفبایی و خط فاصله در رشته فرمان مجاز هستند.",
"Only can be triggered when the chat input is in focus.": "فقط زمانی قابل اجرا است که ورودی چت در فوکوس باشد.", "Only can be triggered when the chat input is in focus.": "فقط زمانی قابل اجرا است که ورودی چت در فوکوس باشد.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "فقط مجموعه\u200cها قابل ویرایش هستند، برای ویرایش/افزودن اسناد یک پایگاه دانش جدید ایجاد کنید.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "فقط مجموعه\u200cها قابل ویرایش هستند، برای ویرایش/افزودن اسناد یک پایگاه دانش جدید ایجاد کنید.",
"Only invited users can access": "",
"Only markdown files are allowed": "فقط فایل\u200cهای مارک\u200cداون مجاز هستند", "Only markdown files are allowed": "فقط فایل\u200cهای مارک\u200cداون مجاز هستند",
"Only select users and groups with permission can access": "فقط کاربران و گروه\u200cهای دارای مجوز می\u200cتوانند دسترسی داشته باشند", "Only select users and groups with permission can access": "فقط کاربران و گروه\u200cهای دارای مجوز می\u200cتوانند دسترسی داشته باشند",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "اوه! به نظر می رسد URL نامعتبر است. لطفاً دوباره بررسی کنید و دوباره امتحان کنید.", "Oops! Looks like the URL is invalid. Please double-check and try again.": "اوه! به نظر می رسد URL نامعتبر است. لطفاً دوباره بررسی کنید و دوباره امتحان کنید.",
@ -1219,6 +1241,7 @@
"Personalization": "شخصی سازی", "Personalization": "شخصی سازی",
"Pin": "پین کردن", "Pin": "پین کردن",
"Pinned": "پین شده", "Pinned": "پین شده",
"Pinned Messages": "",
"Pioneer insights": "بینش\u200cهای پیشگام", "Pioneer insights": "بینش\u200cهای پیشگام",
"Pipe": "خط لوله", "Pipe": "خط لوله",
"Pipeline deleted successfully": "خط لوله با موفقیت حذف شد", "Pipeline deleted successfully": "خط لوله با موفقیت حذف شد",
@ -1261,9 +1284,9 @@
"Previous 7 days": "7 روز قبل", "Previous 7 days": "7 روز قبل",
"Previous message": "پیام قبلی", "Previous message": "پیام قبلی",
"Private": "خصوصی", "Private": "خصوصی",
"Private conversation between selected users": "",
"Profile": "پروفایل", "Profile": "پروفایل",
"Prompt": "پرامپت", "Prompt": "پرامپت",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "پیشنهاد (برای مثال: به من بگوید چیزی که برای من یک کاربرد داره درباره ایران)",
"Prompt Autocompletion": "تکمیل خودکار پرامپت", "Prompt Autocompletion": "تکمیل خودکار پرامپت",
"Prompt Content": "محتویات پرامپت", "Prompt Content": "محتویات پرامپت",
"Prompt created successfully": "پرامپت با موفقیت ایجاد شد", "Prompt created successfully": "پرامپت با موفقیت ایجاد شد",
@ -1449,6 +1472,7 @@
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "تعداد نخ\u200cهای کارگر مورد استفاده برای محاسبات را تنظیم کنید. این گزینه کنترل می\u200cکند که چند نخ برای پردازش همزمان درخواست\u200cهای ورودی استفاده می\u200cشود. افزایش این مقدار می\u200cتواند عملکرد را در بارهای کاری با همزمانی بالا بهبود بخشد اما ممکن است منابع CPU بیشتری مصرف کند.", "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "تعداد نخ\u200cهای کارگر مورد استفاده برای محاسبات را تنظیم کنید. این گزینه کنترل می\u200cکند که چند نخ برای پردازش همزمان درخواست\u200cهای ورودی استفاده می\u200cشود. افزایش این مقدار می\u200cتواند عملکرد را در بارهای کاری با همزمانی بالا بهبود بخشد اما ممکن است منابع CPU بیشتری مصرف کند.",
"Set Voice": "تنظیم صدا", "Set Voice": "تنظیم صدا",
"Set whisper model": "تنظیم مدل ویسپر", "Set whisper model": "تنظیم مدل ویسپر",
"Set your status": "",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "یک بایاس ثابت در برابر توکن\u200cهایی که حداقل یک بار ظاهر شده\u200cاند تنظیم می\u200cکند. مقدار بالاتر (مثلاً 1.5) تکرارها را شدیدتر جریمه می\u200cکند، در حالی که مقدار پایین\u200cتر (مثلاً 0.9) آسان\u200cگیرتر خواهد بود. در 0، غیرفعال می\u200cشود.", "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "یک بایاس ثابت در برابر توکن\u200cهایی که حداقل یک بار ظاهر شده\u200cاند تنظیم می\u200cکند. مقدار بالاتر (مثلاً 1.5) تکرارها را شدیدتر جریمه می\u200cکند، در حالی که مقدار پایین\u200cتر (مثلاً 0.9) آسان\u200cگیرتر خواهد بود. در 0، غیرفعال می\u200cشود.",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "یک بایاس مقیاس\u200cپذیر در برابر توکن\u200cها برای جریمه کردن تکرارها، بر اساس تعداد دفعات ظاهر شدن آنها تنظیم می\u200cکند. مقدار بالاتر (مثلاً 1.5) تکرارها را شدیدتر جریمه می\u200cکند، در حالی که مقدار پایین\u200cتر (مثلاً 0.9) آسان\u200cگیرتر خواهد بود. در 0، غیرفعال می\u200cشود.", "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "یک بایاس مقیاس\u200cپذیر در برابر توکن\u200cها برای جریمه کردن تکرارها، بر اساس تعداد دفعات ظاهر شدن آنها تنظیم می\u200cکند. مقدار بالاتر (مثلاً 1.5) تکرارها را شدیدتر جریمه می\u200cکند، در حالی که مقدار پایین\u200cتر (مثلاً 0.9) آسان\u200cگیرتر خواهد بود. در 0، غیرفعال می\u200cشود.",
"Sets how far back for the model to look back to prevent repetition.": "تنظیم می\u200cکند که مدل چقدر به عقب نگاه کند تا از تکرار جلوگیری شود.", "Sets how far back for the model to look back to prevent repetition.": "تنظیم می\u200cکند که مدل چقدر به عقب نگاه کند تا از تکرار جلوگیری شود.",
@ -1501,6 +1525,9 @@
"Start a new conversation": "شروع یک مکالمه جدید", "Start a new conversation": "شروع یک مکالمه جدید",
"Start of the channel": "آغاز کانال", "Start of the channel": "آغاز کانال",
"Start Tag": "تگ شروع", "Start Tag": "تگ شروع",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
"Status Updates": "به\u200cروزرسانی\u200cهای وضعیت", "Status Updates": "به\u200cروزرسانی\u200cهای وضعیت",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Steps": "مراحل", "Steps": "مراحل",
@ -1516,7 +1543,7 @@
"STT Model": "مدل تبدیل صدا به متن", "STT Model": "مدل تبدیل صدا به متن",
"STT Settings": "تنظیمات تبدیل صدا به متن", "STT Settings": "تنظیمات تبدیل صدا به متن",
"Stylized PDF Export": "خروجی گرفتن از PDF با استایل", "Stylized PDF Export": "خروجی گرفتن از PDF با استایل",
"Subtitle (e.g. about the Roman Empire)": "زیرنویس (برای مثال: درباره رمانی)", "Subtitle": "",
"Success": "موفقیت", "Success": "موفقیت",
"Successfully imported {{userCount}} users.": "{{userCount}} کاربر با موفقیت وارد شدند.", "Successfully imported {{userCount}} users.": "{{userCount}} کاربر با موفقیت وارد شدند.",
"Successfully updated.": "با موفقیت به\u200cروز شد", "Successfully updated.": "با موفقیت به\u200cروز شد",
@ -1599,7 +1626,6 @@
"Tika Server URL required.": "آدرس سرور تیکا مورد نیاز است.", "Tika Server URL required.": "آدرس سرور تیکا مورد نیاز است.",
"Tiktoken": "تیک توکن", "Tiktoken": "تیک توکن",
"Title": "عنوان", "Title": "عنوان",
"Title (e.g. Tell me a fun fact)": "عنوان (برای مثال: به من بگوید چیزی که دوست دارید)",
"Title Auto-Generation": "تولید خودکار عنوان", "Title Auto-Generation": "تولید خودکار عنوان",
"Title cannot be an empty string.": "عنوان نمی تواند یک رشته خالی باشد.", "Title cannot be an empty string.": "عنوان نمی تواند یک رشته خالی باشد.",
"Title Generation": "تولید عنوان", "Title Generation": "تولید عنوان",
@ -1668,6 +1694,7 @@
"Update and Copy Link": "به روزرسانی و کپی لینک", "Update and Copy Link": "به روزرسانی و کپی لینک",
"Update for the latest features and improvements.": "برای آخرین ویژگی\u200cها و بهبودها به\u200cروزرسانی کنید.", "Update for the latest features and improvements.": "برای آخرین ویژگی\u200cها و بهبودها به\u200cروزرسانی کنید.",
"Update password": "به روزرسانی رمزعبور", "Update password": "به روزرسانی رمزعبور",
"Update your status": "",
"Updated": "بارگذاری شد", "Updated": "بارگذاری شد",
"Updated at": "بارگذاری در", "Updated at": "بارگذاری در",
"Updated At": "بارگذاری در", "Updated At": "بارگذاری در",
@ -1721,6 +1748,7 @@
"View Replies": "مشاهده پاسخ\u200cها", "View Replies": "مشاهده پاسخ\u200cها",
"View Result from **{{NAME}}**": "مشاهده نتیجه از **{{NAME}}**", "View Result from **{{NAME}}**": "مشاهده نتیجه از **{{NAME}}**",
"Visibility": "قابلیت مشاهده", "Visibility": "قابلیت مشاهده",
"Visible to all users": "",
"Vision": "بینایی", "Vision": "بینایی",
"Voice": "صوت", "Voice": "صوت",
"Voice Input": "ورودی صوتی", "Voice Input": "ورودی صوتی",
@ -1748,6 +1776,7 @@
"What are you trying to achieve?": "به دنبال دستیابی به چه هدفی هستید؟", "What are you trying to achieve?": "به دنبال دستیابی به چه هدفی هستید؟",
"What are you working on?": "روی چه چیزی کار می\u200cکنید؟", "What are you working on?": "روی چه چیزی کار می\u200cکنید؟",
"What's New in": "چه چیز جدیدی در", "What's New in": "چه چیز جدیدی در",
"What's on your mind?": "",
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "وقتی فعال باشد، مدل به هر پیام گفتگو در زمان واقعی پاسخ می\u200cدهد و به محض ارسال پیام توسط کاربر، پاسخی تولید می\u200cکند. این حالت برای برنامه\u200cهای گفتگوی زنده مفید است، اما ممکن است در سخت\u200cافزارهای کندتر بر عملکرد تأثیر بگذارد.", "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "وقتی فعال باشد، مدل به هر پیام گفتگو در زمان واقعی پاسخ می\u200cدهد و به محض ارسال پیام توسط کاربر، پاسخی تولید می\u200cکند. این حالت برای برنامه\u200cهای گفتگوی زنده مفید است، اما ممکن است در سخت\u200cافزارهای کندتر بر عملکرد تأثیر بگذارد.",
"wherever you are": "هر جا که هستید", "wherever you are": "هر جا که هستید",
"Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "آیا خروجی صفحه\u200cبندی شود یا خیر. هر صفحه با یک خط افقی و شماره صفحه از هم جدا می\u200cشود. پیش\u200cفرض: False.", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "آیا خروجی صفحه\u200cبندی شود یا خیر. هر صفحه با یک خط افقی و شماره صفحه از هم جدا می\u200cشود. پیش\u200cفرض: False.",

View file

@ -18,11 +18,15 @@
"{{COUNT}} words": "{{COUNT}} sanaa", "{{COUNT}} words": "{{COUNT}} sanaa",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} {{LOCALIZED_TIME}}", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} {{LOCALIZED_TIME}}",
"{{model}} download has been canceled": "{{model}} lataus peruttu", "{{model}} download has been canceled": "{{model}} lataus peruttu",
"{{NAMES}} reacted with {{REACTION}}": "",
"{{user}}'s Chats": "{{user}}:n keskustelut", "{{user}}'s Chats": "{{user}}:n keskustelut",
"{{webUIName}} Backend Required": "{{webUIName}}-backend vaaditaan", "{{webUIName}} Backend Required": "{{webUIName}}-backend vaaditaan",
"*Prompt node ID(s) are required for image generation": "Kuvan luomiseen vaaditaan kehote-solmun ID(t)", "*Prompt node ID(s) are required for image generation": "Kuvan luomiseen vaaditaan kehote-solmun ID(t)",
"1 Source": "1 lähde", "1 Source": "1 lähde",
"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.": "Uusi versio (v{{LATEST_VERSION}}) on nyt saatavilla.", "A new version (v{{LATEST_VERSION}}) is now available.": "Uusi versio (v{{LATEST_VERSION}}) on nyt saatavilla.",
"A private conversation between you and selected users": "",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Tehtävämallia käytetään tehtävien suorittamiseen, kuten otsikoiden luomiseen keskusteluille ja verkkohakukyselyille", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Tehtävämallia käytetään tehtävien suorittamiseen, kuten otsikoiden luomiseen keskusteluille ja verkkohakukyselyille",
"a user": "käyttäjä", "a user": "käyttäjä",
"About": "Tietoja", "About": "Tietoja",
@ -53,7 +57,8 @@
"Add Custom Prompt": "Lisää mukautettu kehoite", "Add Custom Prompt": "Lisää mukautettu kehoite",
"Add Details": "Lisää yksityiskohtia", "Add Details": "Lisää yksityiskohtia",
"Add Files": "Lisää tiedostoja", "Add Files": "Lisää tiedostoja",
"Add Group": "Lisää ryhmä", "Add Member": "",
"Add Members": "",
"Add Memory": "Lisää muistiin", "Add Memory": "Lisää muistiin",
"Add Model": "Lisää malli", "Add Model": "Lisää malli",
"Add Reaction": "Lisää reaktio", "Add Reaction": "Lisää reaktio",
@ -252,6 +257,7 @@
"Citations": "Lähdeviitteet", "Citations": "Lähdeviitteet",
"Clear memory": "Tyhjennä muisti", "Clear memory": "Tyhjennä muisti",
"Clear Memory": "Tyhjennä Muisti", "Clear Memory": "Tyhjennä Muisti",
"Clear status": "",
"click here": "klikkaa tästä", "click here": "klikkaa tästä",
"Click here for filter guides.": "Katso suodatinohjeita klikkaamalla tästä.", "Click here for filter guides.": "Katso suodatinohjeita klikkaamalla tästä.",
"Click here for help.": "Klikkaa tästä saadaksesi apua.", "Click here for help.": "Klikkaa tästä saadaksesi apua.",
@ -288,6 +294,7 @@
"Code Interpreter": "Ohjelmatulkki", "Code Interpreter": "Ohjelmatulkki",
"Code Interpreter Engine": "Ohjelmatulkin moottori", "Code Interpreter Engine": "Ohjelmatulkin moottori",
"Code Interpreter Prompt Template": "Ohjelmatulkin kehotemalli", "Code Interpreter Prompt Template": "Ohjelmatulkin kehotemalli",
"Collaboration channel where people join as members": "",
"Collapse": "Pienennä", "Collapse": "Pienennä",
"Collection": "Kokoelma", "Collection": "Kokoelma",
"Color": "Väri", "Color": "Väri",
@ -447,6 +454,7 @@
"Discover, download, and explore custom prompts": "Löydä ja lataa mukautettuja kehotteita", "Discover, download, and explore custom prompts": "Löydä ja lataa mukautettuja kehotteita",
"Discover, download, and explore custom tools": "Etsi, lataa ja tutki mukautettuja työkaluja", "Discover, download, and explore custom tools": "Etsi, lataa ja tutki mukautettuja työkaluja",
"Discover, download, and explore model presets": "Löydä ja lataa mallien esiasetuksia", "Discover, download, and explore model presets": "Löydä ja lataa mallien esiasetuksia",
"Discussion channel where access is based on groups and permissions": "",
"Display": "Näytä", "Display": "Näytä",
"Display chat title in tab": "Näytä keskustelu otiskko välilehdessä", "Display chat title in tab": "Näytä keskustelu otiskko välilehdessä",
"Display Emoji in Call": "Näytä hymiöitä puhelussa", "Display Emoji in Call": "Näytä hymiöitä puhelussa",
@ -463,6 +471,7 @@
"Document": "Asiakirja", "Document": "Asiakirja",
"Document Intelligence": "Document Intelligence", "Document Intelligence": "Document Intelligence",
"Document Intelligence endpoint required.": "Document Intelligence pääte vaaditaan", "Document Intelligence endpoint required.": "Document Intelligence pääte vaaditaan",
"Document Intelligence Model": "",
"Documentation": "Dokumentaatio", "Documentation": "Dokumentaatio",
"Documents": "Asiakirjat", "Documents": "Asiakirjat",
"does not make any external connections, and your data stays securely on your locally hosted server.": "ei tee ulkoisia yhteyksiä, ja tietosi pysyvät turvallisesti paikallisesti isännöidyllä palvelimellasi.", "does not make any external connections, and your data stays securely on your locally hosted server.": "ei tee ulkoisia yhteyksiä, ja tietosi pysyvät turvallisesti paikallisesti isännöidyllä palvelimellasi.",
@ -485,12 +494,15 @@
"e.g. \"json\" or a JSON schema": "esim. \"json\" tai JSON kaava", "e.g. \"json\" or a JSON schema": "esim. \"json\" tai JSON kaava",
"e.g. 60": "esim. 60", "e.g. 60": "esim. 60",
"e.g. A filter to remove profanity from text": "esim. suodatin, joka poistaa kirosanoja tekstistä", "e.g. A filter to remove profanity from text": "esim. suodatin, joka poistaa kirosanoja tekstistä",
"e.g. about the Roman Empire": "",
"e.g. en": "esim. en", "e.g. en": "esim. en",
"e.g. My Filter": "esim. Oma suodatin", "e.g. My Filter": "esim. Oma suodatin",
"e.g. My Tools": "esim. Omat työkalut", "e.g. My Tools": "esim. Omat työkalut",
"e.g. my_filter": "esim. oma_suodatin", "e.g. my_filter": "esim. oma_suodatin",
"e.g. my_tools": "esim. omat_työkalut", "e.g. my_tools": "esim. omat_työkalut",
"e.g. pdf, docx, txt": "esim. pdf, docx, txt", "e.g. pdf, docx, txt": "esim. pdf, docx, txt",
"e.g. Tell me a fun fact": "",
"e.g. Tell me a fun fact about the Roman Empire": "",
"e.g. Tools for performing various operations": "esim. työkaluja erilaisten toimenpiteiden suorittamiseen", "e.g. Tools for performing various operations": "esim. työkaluja erilaisten toimenpiteiden suorittamiseen",
"e.g., 3, 4, 5 (leave blank for default)": "esim. 3, 4, 5 (jätä tyhjäksi, jos haluat oletusarvon)", "e.g., 3, 4, 5 (leave blank for default)": "esim. 3, 4, 5 (jätä tyhjäksi, jos haluat oletusarvon)",
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "esim. audio/wav,audio/mpeg,video/* (oletusarvot tyhjänä)", "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "esim. audio/wav,audio/mpeg,video/* (oletusarvot tyhjänä)",
@ -564,6 +576,7 @@
"Enter Docling Server URL": "Kirjoita Docling palvelimen verkko-osoite", "Enter Docling Server URL": "Kirjoita Docling palvelimen verkko-osoite",
"Enter Document Intelligence Endpoint": "Kirjoita asiakirja tiedustelun päätepiste", "Enter Document Intelligence Endpoint": "Kirjoita asiakirja tiedustelun päätepiste",
"Enter Document Intelligence Key": "Kirjoiuta asiakirja tiedustelun avain", "Enter Document Intelligence Key": "Kirjoiuta asiakirja tiedustelun avain",
"Enter Document Intelligence Model": "",
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "", "Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
"Enter Exa API Key": "Kirjoita Exa API -avain", "Enter Exa API Key": "Kirjoita Exa API -avain",
"Enter External Document Loader API Key": "Kirjoita ulkoisen Document Loader API-avain", "Enter External Document Loader API Key": "Kirjoita ulkoisen Document Loader API-avain",
@ -689,7 +702,6 @@
"Export Config to JSON File": "Vie asetukset JSON-tiedostoon", "Export Config to JSON File": "Vie asetukset JSON-tiedostoon",
"Export Models": "", "Export Models": "",
"Export Presets": "Vie esiasetukset", "Export Presets": "Vie esiasetukset",
"Export Prompt Suggestions": "Vie kehote ehdotukset",
"Export Prompts": "", "Export Prompts": "",
"Export to CSV": "Vie CSV-tiedostoon", "Export to CSV": "Vie CSV-tiedostoon",
"Export Tools": "", "Export Tools": "",
@ -704,6 +716,8 @@
"External Web Search URL": "Ulkoinen Web Search verkko-osoite", "External Web Search URL": "Ulkoinen Web Search verkko-osoite",
"Fade Effect for Streaming Text": "Häivytystehoste suoratoistetulle tekstille", "Fade Effect for Streaming Text": "Häivytystehoste suoratoistetulle tekstille",
"Failed to add file.": "Tiedoston lisääminen epäonnistui.", "Failed to add file.": "Tiedoston lisääminen epäonnistui.",
"Failed to add members": "",
"Failed to clear status": "",
"Failed to connect to {{URL}} OpenAPI tool server": "Yhdistäminen {{URL}} OpenAPI työkalu palvelimeen epäonnistui", "Failed to connect to {{URL}} OpenAPI tool server": "Yhdistäminen {{URL}} OpenAPI työkalu palvelimeen epäonnistui",
"Failed to copy link": "Linkin kopiointi epäonnistui", "Failed to copy link": "Linkin kopiointi epäonnistui",
"Failed to create API Key.": "API-avaimen luonti epäonnistui.", "Failed to create API Key.": "API-avaimen luonti epäonnistui.",
@ -717,12 +731,14 @@
"Failed to load file content.": "Tiedoston sisällön lataaminen epäonnistui.", "Failed to load file content.": "Tiedoston sisällön lataaminen epäonnistui.",
"Failed to move chat": "Keskustelun siirto epäonnistui", "Failed to move chat": "Keskustelun siirto epäonnistui",
"Failed to read clipboard contents": "Leikepöydän sisällön lukeminen epäonnistui", "Failed to read clipboard contents": "Leikepöydän sisällön lukeminen epäonnistui",
"Failed to remove member": "",
"Failed to render diagram": "Diagrammin renderöinti epäonnistui", "Failed to render diagram": "Diagrammin renderöinti epäonnistui",
"Failed to render visualization": "Visualisoinnin renderöinti epäonnistui", "Failed to render visualization": "Visualisoinnin renderöinti epäonnistui",
"Failed to save connections": "Yhteyksien tallentaminen epäonnistui", "Failed to save connections": "Yhteyksien tallentaminen epäonnistui",
"Failed to save conversation": "Keskustelun tallentaminen epäonnistui", "Failed to save conversation": "Keskustelun tallentaminen epäonnistui",
"Failed to save models configuration": "Mallien määrityksen tallentaminen epäonnistui", "Failed to save models configuration": "Mallien määrityksen tallentaminen epäonnistui",
"Failed to update settings": "Asetusten päivittäminen epäonnistui", "Failed to update settings": "Asetusten päivittäminen epäonnistui",
"Failed to update status": "",
"Failed to upload file.": "Tiedoston lataaminen epäonnistui.", "Failed to upload file.": "Tiedoston lataaminen epäonnistui.",
"Features": "Ominaisuudet", "Features": "Ominaisuudet",
"Features Permissions": "Ominaisuuksien käyttöoikeudet", "Features Permissions": "Ominaisuuksien käyttöoikeudet",
@ -816,11 +832,13 @@
"Google PSE Engine Id": "Google PSE -moottorin tunnus", "Google PSE Engine Id": "Google PSE -moottorin tunnus",
"Gravatar": "Gravatar", "Gravatar": "Gravatar",
"Group": "Ryhmä", "Group": "Ryhmä",
"Group Channel": "",
"Group created successfully": "Ryhmä luotu onnistuneesti", "Group created successfully": "Ryhmä luotu onnistuneesti",
"Group deleted successfully": "Ryhmä poistettu onnistuneesti", "Group deleted successfully": "Ryhmä poistettu onnistuneesti",
"Group Description": "Ryhmän kuvaus", "Group Description": "Ryhmän kuvaus",
"Group Name": "Ryhmän nimi", "Group Name": "Ryhmän nimi",
"Group updated successfully": "Ryhmä päivitetty onnistuneesti", "Group updated successfully": "Ryhmä päivitetty onnistuneesti",
"groups": "",
"Groups": "Ryhmät", "Groups": "Ryhmät",
"H1": "H1", "H1": "H1",
"H2": "H2", "H2": "H2",
@ -875,7 +893,6 @@
"Import Models": "", "Import Models": "",
"Import Notes": "Tuo muistiinpanoja", "Import Notes": "Tuo muistiinpanoja",
"Import Presets": "Tuo esiasetuksia", "Import Presets": "Tuo esiasetuksia",
"Import Prompt Suggestions": "Tuo kehote ehdotukset",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "Tuonti onnistui", "Import successful": "Tuonti onnistui",
"Import Tools": "", "Import Tools": "",
@ -1011,6 +1028,9 @@
"MCP": "MCP", "MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "MCP-tuki on kokeellinen ja sen määritykset muuttuvat usein, mikä voi johtaa yhteensopivuus ongelmiin. OpenAPI-määritysten tuesta vastaa suoraan Open WebUI -tiimi, joten se on luotettavampi vaihtoehto yhteensopivuuden kannalta.", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "MCP-tuki on kokeellinen ja sen määritykset muuttuvat usein, mikä voi johtaa yhteensopivuus ongelmiin. OpenAPI-määritysten tuesta vastaa suoraan Open WebUI -tiimi, joten se on luotettavampi vaihtoehto yhteensopivuuden kannalta.",
"Medium": "Keskitaso", "Medium": "Keskitaso",
"Member removed successfully": "",
"Members": "",
"Members added successfully": "",
"Memories accessible by LLMs will be shown here.": "Muistitiedostot, joita LLM-ohjelmat käyttävät, näkyvät tässä.", "Memories accessible by LLMs will be shown here.": "Muistitiedostot, joita LLM-ohjelmat käyttävät, näkyvät tässä.",
"Memory": "Muisti", "Memory": "Muisti",
"Memory added successfully": "Muisti lisätty onnistuneesti", "Memory added successfully": "Muisti lisätty onnistuneesti",
@ -1110,6 +1130,7 @@
"No models selected": "Malleja ei ole valittu", "No models selected": "Malleja ei ole valittu",
"No Notes": "Ei muistiinpanoja", "No Notes": "Ei muistiinpanoja",
"No notes found": "Muistiinpanoja ei löytynyt", "No notes found": "Muistiinpanoja ei löytynyt",
"No pinned messages": "",
"No prompts found": "Kehoitteita ei löytynyt", "No prompts found": "Kehoitteita ei löytynyt",
"No results": "Ei tuloksia", "No results": "Ei tuloksia",
"No results found": "Ei tuloksia", "No results found": "Ei tuloksia",
@ -1157,6 +1178,7 @@
"Only alphanumeric characters and hyphens are allowed in the command string.": "Vain kirjaimet, numerot ja väliviivat ovat sallittuja komentosarjassa.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Vain kirjaimet, numerot ja väliviivat ovat sallittuja komentosarjassa.",
"Only can be triggered when the chat input is in focus.": "Voidaan laukaista vain, kun tekstikenttä on kohdistettuna.", "Only can be triggered when the chat input is in focus.": "Voidaan laukaista vain, kun tekstikenttä on kohdistettuna.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Vain kokoelmia voi muokata, luo uusi tietokanta muokataksesi/lisätäksesi asiakirjoja.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Vain kokoelmia voi muokata, luo uusi tietokanta muokataksesi/lisätäksesi asiakirjoja.",
"Only invited users can access": "",
"Only markdown files are allowed": "Vain markdown tiedostot ovat sallittuja", "Only markdown files are allowed": "Vain markdown tiedostot ovat sallittuja",
"Only select users and groups with permission can access": "Vain valitut käyttäjät ja ryhmät, joilla on käyttöoikeus, pääsevät käyttämään", "Only select users and groups with permission can access": "Vain valitut käyttäjät ja ryhmät, joilla on käyttöoikeus, pääsevät käyttämään",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "Hups! Näyttää siltä, että verkko-osoite on virheellinen. Tarkista se ja yritä uudelleen.", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Hups! Näyttää siltä, että verkko-osoite on virheellinen. Tarkista se ja yritä uudelleen.",
@ -1219,6 +1241,7 @@
"Personalization": "Personointi", "Personalization": "Personointi",
"Pin": "Kiinnitä", "Pin": "Kiinnitä",
"Pinned": "Kiinnitetty", "Pinned": "Kiinnitetty",
"Pinned Messages": "",
"Pioneer insights": "Pioneerin oivalluksia", "Pioneer insights": "Pioneerin oivalluksia",
"Pipe": "Putki", "Pipe": "Putki",
"Pipeline deleted successfully": "Putki poistettu onnistuneesti", "Pipeline deleted successfully": "Putki poistettu onnistuneesti",
@ -1261,9 +1284,9 @@
"Previous 7 days": "Edelliset 7 päivää", "Previous 7 days": "Edelliset 7 päivää",
"Previous message": "Edellinen viesti", "Previous message": "Edellinen viesti",
"Private": "Yksityinen", "Private": "Yksityinen",
"Private conversation between selected users": "",
"Profile": "Profiili", "Profile": "Profiili",
"Prompt": "Kehote", "Prompt": "Kehote",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Kehote (esim. Kerro hauska fakta Rooman valtakunnasta)",
"Prompt Autocompletion": "Kehotteen automaattinen täydennys", "Prompt Autocompletion": "Kehotteen automaattinen täydennys",
"Prompt Content": "Kehotteen sisältö", "Prompt Content": "Kehotteen sisältö",
"Prompt created successfully": "Kehote luotu onnistuneesti", "Prompt created successfully": "Kehote luotu onnistuneesti",
@ -1449,6 +1472,7 @@
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Aseta työntekijäsäikeiden määrä laskentaa varten. Tämä asetus kontrolloi, kuinka monta säiettä käytetään saapuvien pyyntöjen rinnakkaiseen käsittelyyn. Arvon kasvattaminen voi parantaa suorituskykyä suurissa samanaikaisissa työkuormissa, mutta voi myös kuluttaa enemmän keskussuorittimen resursseja.", "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Aseta työntekijäsäikeiden määrä laskentaa varten. Tämä asetus kontrolloi, kuinka monta säiettä käytetään saapuvien pyyntöjen rinnakkaiseen käsittelyyn. Arvon kasvattaminen voi parantaa suorituskykyä suurissa samanaikaisissa työkuormissa, mutta voi myös kuluttaa enemmän keskussuorittimen resursseja.",
"Set Voice": "Aseta puheääni", "Set Voice": "Aseta puheääni",
"Set whisper model": "Aseta whisper-malli", "Set whisper model": "Aseta whisper-malli",
"Set your status": "",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "", "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "", "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets how far back for the model to look back to prevent repetition.": "Määrittää kuinka kauas taaksepäin malli katsoo toistumisen estämiseksi.", "Sets how far back for the model to look back to prevent repetition.": "Määrittää kuinka kauas taaksepäin malli katsoo toistumisen estämiseksi.",
@ -1501,6 +1525,9 @@
"Start a new conversation": "Aloita uusi keskustelu", "Start a new conversation": "Aloita uusi keskustelu",
"Start of the channel": "Kanavan alku", "Start of the channel": "Kanavan alku",
"Start Tag": "Aloitus tagi", "Start Tag": "Aloitus tagi",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
"Status Updates": "Tila päivitykset", "Status Updates": "Tila päivitykset",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Steps": "Askeleet", "Steps": "Askeleet",
@ -1516,7 +1543,7 @@
"STT Model": "Puheentunnistusmalli", "STT Model": "Puheentunnistusmalli",
"STT Settings": "Puheentunnistuksen asetukset", "STT Settings": "Puheentunnistuksen asetukset",
"Stylized PDF Export": "Muotoiltun PDF-vienti", "Stylized PDF Export": "Muotoiltun PDF-vienti",
"Subtitle (e.g. about the Roman Empire)": "Alaotsikko (esim. Rooman valtakunta)", "Subtitle": "",
"Success": "Onnistui", "Success": "Onnistui",
"Successfully imported {{userCount}} users.": "{{userCount}} käyttäjää tuottiin onnistuneesti.", "Successfully imported {{userCount}} users.": "{{userCount}} käyttäjää tuottiin onnistuneesti.",
"Successfully updated.": "Päivitetty onnistuneesti.", "Successfully updated.": "Päivitetty onnistuneesti.",
@ -1599,7 +1626,6 @@
"Tika Server URL required.": "Tika palvelimen verkko-osoite vaaditaan.", "Tika Server URL required.": "Tika palvelimen verkko-osoite vaaditaan.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Title": "Otsikko", "Title": "Otsikko",
"Title (e.g. Tell me a fun fact)": "Otsikko (esim. Kerro hauska fakta)",
"Title Auto-Generation": "Otsikon automaattinen luonti", "Title Auto-Generation": "Otsikon automaattinen luonti",
"Title cannot be an empty string.": "Otsikko ei voi olla tyhjä merkkijono.", "Title cannot be an empty string.": "Otsikko ei voi olla tyhjä merkkijono.",
"Title Generation": "Otsikon luonti", "Title Generation": "Otsikon luonti",
@ -1668,6 +1694,7 @@
"Update and Copy Link": "Päivitä ja kopioi linkki", "Update and Copy Link": "Päivitä ja kopioi linkki",
"Update for the latest features and improvements.": "Päivitä uusimpiin ominaisuuksiin ja parannuksiin.", "Update for the latest features and improvements.": "Päivitä uusimpiin ominaisuuksiin ja parannuksiin.",
"Update password": "Päivitä salasana", "Update password": "Päivitä salasana",
"Update your status": "",
"Updated": "Päivitetty", "Updated": "Päivitetty",
"Updated at": "Päivitetty", "Updated at": "Päivitetty",
"Updated At": "Päivitetty", "Updated At": "Päivitetty",
@ -1721,6 +1748,7 @@
"View Replies": "Näytä vastaukset", "View Replies": "Näytä vastaukset",
"View Result from **{{NAME}}**": "Näytä **{{NAME}}** tulokset", "View Result from **{{NAME}}**": "Näytä **{{NAME}}** tulokset",
"Visibility": "Näkyvyys", "Visibility": "Näkyvyys",
"Visible to all users": "",
"Vision": "Visio", "Vision": "Visio",
"Voice": "Ääni", "Voice": "Ääni",
"Voice Input": "Äänitulolaitteen käyttö", "Voice Input": "Äänitulolaitteen käyttö",
@ -1748,6 +1776,7 @@
"What are you trying to achieve?": "Mitä yrität saavuttaa?", "What are you trying to achieve?": "Mitä yrität saavuttaa?",
"What are you working on?": "Mitä olet työskentelemässä?", "What are you working on?": "Mitä olet työskentelemässä?",
"What's New in": "Mitä uutta", "What's New in": "Mitä uutta",
"What's on your mind?": "",
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Kun käytössä, malli vastaa jokaiseen chatviestiin reaaliajassa, tuottaen vastauksen heti kun käyttäjä lähettää viestin. Tämä tila on hyödyllinen reaaliaikaisissa chat-sovelluksissa, mutta voi vaikuttaa suorituskykyyn hitaammilla laitteistoilla.", "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Kun käytössä, malli vastaa jokaiseen chatviestiin reaaliajassa, tuottaen vastauksen heti kun käyttäjä lähettää viestin. Tämä tila on hyödyllinen reaaliaikaisissa chat-sovelluksissa, mutta voi vaikuttaa suorituskykyyn hitaammilla laitteistoilla.",
"wherever you are": "missä tahansa oletkin", "wherever you are": "missä tahansa oletkin",
"Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Sivutetaanko tuloste. Jokainen sivu erotetaan toisistaan vaakasuoralla viivalla ja sivunumerolla. Oletusarvo ei käytössä.", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Sivutetaanko tuloste. Jokainen sivu erotetaan toisistaan vaakasuoralla viivalla ja sivunumerolla. Oletusarvo ei käytössä.",

View file

@ -18,11 +18,15 @@
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
"{{model}} download has been canceled": "", "{{model}} download has been canceled": "",
"{{NAMES}} reacted with {{REACTION}}": "",
"{{user}}'s Chats": "Conversations de {{user}}", "{{user}}'s Chats": "Conversations de {{user}}",
"{{webUIName}} Backend Required": "Backend {{webUIName}} requis", "{{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", "*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 Source": "", "1 Source": "",
"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.", "A new version (v{{LATEST_VERSION}}) is now available.": "Une nouvelle version (v{{LATEST_VERSION}}) est disponible.",
"A private conversation between you and selected users": "",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Un modèle de tâche est utilisé lors de l'exécution de tâches telles que la génération de titres pour les conversations et les requêtes de recherche sur le web.", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Un modèle de tâche est utilisé lors de l'exécution de tâches telles que la génération de titres pour les conversations et les requêtes de recherche sur le web.",
"a user": "un utilisateur", "a user": "un utilisateur",
"About": "À propos", "About": "À propos",
@ -53,7 +57,8 @@
"Add Custom Prompt": "", "Add Custom Prompt": "",
"Add Details": "", "Add Details": "",
"Add Files": "Ajouter des fichiers", "Add Files": "Ajouter des fichiers",
"Add Group": "Ajouter un groupe", "Add Member": "",
"Add Members": "",
"Add Memory": "Ajouter un souvenir", "Add Memory": "Ajouter un souvenir",
"Add Model": "Ajouter un modèle", "Add Model": "Ajouter un modèle",
"Add Reaction": "Ajouter une réaction", "Add Reaction": "Ajouter une réaction",
@ -252,6 +257,7 @@
"Citations": "Citations", "Citations": "Citations",
"Clear memory": "Effacer la mémoire", "Clear memory": "Effacer la mémoire",
"Clear Memory": "Effacer la mémoire", "Clear Memory": "Effacer la mémoire",
"Clear status": "",
"click here": "cliquez ici", "click here": "cliquez ici",
"Click here for filter guides.": "Cliquez ici pour les guides de filtrage.", "Click here for filter guides.": "Cliquez ici pour les guides de filtrage.",
"Click here for help.": "Cliquez ici pour obtenir de l'aide.", "Click here for help.": "Cliquez ici pour obtenir de l'aide.",
@ -288,6 +294,7 @@
"Code Interpreter": "Interpreteur de code", "Code Interpreter": "Interpreteur de code",
"Code Interpreter Engine": "Moteur de l'interpreteur de code", "Code Interpreter Engine": "Moteur de l'interpreteur de code",
"Code Interpreter Prompt Template": "Modèle d'invite pour l'interpréteur de code", "Code Interpreter Prompt Template": "Modèle d'invite pour l'interpréteur de code",
"Collaboration channel where people join as members": "",
"Collapse": "Réduire", "Collapse": "Réduire",
"Collection": "Collection", "Collection": "Collection",
"Color": "Couleur", "Color": "Couleur",
@ -447,6 +454,7 @@
"Discover, download, and explore custom prompts": "Découvrez, téléchargez et explorez des prompts personnalisés", "Discover, download, and explore custom prompts": "Découvrez, téléchargez et explorez des prompts personnalisés",
"Discover, download, and explore custom tools": "Découvrez, téléchargez et explorez des outils personnalisés", "Discover, download, and explore custom tools": "Découvrez, téléchargez et explorez des outils personnalisés",
"Discover, download, and explore model presets": "Découvrir, télécharger et explorer des préréglages de modèles", "Discover, download, and explore model presets": "Découvrir, télécharger et explorer des préréglages de modèles",
"Discussion channel where access is based on groups and permissions": "",
"Display": "Afficher", "Display": "Afficher",
"Display chat title in tab": "", "Display chat title in tab": "",
"Display Emoji in Call": "Afficher les emojis pendant l'appel", "Display Emoji in Call": "Afficher les emojis pendant l'appel",
@ -463,6 +471,7 @@
"Document": "Document", "Document": "Document",
"Document Intelligence": "Intelligence documentaire", "Document Intelligence": "Intelligence documentaire",
"Document Intelligence endpoint required.": "", "Document Intelligence endpoint required.": "",
"Document Intelligence Model": "",
"Documentation": "Documentation", "Documentation": "Documentation",
"Documents": "Documents", "Documents": "Documents",
"does not make any external connections, and your data stays securely on your locally hosted server.": "n'établit aucune connexion externe et garde vos données en sécurité sur votre serveur local.", "does not make any external connections, and your data stays securely on your locally hosted server.": "n'établit aucune connexion externe et garde vos données en sécurité sur votre serveur local.",
@ -485,12 +494,15 @@
"e.g. \"json\" or a JSON schema": "par ex. \"json\" ou un schéma JSON", "e.g. \"json\" or a JSON schema": "par ex. \"json\" ou un schéma JSON",
"e.g. 60": "par ex. 60", "e.g. 60": "par ex. 60",
"e.g. A filter to remove profanity from text": "par ex. un filtre pour retirer les vulgarités du texte", "e.g. A filter to remove profanity from text": "par ex. un filtre pour retirer les vulgarités du texte",
"e.g. about the Roman Empire": "",
"e.g. en": "par ex. fr", "e.g. en": "par ex. fr",
"e.g. My Filter": "par ex. Mon Filtre", "e.g. My Filter": "par ex. Mon Filtre",
"e.g. My Tools": "par ex. Mes Outils", "e.g. My Tools": "par ex. Mes Outils",
"e.g. my_filter": "par ex. mon_filtre", "e.g. my_filter": "par ex. mon_filtre",
"e.g. my_tools": "par ex. mes_outils", "e.g. my_tools": "par ex. mes_outils",
"e.g. pdf, docx, txt": "par ex. pdf, docx, txt", "e.g. pdf, docx, txt": "par ex. pdf, docx, txt",
"e.g. Tell me a fun fact": "",
"e.g. Tell me a fun fact about the Roman Empire": "",
"e.g. Tools for performing various operations": "par ex. Outils pour effectuer diverses opérations", "e.g. Tools for performing various operations": "par ex. Outils pour effectuer diverses opérations",
"e.g., 3, 4, 5 (leave blank for default)": "par ex., 3, 4, 5 (laisser vide pour par défaut)", "e.g., 3, 4, 5 (leave blank for default)": "par ex., 3, 4, 5 (laisser vide pour par défaut)",
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "", "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
@ -564,6 +576,7 @@
"Enter Docling Server URL": "Entrez l'url du serveur Docling", "Enter Docling Server URL": "Entrez l'url du serveur Docling",
"Enter Document Intelligence Endpoint": "Entrez le point d'extension d'Intelligence documentaire", "Enter Document Intelligence Endpoint": "Entrez le point d'extension d'Intelligence documentaire",
"Enter Document Intelligence Key": "Entrez la clé du sevice d'Intelligence documentaire", "Enter Document Intelligence Key": "Entrez la clé du sevice d'Intelligence documentaire",
"Enter Document Intelligence Model": "",
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "", "Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
"Enter Exa API Key": "Entrez la clé d'api de Exa", "Enter Exa API Key": "Entrez la clé d'api de Exa",
"Enter External Document Loader API Key": "Entrez la clé API du chargeur de documents externe", "Enter External Document Loader API Key": "Entrez la clé API du chargeur de documents externe",
@ -689,7 +702,6 @@
"Export Config to JSON File": "Exporter la configuration vers un fichier JSON", "Export Config to JSON File": "Exporter la configuration vers un fichier JSON",
"Export Models": "", "Export Models": "",
"Export Presets": "Exporter les préréglages", "Export Presets": "Exporter les préréglages",
"Export Prompt Suggestions": "Exporter les suggestions de prompt",
"Export Prompts": "", "Export Prompts": "",
"Export to CSV": "Exporter en CSV", "Export to CSV": "Exporter en CSV",
"Export Tools": "", "Export Tools": "",
@ -704,6 +716,8 @@
"External Web Search URL": "URL de la recherche Web externe", "External Web Search URL": "URL de la recherche Web externe",
"Fade Effect for Streaming Text": "", "Fade Effect for Streaming Text": "",
"Failed to add file.": "Échec de l'ajout du fichier.", "Failed to add file.": "Échec de l'ajout du fichier.",
"Failed to add members": "",
"Failed to clear status": "",
"Failed to connect to {{URL}} OpenAPI tool server": "Échec de la connexion au serveur d'outils OpenAPI {{URL}}", "Failed to connect to {{URL}} OpenAPI tool server": "Échec de la connexion au serveur d'outils OpenAPI {{URL}}",
"Failed to copy link": "Échec de la copie du lien", "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 create API Key.": "Échec de la création de la clé API.",
@ -717,12 +731,14 @@
"Failed to load file content.": "Échec du chargement du contenu du fichier", "Failed to load file content.": "Échec du chargement du contenu du fichier",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to read clipboard contents": "Échec de la lecture du contenu du presse-papiers", "Failed to read clipboard contents": "Échec de la lecture du contenu du presse-papiers",
"Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
"Failed to render visualization": "", "Failed to render visualization": "",
"Failed to save connections": "Échec de la sauvegarde des connexions", "Failed to save connections": "Échec de la sauvegarde des connexions",
"Failed to save conversation": "Échec de la sauvegarde de la conversation", "Failed to save conversation": "Échec de la sauvegarde de la conversation",
"Failed to save models configuration": "Échec de la sauvegarde de la configuration des modèles", "Failed to save models configuration": "Échec de la sauvegarde de la configuration des modèles",
"Failed to update settings": "Échec de la mise à jour des réglages", "Failed to update settings": "Échec de la mise à jour des réglages",
"Failed to update status": "",
"Failed to upload file.": "Échec du téléversement du fichier.", "Failed to upload file.": "Échec du téléversement du fichier.",
"Features": "Fonctionnalités", "Features": "Fonctionnalités",
"Features Permissions": "Autorisations des fonctionnalités", "Features Permissions": "Autorisations des fonctionnalités",
@ -816,11 +832,13 @@
"Google PSE Engine Id": "ID du moteur de recherche PSE de Google", "Google PSE Engine Id": "ID du moteur de recherche PSE de Google",
"Gravatar": "", "Gravatar": "",
"Group": "Groupe", "Group": "Groupe",
"Group Channel": "",
"Group created successfully": "Groupe créé avec succès", "Group created successfully": "Groupe créé avec succès",
"Group deleted successfully": "Groupe supprimé avec succès", "Group deleted successfully": "Groupe supprimé avec succès",
"Group Description": "Description du groupe", "Group Description": "Description du groupe",
"Group Name": "Nom du groupe", "Group Name": "Nom du groupe",
"Group updated successfully": "Groupe mis à jour avec succès", "Group updated successfully": "Groupe mis à jour avec succès",
"groups": "",
"Groups": "Groupes", "Groups": "Groupes",
"H1": "", "H1": "",
"H2": "", "H2": "",
@ -875,7 +893,6 @@
"Import Models": "", "Import Models": "",
"Import Notes": "Importer des notes", "Import Notes": "Importer des notes",
"Import Presets": "Importer les préréglages", "Import Presets": "Importer les préréglages",
"Import Prompt Suggestions": "Importer des suggestions de prompt",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
"Import Tools": "", "Import Tools": "",
@ -1011,6 +1028,9 @@
"MCP": "", "MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Medium": "", "Medium": "",
"Member removed successfully": "",
"Members": "",
"Members added successfully": "",
"Memories accessible by LLMs will be shown here.": "Les souvenirs accessibles par les LLMs seront affichées ici.", "Memories accessible by LLMs will be shown here.": "Les souvenirs accessibles par les LLMs seront affichées ici.",
"Memory": "Mémoire", "Memory": "Mémoire",
"Memory added successfully": "Souvenir ajoutée avec succès", "Memory added successfully": "Souvenir ajoutée avec succès",
@ -1110,6 +1130,7 @@
"No models selected": "Aucun modèle sélectionné", "No models selected": "Aucun modèle sélectionné",
"No Notes": "Pas de note", "No Notes": "Pas de note",
"No notes found": "", "No notes found": "",
"No pinned messages": "",
"No prompts found": "", "No prompts found": "",
"No results": "Aucun résultat trouvé", "No results": "Aucun résultat trouvé",
"No results found": "Aucun résultat trouvé", "No results found": "Aucun résultat trouvé",
@ -1157,6 +1178,7 @@
"Only alphanumeric characters and hyphens are allowed in the command string.": "Seuls les caractères alphanumériques et les tirets sont autorisés dans la chaîne de commande.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Seuls les caractères alphanumériques et les tirets sont autorisés dans la chaîne de commande.",
"Only can be triggered when the chat input is in focus.": "", "Only can be triggered when the chat input is in focus.": "",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Seules les collections peuvent être modifiées, créez une nouvelle base de connaissance pour modifier/ajouter des documents.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Seules les collections peuvent être modifiées, créez une nouvelle base de connaissance pour modifier/ajouter des documents.",
"Only invited users can access": "",
"Only markdown files are allowed": "Seul les fichiers markdown sont autorisés", "Only markdown files are allowed": "Seul les fichiers markdown sont autorisés",
"Only select users and groups with permission can access": "Seuls les utilisateurs et groupes autorisés peuvent accéder", "Only select users and groups with permission can access": "Seuls les utilisateurs et groupes autorisés peuvent accéder",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "Oups ! Il semble que l'URL soit invalide. Veuillez vérifier à nouveau et réessayer.", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Oups ! Il semble que l'URL soit invalide. Veuillez vérifier à nouveau et réessayer.",
@ -1219,6 +1241,7 @@
"Personalization": "Personnalisation", "Personalization": "Personnalisation",
"Pin": "Épingler", "Pin": "Épingler",
"Pinned": "Épinglé", "Pinned": "Épinglé",
"Pinned Messages": "",
"Pioneer insights": "Explorer de nouvelles perspectives", "Pioneer insights": "Explorer de nouvelles perspectives",
"Pipe": "Pipeline", "Pipe": "Pipeline",
"Pipeline deleted successfully": "Le pipeline a été supprimé avec succès", "Pipeline deleted successfully": "Le pipeline a été supprimé avec succès",
@ -1261,9 +1284,9 @@
"Previous 7 days": "7 derniers jours", "Previous 7 days": "7 derniers jours",
"Previous message": "Message précédent", "Previous message": "Message précédent",
"Private": "Privé", "Private": "Privé",
"Private conversation between selected users": "",
"Profile": "Profil", "Profile": "Profil",
"Prompt": "Prompt", "Prompt": "Prompt",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (par ex. Dites-moi un fait amusant à propos de l'Empire romain)",
"Prompt Autocompletion": "Autocomplétion de prompt", "Prompt Autocompletion": "Autocomplétion de prompt",
"Prompt Content": "Contenu du prompt", "Prompt Content": "Contenu du prompt",
"Prompt created successfully": "Prompt créé avec succès", "Prompt created successfully": "Prompt créé avec succès",
@ -1450,6 +1473,7 @@
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Définir le nombre de threads de travail utilisés pour le calcul. Cette option contrôle combien de threads sont utilisés pour traiter les demandes entrantes simultanément. L'augmentation de cette valeur peut améliorer les performances sous de fortes charges de travail concurrentes mais peut également consommer plus de ressources CPU.", "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Définir le nombre de threads de travail utilisés pour le calcul. Cette option contrôle combien de threads sont utilisés pour traiter les demandes entrantes simultanément. L'augmentation de cette valeur peut améliorer les performances sous de fortes charges de travail concurrentes mais peut également consommer plus de ressources CPU.",
"Set Voice": "Choisir la voix", "Set Voice": "Choisir la voix",
"Set whisper model": "Choisir le modèle Whisper", "Set whisper model": "Choisir le modèle Whisper",
"Set your status": "",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Applique un biais uniforme contre les jetons déjà apparus. Une valeur élevée (ex. : 1,5) pénalise fortement les répétitions, une valeur faible (ex. : 0,9) les tolère davantage. À 0, ce réglage est désactivé.", "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Applique un biais uniforme contre les jetons déjà apparus. Une valeur élevée (ex. : 1,5) pénalise fortement les répétitions, une valeur faible (ex. : 0,9) les tolère davantage. À 0, ce réglage est désactivé.",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Applique un biais progressif contre les jetons en fonction de leur fréquence d'apparition. Une valeur plus élevée les pénalise davantage ; une valeur plus faible est plus indulgente. À 0, ce réglage est désactivé.", "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Applique un biais progressif contre les jetons en fonction de leur fréquence d'apparition. Une valeur plus élevée les pénalise davantage ; une valeur plus faible est plus indulgente. À 0, ce réglage est désactivé.",
"Sets how far back for the model to look back to prevent repetition.": "Définit la profondeur de rétrospection du modèle pour éviter les répétitions.", "Sets how far back for the model to look back to prevent repetition.": "Définit la profondeur de rétrospection du modèle pour éviter les répétitions.",
@ -1502,6 +1526,9 @@
"Start a new conversation": "", "Start a new conversation": "",
"Start of the channel": "Début du canal", "Start of the channel": "Début du canal",
"Start Tag": "", "Start Tag": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Steps": "", "Steps": "",
@ -1517,7 +1544,7 @@
"STT Model": "Modèle de Speech-to-Text", "STT Model": "Modèle de Speech-to-Text",
"STT Settings": "Réglages de Speech-to-Text", "STT Settings": "Réglages de Speech-to-Text",
"Stylized PDF Export": "Export de PDF stylisés", "Stylized PDF Export": "Export de PDF stylisés",
"Subtitle (e.g. about the Roman Empire)": "Sous-titres (par ex. sur l'Empire romain)", "Subtitle": "",
"Success": "Réussite", "Success": "Réussite",
"Successfully imported {{userCount}} users.": "", "Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Mise à jour réussie.", "Successfully updated.": "Mise à jour réussie.",
@ -1600,7 +1627,6 @@
"Tika Server URL required.": "URL du serveur Tika requise.", "Tika Server URL required.": "URL du serveur Tika requise.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Title": "Titre", "Title": "Titre",
"Title (e.g. Tell me a fun fact)": "Titre (par ex. raconte-moi un fait amusant)",
"Title Auto-Generation": "Génération automatique des titres", "Title Auto-Generation": "Génération automatique des titres",
"Title cannot be an empty string.": "Le titre ne peut pas être une chaîne de caractères vide.", "Title cannot be an empty string.": "Le titre ne peut pas être une chaîne de caractères vide.",
"Title Generation": "Génération du Titre", "Title Generation": "Génération du Titre",
@ -1669,6 +1695,7 @@
"Update and Copy Link": "Mettre à jour et copier le lien", "Update and Copy Link": "Mettre à jour et copier le lien",
"Update for the latest features and improvements.": "Mettez à jour pour bénéficier des dernières fonctionnalités et améliorations.", "Update for the latest features and improvements.": "Mettez à jour pour bénéficier des dernières fonctionnalités et améliorations.",
"Update password": "Mettre à jour le mot de passe", "Update password": "Mettre à jour le mot de passe",
"Update your status": "",
"Updated": "Mis à jour", "Updated": "Mis à jour",
"Updated at": "Mise à jour le", "Updated at": "Mise à jour le",
"Updated At": "Mise à jour le", "Updated At": "Mise à jour le",
@ -1722,6 +1749,7 @@
"View Replies": "Voir les réponses", "View Replies": "Voir les réponses",
"View Result from **{{NAME}}**": "Voir le résultat de **{{NAME}}**", "View Result from **{{NAME}}**": "Voir le résultat de **{{NAME}}**",
"Visibility": "Visibilité", "Visibility": "Visibilité",
"Visible to all users": "",
"Vision": "Vision", "Vision": "Vision",
"Voice": "Voix", "Voice": "Voix",
"Voice Input": "Saisie vocale", "Voice Input": "Saisie vocale",
@ -1749,6 +1777,7 @@
"What are you trying to achieve?": "Que cherchez-vous à accomplir ?", "What are you trying to achieve?": "Que cherchez-vous à accomplir ?",
"What are you working on?": "Sur quoi travaillez-vous ?", "What are you working on?": "Sur quoi travaillez-vous ?",
"What's New in": "Quoi de neuf dans", "What's New in": "Quoi de neuf dans",
"What's on your mind?": "",
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Lorsqu'il est activé, le modèle répondra à chaque message de la conversation en temps réel, générant une réponse dès que l'utilisateur envoie un message. Ce mode est utile pour les applications de conversation en direct, mais peut affecter les performances sur un matériel plus lent.", "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Lorsqu'il est activé, le modèle répondra à chaque message de la conversation en temps réel, générant une réponse dès que l'utilisateur envoie un message. Ce mode est utile pour les applications de conversation en direct, mais peut affecter les performances sur un matériel plus lent.",
"wherever you are": "où que vous soyez", "wherever you are": "où que vous soyez",
"Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Indique si la sortie doit être paginée. Chaque page sera séparée par une règle horizontale et un numéro de page. La valeur par défaut est False.", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Indique si la sortie doit être paginée. Chaque page sera séparée par une règle horizontale et un numéro de page. La valeur par défaut est False.",

View file

@ -18,11 +18,15 @@
"{{COUNT}} words": "{{COUNT}} mots", "{{COUNT}} words": "{{COUNT}} mots",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} à {{LOCALIZED_TIME}}", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} à {{LOCALIZED_TIME}}",
"{{model}} download has been canceled": "Le téléchargement de {{model}} a été annulé", "{{model}} download has been canceled": "Le téléchargement de {{model}} a été annulé",
"{{NAMES}} reacted with {{REACTION}}": "",
"{{user}}'s Chats": "Conversations de {{user}}", "{{user}}'s Chats": "Conversations de {{user}}",
"{{webUIName}} Backend Required": "Backend {{webUIName}} requis", "{{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", "*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 Source": "1 Source", "1 Source": "1 Source",
"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.", "A new version (v{{LATEST_VERSION}}) is now available.": "Une nouvelle version (v{{LATEST_VERSION}}) est disponible.",
"A private conversation between you and selected users": "",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Un modèle de tâche est utilisé lors de l'exécution de tâches telles que la génération de titres pour les conversations et les requêtes de recherche sur le web.", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Un modèle de tâche est utilisé lors de l'exécution de tâches telles que la génération de titres pour les conversations et les requêtes de recherche sur le web.",
"a user": "un utilisateur", "a user": "un utilisateur",
"About": "À propos", "About": "À propos",
@ -53,7 +57,8 @@
"Add Custom Prompt": "", "Add Custom Prompt": "",
"Add Details": "Ajouter des détails", "Add Details": "Ajouter des détails",
"Add Files": "Ajouter des fichiers", "Add Files": "Ajouter des fichiers",
"Add Group": "Ajouter un groupe", "Add Member": "",
"Add Members": "",
"Add Memory": "Ajouter un souvenir", "Add Memory": "Ajouter un souvenir",
"Add Model": "Ajouter un modèle", "Add Model": "Ajouter un modèle",
"Add Reaction": "Ajouter une réaction", "Add Reaction": "Ajouter une réaction",
@ -252,6 +257,7 @@
"Citations": "Citations", "Citations": "Citations",
"Clear memory": "Effacer la mémoire", "Clear memory": "Effacer la mémoire",
"Clear Memory": "Effacer la mémoire", "Clear Memory": "Effacer la mémoire",
"Clear status": "",
"click here": "cliquez ici", "click here": "cliquez ici",
"Click here for filter guides.": "Cliquez ici pour les guides de filtrage.", "Click here for filter guides.": "Cliquez ici pour les guides de filtrage.",
"Click here for help.": "Cliquez ici pour obtenir de l'aide.", "Click here for help.": "Cliquez ici pour obtenir de l'aide.",
@ -288,6 +294,7 @@
"Code Interpreter": "Interpreteur de code", "Code Interpreter": "Interpreteur de code",
"Code Interpreter Engine": "Moteur de l'interpreteur de code", "Code Interpreter Engine": "Moteur de l'interpreteur de code",
"Code Interpreter Prompt Template": "Modèle d'invite pour l'interpréteur de code", "Code Interpreter Prompt Template": "Modèle d'invite pour l'interpréteur de code",
"Collaboration channel where people join as members": "",
"Collapse": "Réduire", "Collapse": "Réduire",
"Collection": "Collection", "Collection": "Collection",
"Color": "Couleur", "Color": "Couleur",
@ -447,6 +454,7 @@
"Discover, download, and explore custom prompts": "Découvrez, téléchargez et explorez des prompts personnalisés", "Discover, download, and explore custom prompts": "Découvrez, téléchargez et explorez des prompts personnalisés",
"Discover, download, and explore custom tools": "Découvrez, téléchargez et explorez des outils personnalisés", "Discover, download, and explore custom tools": "Découvrez, téléchargez et explorez des outils personnalisés",
"Discover, download, and explore model presets": "Découvrir, télécharger et explorer des préréglages de modèles", "Discover, download, and explore model presets": "Découvrir, télécharger et explorer des préréglages de modèles",
"Discussion channel where access is based on groups and permissions": "",
"Display": "Afficher", "Display": "Afficher",
"Display chat title in tab": "", "Display chat title in tab": "",
"Display Emoji in Call": "Afficher les emojis pendant l'appel", "Display Emoji in Call": "Afficher les emojis pendant l'appel",
@ -463,6 +471,7 @@
"Document": "Document", "Document": "Document",
"Document Intelligence": "Intelligence documentaire", "Document Intelligence": "Intelligence documentaire",
"Document Intelligence endpoint required.": "Point de terminaison Document Intelligence requis.", "Document Intelligence endpoint required.": "Point de terminaison Document Intelligence requis.",
"Document Intelligence Model": "",
"Documentation": "Documentation", "Documentation": "Documentation",
"Documents": "Documents", "Documents": "Documents",
"does not make any external connections, and your data stays securely on your locally hosted server.": "n'établit aucune connexion externe et garde vos données en sécurité sur votre serveur local.", "does not make any external connections, and your data stays securely on your locally hosted server.": "n'établit aucune connexion externe et garde vos données en sécurité sur votre serveur local.",
@ -485,12 +494,15 @@
"e.g. \"json\" or a JSON schema": "par ex. \"json\" ou un schéma JSON", "e.g. \"json\" or a JSON schema": "par ex. \"json\" ou un schéma JSON",
"e.g. 60": "par ex. 60", "e.g. 60": "par ex. 60",
"e.g. A filter to remove profanity from text": "par ex. un filtre pour retirer les vulgarités du texte", "e.g. A filter to remove profanity from text": "par ex. un filtre pour retirer les vulgarités du texte",
"e.g. about the Roman Empire": "",
"e.g. en": "par ex. fr", "e.g. en": "par ex. fr",
"e.g. My Filter": "par ex. Mon Filtre", "e.g. My Filter": "par ex. Mon Filtre",
"e.g. My Tools": "par ex. Mes Outils", "e.g. My Tools": "par ex. Mes Outils",
"e.g. my_filter": "par ex. mon_filtre", "e.g. my_filter": "par ex. mon_filtre",
"e.g. my_tools": "par ex. mes_outils", "e.g. my_tools": "par ex. mes_outils",
"e.g. pdf, docx, txt": "par ex. pdf, docx, txt", "e.g. pdf, docx, txt": "par ex. pdf, docx, txt",
"e.g. Tell me a fun fact": "",
"e.g. Tell me a fun fact about the Roman Empire": "",
"e.g. Tools for performing various operations": "par ex. Outils pour effectuer diverses opérations", "e.g. Tools for performing various operations": "par ex. Outils pour effectuer diverses opérations",
"e.g., 3, 4, 5 (leave blank for default)": "par ex., 3, 4, 5 (laisser vide pour par défaut)", "e.g., 3, 4, 5 (leave blank for default)": "par ex., 3, 4, 5 (laisser vide pour par défaut)",
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "Ex : audio/wav,audio/mpeg,video/* (laisser vide pour les valeurs par défaut)", "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "Ex : audio/wav,audio/mpeg,video/* (laisser vide pour les valeurs par défaut)",
@ -564,6 +576,7 @@
"Enter Docling Server URL": "Entrez l'url du serveur Docling", "Enter Docling Server URL": "Entrez l'url du serveur Docling",
"Enter Document Intelligence Endpoint": "Entrez le point d'extension d'Intelligence documentaire", "Enter Document Intelligence Endpoint": "Entrez le point d'extension d'Intelligence documentaire",
"Enter Document Intelligence Key": "Entrez la clé du sevice d'Intelligence documentaire", "Enter Document Intelligence Key": "Entrez la clé du sevice d'Intelligence documentaire",
"Enter Document Intelligence Model": "",
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "", "Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
"Enter Exa API Key": "Entrez la clé d'api de Exa", "Enter Exa API Key": "Entrez la clé d'api de Exa",
"Enter External Document Loader API Key": "Entrez la clé API du chargeur de documents externe", "Enter External Document Loader API Key": "Entrez la clé API du chargeur de documents externe",
@ -689,7 +702,6 @@
"Export Config to JSON File": "Exporter la configuration vers un fichier JSON", "Export Config to JSON File": "Exporter la configuration vers un fichier JSON",
"Export Models": "", "Export Models": "",
"Export Presets": "Exporter les préréglages", "Export Presets": "Exporter les préréglages",
"Export Prompt Suggestions": "Exporter les suggestions de prompt",
"Export Prompts": "", "Export Prompts": "",
"Export to CSV": "Exporter en CSV", "Export to CSV": "Exporter en CSV",
"Export Tools": "", "Export Tools": "",
@ -704,6 +716,8 @@
"External Web Search URL": "URL de la recherche Web externe", "External Web Search URL": "URL de la recherche Web externe",
"Fade Effect for Streaming Text": "Effet de fondu pour le texte en streaming", "Fade Effect for Streaming Text": "Effet de fondu pour le texte en streaming",
"Failed to add file.": "Échec de l'ajout du fichier.", "Failed to add file.": "Échec de l'ajout du fichier.",
"Failed to add members": "",
"Failed to clear status": "",
"Failed to connect to {{URL}} OpenAPI tool server": "Échec de la connexion au serveur d'outils OpenAPI {{URL}}", "Failed to connect to {{URL}} OpenAPI tool server": "Échec de la connexion au serveur d'outils OpenAPI {{URL}}",
"Failed to copy link": "Échec de la copie du lien", "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 create API Key.": "Échec de la création de la clé API.",
@ -717,12 +731,14 @@
"Failed to load file content.": "Échec du chargement du contenu du fichier", "Failed to load file content.": "Échec du chargement du contenu du fichier",
"Failed to move chat": "Échec du déplacement du chat", "Failed to move chat": "Échec du déplacement du chat",
"Failed to read clipboard contents": "Échec de la lecture du contenu du presse-papiers", "Failed to read clipboard contents": "Échec de la lecture du contenu du presse-papiers",
"Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
"Failed to render visualization": "", "Failed to render visualization": "",
"Failed to save connections": "Échec de la sauvegarde des connexions", "Failed to save connections": "Échec de la sauvegarde des connexions",
"Failed to save conversation": "Échec de la sauvegarde de la conversation", "Failed to save conversation": "Échec de la sauvegarde de la conversation",
"Failed to save models configuration": "Échec de la sauvegarde de la configuration des modèles", "Failed to save models configuration": "Échec de la sauvegarde de la configuration des modèles",
"Failed to update settings": "Échec de la mise à jour des réglages", "Failed to update settings": "Échec de la mise à jour des réglages",
"Failed to update status": "",
"Failed to upload file.": "Échec du téléversement du fichier.", "Failed to upload file.": "Échec du téléversement du fichier.",
"Features": "Fonctionnalités", "Features": "Fonctionnalités",
"Features Permissions": "Autorisations des fonctionnalités", "Features Permissions": "Autorisations des fonctionnalités",
@ -816,11 +832,13 @@
"Google PSE Engine Id": "ID du moteur de recherche PSE de Google", "Google PSE Engine Id": "ID du moteur de recherche PSE de Google",
"Gravatar": "", "Gravatar": "",
"Group": "Groupe", "Group": "Groupe",
"Group Channel": "",
"Group created successfully": "Groupe créé avec succès", "Group created successfully": "Groupe créé avec succès",
"Group deleted successfully": "Groupe supprimé avec succès", "Group deleted successfully": "Groupe supprimé avec succès",
"Group Description": "Description du groupe", "Group Description": "Description du groupe",
"Group Name": "Nom du groupe", "Group Name": "Nom du groupe",
"Group updated successfully": "Groupe mis à jour avec succès", "Group updated successfully": "Groupe mis à jour avec succès",
"groups": "",
"Groups": "Groupes", "Groups": "Groupes",
"H1": "", "H1": "",
"H2": "", "H2": "",
@ -875,7 +893,6 @@
"Import Models": "", "Import Models": "",
"Import Notes": "Importer des notes", "Import Notes": "Importer des notes",
"Import Presets": "Importer les préréglages", "Import Presets": "Importer les préréglages",
"Import Prompt Suggestions": "Importer des suggestions de prompt",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
"Import Tools": "", "Import Tools": "",
@ -1011,6 +1028,9 @@
"MCP": "", "MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Medium": "Moyen", "Medium": "Moyen",
"Member removed successfully": "",
"Members": "",
"Members added successfully": "",
"Memories accessible by LLMs will be shown here.": "Les souvenirs accessibles par les LLMs seront affichées ici.", "Memories accessible by LLMs will be shown here.": "Les souvenirs accessibles par les LLMs seront affichées ici.",
"Memory": "Mémoire", "Memory": "Mémoire",
"Memory added successfully": "Souvenir ajoutée avec succès", "Memory added successfully": "Souvenir ajoutée avec succès",
@ -1110,6 +1130,7 @@
"No models selected": "Aucun modèle sélectionné", "No models selected": "Aucun modèle sélectionné",
"No Notes": "Pas de note", "No Notes": "Pas de note",
"No notes found": "Aucune note trouvée", "No notes found": "Aucune note trouvée",
"No pinned messages": "",
"No prompts found": "", "No prompts found": "",
"No results": "Aucun résultat trouvé", "No results": "Aucun résultat trouvé",
"No results found": "Aucun résultat trouvé", "No results found": "Aucun résultat trouvé",
@ -1157,6 +1178,7 @@
"Only alphanumeric characters and hyphens are allowed in the command string.": "Seuls les caractères alphanumériques et les tirets sont autorisés dans la chaîne de commande.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Seuls les caractères alphanumériques et les tirets sont autorisés dans la chaîne de commande.",
"Only can be triggered when the chat input is in focus.": "", "Only can be triggered when the chat input is in focus.": "",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Seules les collections peuvent être modifiées, créez une nouvelle base de connaissance pour modifier/ajouter des documents.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Seules les collections peuvent être modifiées, créez une nouvelle base de connaissance pour modifier/ajouter des documents.",
"Only invited users can access": "",
"Only markdown files are allowed": "Seul les fichiers markdown sont autorisés", "Only markdown files are allowed": "Seul les fichiers markdown sont autorisés",
"Only select users and groups with permission can access": "Seuls les utilisateurs et groupes autorisés peuvent accéder", "Only select users and groups with permission can access": "Seuls les utilisateurs et groupes autorisés peuvent accéder",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "Oups ! Il semble que l'URL soit invalide. Veuillez vérifier à nouveau et réessayer.", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Oups ! Il semble que l'URL soit invalide. Veuillez vérifier à nouveau et réessayer.",
@ -1219,6 +1241,7 @@
"Personalization": "Personnalisation", "Personalization": "Personnalisation",
"Pin": "Épingler", "Pin": "Épingler",
"Pinned": "Épinglé", "Pinned": "Épinglé",
"Pinned Messages": "",
"Pioneer insights": "Explorer de nouvelles perspectives", "Pioneer insights": "Explorer de nouvelles perspectives",
"Pipe": "Pipeline", "Pipe": "Pipeline",
"Pipeline deleted successfully": "Le pipeline a été supprimé avec succès", "Pipeline deleted successfully": "Le pipeline a été supprimé avec succès",
@ -1261,9 +1284,9 @@
"Previous 7 days": "7 derniers jours", "Previous 7 days": "7 derniers jours",
"Previous message": "Message précédent", "Previous message": "Message précédent",
"Private": "Privé", "Private": "Privé",
"Private conversation between selected users": "",
"Profile": "Profil", "Profile": "Profil",
"Prompt": "Prompt", "Prompt": "Prompt",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (par ex. Dites-moi un fait amusant à propos de l'Empire romain)",
"Prompt Autocompletion": "Autocomplétion de prompt", "Prompt Autocompletion": "Autocomplétion de prompt",
"Prompt Content": "Contenu du prompt", "Prompt Content": "Contenu du prompt",
"Prompt created successfully": "Prompt créé avec succès", "Prompt created successfully": "Prompt créé avec succès",
@ -1450,6 +1473,7 @@
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Définir le nombre de threads de travail utilisés pour le calcul. Cette option contrôle combien de threads sont utilisés pour traiter les demandes entrantes simultanément. L'augmentation de cette valeur peut améliorer les performances sous de fortes charges de travail concurrentes mais peut également consommer plus de ressources CPU.", "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Définir le nombre de threads de travail utilisés pour le calcul. Cette option contrôle combien de threads sont utilisés pour traiter les demandes entrantes simultanément. L'augmentation de cette valeur peut améliorer les performances sous de fortes charges de travail concurrentes mais peut également consommer plus de ressources CPU.",
"Set Voice": "Choisir la voix", "Set Voice": "Choisir la voix",
"Set whisper model": "Choisir le modèle Whisper", "Set whisper model": "Choisir le modèle Whisper",
"Set your status": "",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Applique un biais uniforme contre les jetons déjà apparus. Une valeur élevée (ex. : 1,5) pénalise fortement les répétitions, une valeur faible (ex. : 0,9) les tolère davantage. À 0, ce réglage est désactivé.", "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Applique un biais uniforme contre les jetons déjà apparus. Une valeur élevée (ex. : 1,5) pénalise fortement les répétitions, une valeur faible (ex. : 0,9) les tolère davantage. À 0, ce réglage est désactivé.",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Applique un biais progressif contre les jetons en fonction de leur fréquence d'apparition. Une valeur plus élevée les pénalise davantage ; une valeur plus faible est plus indulgente. À 0, ce réglage est désactivé.", "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Applique un biais progressif contre les jetons en fonction de leur fréquence d'apparition. Une valeur plus élevée les pénalise davantage ; une valeur plus faible est plus indulgente. À 0, ce réglage est désactivé.",
"Sets how far back for the model to look back to prevent repetition.": "Définit la profondeur de rétrospection du modèle pour éviter les répétitions.", "Sets how far back for the model to look back to prevent repetition.": "Définit la profondeur de rétrospection du modèle pour éviter les répétitions.",
@ -1502,6 +1526,9 @@
"Start a new conversation": "", "Start a new conversation": "",
"Start of the channel": "Début du canal", "Start of the channel": "Début du canal",
"Start Tag": "Balise de départ", "Start Tag": "Balise de départ",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
"Status Updates": "Mises à jour de statut", "Status Updates": "Mises à jour de statut",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Steps": "", "Steps": "",
@ -1517,7 +1544,7 @@
"STT Model": "Modèle de Speech-to-Text", "STT Model": "Modèle de Speech-to-Text",
"STT Settings": "Réglages de Speech-to-Text", "STT Settings": "Réglages de Speech-to-Text",
"Stylized PDF Export": "Export de PDF stylisés", "Stylized PDF Export": "Export de PDF stylisés",
"Subtitle (e.g. about the Roman Empire)": "Sous-titres (par ex. sur l'Empire romain)", "Subtitle": "",
"Success": "Réussite", "Success": "Réussite",
"Successfully imported {{userCount}} users.": "{{userCount}} utilisateurs ont été importés avec succès.", "Successfully imported {{userCount}} users.": "{{userCount}} utilisateurs ont été importés avec succès.",
"Successfully updated.": "Mise à jour réussie.", "Successfully updated.": "Mise à jour réussie.",
@ -1600,7 +1627,6 @@
"Tika Server URL required.": "URL du serveur Tika requise.", "Tika Server URL required.": "URL du serveur Tika requise.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Title": "Titre", "Title": "Titre",
"Title (e.g. Tell me a fun fact)": "Titre (par ex. raconte-moi un fait amusant)",
"Title Auto-Generation": "Génération automatique des titres", "Title Auto-Generation": "Génération automatique des titres",
"Title cannot be an empty string.": "Le titre ne peut pas être une chaîne de caractères vide.", "Title cannot be an empty string.": "Le titre ne peut pas être une chaîne de caractères vide.",
"Title Generation": "Génération du Titre", "Title Generation": "Génération du Titre",
@ -1669,6 +1695,7 @@
"Update and Copy Link": "Mettre à jour et copier le lien", "Update and Copy Link": "Mettre à jour et copier le lien",
"Update for the latest features and improvements.": "Mettez à jour pour bénéficier des dernières fonctionnalités et améliorations.", "Update for the latest features and improvements.": "Mettez à jour pour bénéficier des dernières fonctionnalités et améliorations.",
"Update password": "Mettre à jour le mot de passe", "Update password": "Mettre à jour le mot de passe",
"Update your status": "",
"Updated": "Mis à jour", "Updated": "Mis à jour",
"Updated at": "Mise à jour le", "Updated at": "Mise à jour le",
"Updated At": "Mise à jour le", "Updated At": "Mise à jour le",
@ -1722,6 +1749,7 @@
"View Replies": "Voir les réponses", "View Replies": "Voir les réponses",
"View Result from **{{NAME}}**": "Voir le résultat de **{{NAME}}**", "View Result from **{{NAME}}**": "Voir le résultat de **{{NAME}}**",
"Visibility": "Visibilité", "Visibility": "Visibilité",
"Visible to all users": "",
"Vision": "Vision", "Vision": "Vision",
"Voice": "Voix", "Voice": "Voix",
"Voice Input": "Saisie vocale", "Voice Input": "Saisie vocale",
@ -1749,6 +1777,7 @@
"What are you trying to achieve?": "Que cherchez-vous à accomplir ?", "What are you trying to achieve?": "Que cherchez-vous à accomplir ?",
"What are you working on?": "Sur quoi travaillez-vous ?", "What are you working on?": "Sur quoi travaillez-vous ?",
"What's New in": "Quoi de neuf dans", "What's New in": "Quoi de neuf dans",
"What's on your mind?": "",
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Lorsqu'il est activé, le modèle répondra à chaque message de la conversation en temps réel, générant une réponse dès que l'utilisateur envoie un message. Ce mode est utile pour les applications de conversation en direct, mais peut affecter les performances sur un matériel plus lent.", "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Lorsqu'il est activé, le modèle répondra à chaque message de la conversation en temps réel, générant une réponse dès que l'utilisateur envoie un message. Ce mode est utile pour les applications de conversation en direct, mais peut affecter les performances sur un matériel plus lent.",
"wherever you are": "où que vous soyez", "wherever you are": "où que vous soyez",
"Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Indique si la sortie doit être paginée. Chaque page sera séparée par une règle horizontale et un numéro de page. La valeur par défaut est False.", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Indique si la sortie doit être paginée. Chaque page sera séparée par une règle horizontale et un numéro de page. La valeur par défaut est False.",

View file

@ -18,11 +18,15 @@
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
"{{model}} download has been canceled": "", "{{model}} download has been canceled": "",
"{{NAMES}} reacted with {{REACTION}}": "",
"{{user}}'s Chats": "Chats do {{user}}", "{{user}}'s Chats": "Chats do {{user}}",
"{{webUIName}} Backend Required": "{{webUIName}} Servidor Requerido", "{{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", "*Prompt node ID(s) are required for image generation": "Os ID do nodo son requeridos para a xeneración de imáxes",
"1 Source": "", "1 Source": "",
"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.", "A new version (v{{LATEST_VERSION}}) is now available.": "Unha nova versión (v{{LATEST_VERSION}}) está disponible.",
"A private conversation between you and selected users": "",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "o modelo de tarefas utilizase realizando tarefas como a xeneración de títulos para chats e consultas da búsqueda web", "A task model is used when performing tasks such as generating titles for chats and web search queries": "o modelo de tarefas utilizase realizando tarefas como a xeneración de títulos para chats e consultas da búsqueda web",
"a user": "un usuario", "a user": "un usuario",
"About": "Sobre nos", "About": "Sobre nos",
@ -53,7 +57,8 @@
"Add Custom Prompt": "", "Add Custom Prompt": "",
"Add Details": "", "Add Details": "",
"Add Files": "Agregar Arquivos", "Add Files": "Agregar Arquivos",
"Add Group": "Agregar Grupo", "Add Member": "",
"Add Members": "",
"Add Memory": "Agregar Memoria", "Add Memory": "Agregar Memoria",
"Add Model": "Agregar Modelo", "Add Model": "Agregar Modelo",
"Add Reaction": "Agregar Reacción", "Add Reaction": "Agregar Reacción",
@ -252,6 +257,7 @@
"Citations": "", "Citations": "",
"Clear memory": "Liberar memoria", "Clear memory": "Liberar memoria",
"Clear Memory": "Limpar memoria", "Clear Memory": "Limpar memoria",
"Clear status": "",
"click here": "Pica aquí", "click here": "Pica aquí",
"Click here for filter guides.": "Pica aquí para guías de filtros", "Click here for filter guides.": "Pica aquí para guías de filtros",
"Click here for help.": "Pica aquí para obter axuda.", "Click here for help.": "Pica aquí para obter axuda.",
@ -288,6 +294,7 @@
"Code Interpreter": "Interprete de Código", "Code Interpreter": "Interprete de Código",
"Code Interpreter Engine": "Motor interprete de código", "Code Interpreter Engine": "Motor interprete de código",
"Code Interpreter Prompt Template": "Exemplos de Prompt para o Interprete de Código", "Code Interpreter Prompt Template": "Exemplos de Prompt para o Interprete de Código",
"Collaboration channel where people join as members": "",
"Collapse": "Esconder", "Collapse": "Esconder",
"Collection": "Colección", "Collection": "Colección",
"Color": "Cor", "Color": "Cor",
@ -447,6 +454,7 @@
"Discover, download, and explore custom prompts": "Descubre, descarga, y explora Prompts personalizados", "Discover, download, and explore custom prompts": "Descubre, descarga, y explora Prompts personalizados",
"Discover, download, and explore custom tools": "Descubre, descarga y explora ferramentas personalizadas", "Discover, download, and explore custom tools": "Descubre, descarga y explora ferramentas personalizadas",
"Discover, download, and explore model presets": "Descubre, descarga y explora ajustes preestablecidos de modelos", "Discover, download, and explore model presets": "Descubre, descarga y explora ajustes preestablecidos de modelos",
"Discussion channel where access is based on groups and permissions": "",
"Display": "Mostrar", "Display": "Mostrar",
"Display chat title in tab": "", "Display chat title in tab": "",
"Display Emoji in Call": "Muestra Emoji en chamada", "Display Emoji in Call": "Muestra Emoji en chamada",
@ -463,6 +471,7 @@
"Document": "Documento", "Document": "Documento",
"Document Intelligence": "Inteligencia documental", "Document Intelligence": "Inteligencia documental",
"Document Intelligence endpoint required.": "", "Document Intelligence endpoint required.": "",
"Document Intelligence Model": "",
"Documentation": "Documentación", "Documentation": "Documentación",
"Documents": "Documentos", "Documents": "Documentos",
"does not make any external connections, and your data stays securely on your locally hosted server.": "non realiza ninguna conexión externa y sus datos permanecen seguros en su servidor alojado localmente.", "does not make any external connections, and your data stays securely on your locally hosted server.": "non realiza ninguna conexión externa y sus datos permanecen seguros en su servidor alojado localmente.",
@ -485,12 +494,15 @@
"e.g. \"json\" or a JSON schema": "", "e.g. \"json\" or a JSON schema": "",
"e.g. 60": "e.g. 60", "e.g. 60": "e.g. 60",
"e.g. A filter to remove profanity from text": "p.ej. Un filtro para eliminar a profanidade do texto", "e.g. A filter to remove profanity from text": "p.ej. Un filtro para eliminar a profanidade do texto",
"e.g. about the Roman Empire": "",
"e.g. en": "", "e.g. en": "",
"e.g. My Filter": "p.ej. O meu Filtro", "e.g. My Filter": "p.ej. O meu Filtro",
"e.g. My Tools": "p.ej. As miñas ferramentas", "e.g. My Tools": "p.ej. As miñas ferramentas",
"e.g. my_filter": "p.ej. meu_filtro", "e.g. my_filter": "p.ej. meu_filtro",
"e.g. my_tools": "p.ej. miñas_ferramentas", "e.g. my_tools": "p.ej. miñas_ferramentas",
"e.g. pdf, docx, txt": "", "e.g. pdf, docx, txt": "",
"e.g. Tell me a fun fact": "",
"e.g. Tell me a fun fact about the Roman Empire": "",
"e.g. Tools for performing various operations": "p.ej. ferramentas para realizar diversas operacions", "e.g. Tools for performing various operations": "p.ej. ferramentas para realizar diversas operacions",
"e.g., 3, 4, 5 (leave blank for default)": "", "e.g., 3, 4, 5 (leave blank for default)": "",
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "", "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
@ -564,6 +576,7 @@
"Enter Docling Server URL": "", "Enter Docling Server URL": "",
"Enter Document Intelligence Endpoint": "Ingrese o punto final de Intelixencia de Documentos", "Enter Document Intelligence Endpoint": "Ingrese o punto final de Intelixencia de Documentos",
"Enter Document Intelligence Key": "Ingrese a chave de Intelixencia de Documentos", "Enter Document Intelligence Key": "Ingrese a chave de Intelixencia de Documentos",
"Enter Document Intelligence Model": "",
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "", "Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
"Enter Exa API Key": "Ingrese a chave API de Exa", "Enter Exa API Key": "Ingrese a chave API de Exa",
"Enter External Document Loader API Key": "", "Enter External Document Loader API Key": "",
@ -689,7 +702,6 @@
"Export Config to JSON File": "Exportar configuración a Arquivo JSON", "Export Config to JSON File": "Exportar configuración a Arquivo JSON",
"Export Models": "", "Export Models": "",
"Export Presets": "Exportar ajustes preestablecidos", "Export Presets": "Exportar ajustes preestablecidos",
"Export Prompt Suggestions": "",
"Export Prompts": "", "Export Prompts": "",
"Export to CSV": "Exportar a CSV", "Export to CSV": "Exportar a CSV",
"Export Tools": "", "Export Tools": "",
@ -704,6 +716,8 @@
"External Web Search URL": "", "External Web Search URL": "",
"Fade Effect for Streaming Text": "", "Fade Effect for Streaming Text": "",
"Failed to add file.": "Non pudo agregarse o Arquivo.", "Failed to add file.": "Non pudo agregarse o Arquivo.",
"Failed to add members": "",
"Failed to clear status": "",
"Failed to connect to {{URL}} OpenAPI tool server": "", "Failed to connect to {{URL}} OpenAPI tool server": "",
"Failed to copy link": "", "Failed to copy link": "",
"Failed to create API Key.": "Non pudo xerarse a chave API.", "Failed to create API Key.": "Non pudo xerarse a chave API.",
@ -717,12 +731,14 @@
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to read clipboard contents": "Non pudo Lerse o contido do portapapeles", "Failed to read clipboard contents": "Non pudo Lerse o contido do portapapeles",
"Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
"Failed to render visualization": "", "Failed to render visualization": "",
"Failed to save connections": "", "Failed to save connections": "",
"Failed to save conversation": "Non puido gardarse a conversa", "Failed to save conversation": "Non puido gardarse a conversa",
"Failed to save models configuration": "Non pudogardarse a configuración de os modelos", "Failed to save models configuration": "Non pudogardarse a configuración de os modelos",
"Failed to update settings": "Falla al actualizar os ajustes", "Failed to update settings": "Falla al actualizar os ajustes",
"Failed to update status": "",
"Failed to upload file.": "Falla al subir o Arquivo.", "Failed to upload file.": "Falla al subir o Arquivo.",
"Features": "Características", "Features": "Características",
"Features Permissions": "Permisos de características", "Features Permissions": "Permisos de características",
@ -816,11 +832,13 @@
"Google PSE Engine Id": "ID do motor PSE de Google", "Google PSE Engine Id": "ID do motor PSE de Google",
"Gravatar": "", "Gravatar": "",
"Group": "Grupo", "Group": "Grupo",
"Group Channel": "",
"Group created successfully": "Grupo creado correctamente", "Group created successfully": "Grupo creado correctamente",
"Group deleted successfully": "Grupo eliminado correctamente", "Group deleted successfully": "Grupo eliminado correctamente",
"Group Description": "Descripción do grupo", "Group Description": "Descripción do grupo",
"Group Name": "Nome do grupo", "Group Name": "Nome do grupo",
"Group updated successfully": "Grupo actualizado correctamente", "Group updated successfully": "Grupo actualizado correctamente",
"groups": "",
"Groups": "Grupos", "Groups": "Grupos",
"H1": "", "H1": "",
"H2": "", "H2": "",
@ -875,7 +893,6 @@
"Import Models": "", "Import Models": "",
"Import Notes": "", "Import Notes": "",
"Import Presets": "Importar ajustes preestablecidos", "Import Presets": "Importar ajustes preestablecidos",
"Import Prompt Suggestions": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
"Import Tools": "", "Import Tools": "",
@ -1011,6 +1028,9 @@
"MCP": "", "MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Medium": "", "Medium": "",
"Member removed successfully": "",
"Members": "",
"Members added successfully": "",
"Memories accessible by LLMs will be shown here.": "As memorias accesibles por os LLMs mostraránse aquí.", "Memories accessible by LLMs will be shown here.": "As memorias accesibles por os LLMs mostraránse aquí.",
"Memory": "Memoria", "Memory": "Memoria",
"Memory added successfully": "Memoria añadida correctamente", "Memory added successfully": "Memoria añadida correctamente",
@ -1110,6 +1130,7 @@
"No models selected": "No se seleccionaron modelos", "No models selected": "No se seleccionaron modelos",
"No Notes": "", "No Notes": "",
"No notes found": "", "No notes found": "",
"No pinned messages": "",
"No prompts found": "", "No prompts found": "",
"No results": "No se han encontrado resultados", "No results": "No se han encontrado resultados",
"No results found": "No se han encontrado resultados", "No results found": "No se han encontrado resultados",
@ -1157,6 +1178,7 @@
"Only alphanumeric characters and hyphens are allowed in the command string.": "Sólo se permiten caracteres alfanuméricos y guiones en a cadena de comando.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Sólo se permiten caracteres alfanuméricos y guiones en a cadena de comando.",
"Only can be triggered when the chat input is in focus.": "", "Only can be triggered when the chat input is in focus.": "",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Solo se pueden editar as coleccions, xerar unha nova base de coñecementos para editar / añadir documentos", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Solo se pueden editar as coleccions, xerar unha nova base de coñecementos para editar / añadir documentos",
"Only invited users can access": "",
"Only markdown files are allowed": "", "Only markdown files are allowed": "",
"Only select users and groups with permission can access": "Solo os usuarios y grupos con permiso pueden acceder", "Only select users and groups with permission can access": "Solo os usuarios y grupos con permiso pueden acceder",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "¡Ups! Parece que a URL no es válida. Vuelva a verificar e inténtelo novamente.", "Oops! Looks like the URL is invalid. Please double-check and try again.": "¡Ups! Parece que a URL no es válida. Vuelva a verificar e inténtelo novamente.",
@ -1219,6 +1241,7 @@
"Personalization": "Personalización", "Personalization": "Personalización",
"Pin": "Fijar", "Pin": "Fijar",
"Pinned": "Fijado", "Pinned": "Fijado",
"Pinned Messages": "",
"Pioneer insights": "Descubrir novas perspectivas", "Pioneer insights": "Descubrir novas perspectivas",
"Pipe": "", "Pipe": "",
"Pipeline deleted successfully": "Pipeline borrada exitosamente", "Pipeline deleted successfully": "Pipeline borrada exitosamente",
@ -1261,9 +1284,9 @@
"Previous 7 days": "Últimos 7 días", "Previous 7 days": "Últimos 7 días",
"Previous message": "", "Previous message": "",
"Private": "", "Private": "",
"Private conversation between selected users": "",
"Profile": "Perfil", "Profile": "Perfil",
"Prompt": "Prompt", "Prompt": "Prompt",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (por Exemplo, cuéntame unha cosa divertida sobre o Imperio Romano)",
"Prompt Autocompletion": "", "Prompt Autocompletion": "",
"Prompt Content": "Contenido do Prompt", "Prompt Content": "Contenido do Prompt",
"Prompt created successfully": "Prompt creado exitosamente", "Prompt created successfully": "Prompt creado exitosamente",
@ -1449,6 +1472,7 @@
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Establece o número de hilos de trabajo utilizados para o cálculo. Esta opción controla cuántos hilos se utilizan para procesar as solicitudes entrantes simultáneamente. Aumentar este valor puede mejorar o rendimiento bajo cargas de trabajo de alta concurrencia, pero también puede consumir mais recursos de CPU.", "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Establece o número de hilos de trabajo utilizados para o cálculo. Esta opción controla cuántos hilos se utilizan para procesar as solicitudes entrantes simultáneamente. Aumentar este valor puede mejorar o rendimiento bajo cargas de trabajo de alta concurrencia, pero también puede consumir mais recursos de CPU.",
"Set Voice": "Establecer la voz", "Set Voice": "Establecer la voz",
"Set whisper model": "Establecer modelo de whisper", "Set whisper model": "Establecer modelo de whisper",
"Set your status": "",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Establece un sesgo plano contra os tokens que han aparecido al menos una vez. Un valor más alto (por Exemplo, 1.5) penalizará más fuertemente las repeticiones, mientras que un valor más bajo (por Exemplo, 0.9) será más indulgente. En 0, está deshabilitado.", "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Establece un sesgo plano contra os tokens que han aparecido al menos una vez. Un valor más alto (por Exemplo, 1.5) penalizará más fuertemente las repeticiones, mientras que un valor más bajo (por Exemplo, 0.9) será más indulgente. En 0, está deshabilitado.",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Establece un sesgo de escala contra os tokens para penalizar las repeticiones, basado en cuántas veces han aparecido. Un valor más alto (por Exemplo, 1.5) penalizará más fuertemente las repeticiones, mientras que un valor más bajo (por Exemplo, 0.9) será más indulgente. En 0, está deshabilitado.", "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Establece un sesgo de escala contra os tokens para penalizar las repeticiones, basado en cuántas veces han aparecido. Un valor más alto (por Exemplo, 1.5) penalizará más fuertemente las repeticiones, mientras que un valor más bajo (por Exemplo, 0.9) será más indulgente. En 0, está deshabilitado.",
"Sets how far back for the model to look back to prevent repetition.": "Establece canto tempo debe retroceder o modelo para evitar a repetición.", "Sets how far back for the model to look back to prevent repetition.": "Establece canto tempo debe retroceder o modelo para evitar a repetición.",
@ -1501,6 +1525,9 @@
"Start a new conversation": "", "Start a new conversation": "",
"Start of the channel": "Inicio da canle", "Start of the channel": "Inicio da canle",
"Start Tag": "", "Start Tag": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Steps": "", "Steps": "",
@ -1516,7 +1543,7 @@
"STT Model": "Modelo STT", "STT Model": "Modelo STT",
"STT Settings": "Configuracions de STT", "STT Settings": "Configuracions de STT",
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Subtítulo (por Exemplo, sobre o Imperio Romano)", "Subtitle": "",
"Success": "Éxito", "Success": "Éxito",
"Successfully imported {{userCount}} users.": "", "Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Actualizado exitosamente.", "Successfully updated.": "Actualizado exitosamente.",
@ -1599,7 +1626,6 @@
"Tika Server URL required.": "URL do servidor de Tika", "Tika Server URL required.": "URL do servidor de Tika",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Title": "Título", "Title": "Título",
"Title (e.g. Tell me a fun fact)": "Título (por Exemplo, cóntame unha curiosidad)",
"Title Auto-Generation": "xeneración automática de títulos", "Title Auto-Generation": "xeneración automática de títulos",
"Title cannot be an empty string.": "O título non pode ser unha cadena vacía.", "Title cannot be an empty string.": "O título non pode ser unha cadena vacía.",
"Title Generation": "Xeneración de titulos", "Title Generation": "Xeneración de titulos",
@ -1668,6 +1694,7 @@
"Update and Copy Link": "Actualizar y copiar enlace", "Update and Copy Link": "Actualizar y copiar enlace",
"Update for the latest features and improvements.": "Actualize para as últimas características e mejoras.", "Update for the latest features and improvements.": "Actualize para as últimas características e mejoras.",
"Update password": "Actualizar contrasinal ", "Update password": "Actualizar contrasinal ",
"Update your status": "",
"Updated": "Actualizado", "Updated": "Actualizado",
"Updated at": "Actualizado en", "Updated at": "Actualizado en",
"Updated At": "Actualizado en", "Updated At": "Actualizado en",
@ -1721,6 +1748,7 @@
"View Replies": "Ver respuestas", "View Replies": "Ver respuestas",
"View Result from **{{NAME}}**": "", "View Result from **{{NAME}}**": "",
"Visibility": "Visibilidad", "Visibility": "Visibilidad",
"Visible to all users": "",
"Vision": "", "Vision": "",
"Voice": "Voz", "Voice": "Voz",
"Voice Input": "Entrada de voz", "Voice Input": "Entrada de voz",
@ -1748,6 +1776,7 @@
"What are you trying to achieve?": "¿Qué estás tratando de lograr?", "What are you trying to achieve?": "¿Qué estás tratando de lograr?",
"What are you working on?": "¿En qué estás trabajando?", "What are you working on?": "¿En qué estás trabajando?",
"What's New in": "Novedades en", "What's New in": "Novedades en",
"What's on your mind?": "",
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Cando está habilitado, o modelo responderá a cada mensaxe de chat en tempo real, generando unha resposta tan pronto como o usuario envíe un mensaxe. Este modo es útil para aplicacions de chat en vivo, pero puede afectar o rendimiento en hardware mais lento.", "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Cando está habilitado, o modelo responderá a cada mensaxe de chat en tempo real, generando unha resposta tan pronto como o usuario envíe un mensaxe. Este modo es útil para aplicacions de chat en vivo, pero puede afectar o rendimiento en hardware mais lento.",
"wherever you are": "Donde queira que estés", "wherever you are": "Donde queira que estés",
"Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "",

View file

@ -18,11 +18,15 @@
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
"{{model}} download has been canceled": "", "{{model}} download has been canceled": "",
"{{NAMES}} reacted with {{REACTION}}": "",
"{{user}}'s Chats": "צ'אטים של {{user}}", "{{user}}'s Chats": "צ'אטים של {{user}}",
"{{webUIName}} Backend Required": "נדרש Backend של {{webUIName}}", "{{webUIName}} Backend Required": "נדרש Backend של {{webUIName}}",
"*Prompt node ID(s) are required for image generation": "", "*Prompt node ID(s) are required for image generation": "",
"1 Source": "", "1 Source": "",
"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.": "", "A new version (v{{LATEST_VERSION}}) is now available.": "",
"A private conversation between you and selected users": "",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "מודל משימה משמש בעת ביצוע משימות כגון יצירת כותרות עבור צ'אטים ושאילתות חיפוש באינטרנט", "A task model is used when performing tasks such as generating titles for chats and web search queries": "מודל משימה משמש בעת ביצוע משימות כגון יצירת כותרות עבור צ'אטים ושאילתות חיפוש באינטרנט",
"a user": "משתמש", "a user": "משתמש",
"About": "אודות", "About": "אודות",
@ -53,7 +57,8 @@
"Add Custom Prompt": "", "Add Custom Prompt": "",
"Add Details": "", "Add Details": "",
"Add Files": "הוסף קבצים", "Add Files": "הוסף קבצים",
"Add Group": "הוסף קבוצה", "Add Member": "",
"Add Members": "",
"Add Memory": "הוסף זיכרון", "Add Memory": "הוסף זיכרון",
"Add Model": "הוסף מודל", "Add Model": "הוסף מודל",
"Add Reaction": "", "Add Reaction": "",
@ -252,6 +257,7 @@
"Citations": "", "Citations": "",
"Clear memory": "נקה זיכרון", "Clear memory": "נקה זיכרון",
"Clear Memory": "נקה", "Clear Memory": "נקה",
"Clear status": "",
"click here": "לחץ פה", "click here": "לחץ פה",
"Click here for filter guides.": "", "Click here for filter guides.": "",
"Click here for help.": "לחץ כאן לעזרה.", "Click here for help.": "לחץ כאן לעזרה.",
@ -288,6 +294,7 @@
"Code Interpreter": "", "Code Interpreter": "",
"Code Interpreter Engine": "", "Code Interpreter Engine": "",
"Code Interpreter Prompt Template": "", "Code Interpreter Prompt Template": "",
"Collaboration channel where people join as members": "",
"Collapse": "", "Collapse": "",
"Collection": "אוסף", "Collection": "אוסף",
"Color": "צבע", "Color": "צבע",
@ -447,6 +454,7 @@
"Discover, download, and explore custom prompts": "גלה, הורד, וחקור פקודות מותאמות אישית", "Discover, download, and explore custom prompts": "גלה, הורד, וחקור פקודות מותאמות אישית",
"Discover, download, and explore custom tools": "", "Discover, download, and explore custom tools": "",
"Discover, download, and explore model presets": "גלה, הורד, וחקור הגדרות מודל מוגדרות מראש", "Discover, download, and explore model presets": "גלה, הורד, וחקור הגדרות מודל מוגדרות מראש",
"Discussion channel where access is based on groups and permissions": "",
"Display": "", "Display": "",
"Display chat title in tab": "", "Display chat title in tab": "",
"Display Emoji in Call": "", "Display Emoji in Call": "",
@ -463,6 +471,7 @@
"Document": "מסמך", "Document": "מסמך",
"Document Intelligence": "", "Document Intelligence": "",
"Document Intelligence endpoint required.": "", "Document Intelligence endpoint required.": "",
"Document Intelligence Model": "",
"Documentation": "", "Documentation": "",
"Documents": "מסמכים", "Documents": "מסמכים",
"does not make any external connections, and your data stays securely on your locally hosted server.": "לא מבצע חיבורים חיצוניים, והנתונים שלך נשמרים באופן מאובטח בשרת המקומי שלך.", "does not make any external connections, and your data stays securely on your locally hosted server.": "לא מבצע חיבורים חיצוניים, והנתונים שלך נשמרים באופן מאובטח בשרת המקומי שלך.",
@ -485,12 +494,15 @@
"e.g. \"json\" or a JSON schema": "", "e.g. \"json\" or a JSON schema": "",
"e.g. 60": "", "e.g. 60": "",
"e.g. A filter to remove profanity from text": "", "e.g. A filter to remove profanity from text": "",
"e.g. about the Roman Empire": "",
"e.g. en": "", "e.g. en": "",
"e.g. My Filter": "", "e.g. My Filter": "",
"e.g. My Tools": "", "e.g. My Tools": "",
"e.g. my_filter": "", "e.g. my_filter": "",
"e.g. my_tools": "", "e.g. my_tools": "",
"e.g. pdf, docx, txt": "", "e.g. pdf, docx, txt": "",
"e.g. Tell me a fun fact": "",
"e.g. Tell me a fun fact about the Roman Empire": "",
"e.g. Tools for performing various operations": "", "e.g. Tools for performing various operations": "",
"e.g., 3, 4, 5 (leave blank for default)": "", "e.g., 3, 4, 5 (leave blank for default)": "",
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "", "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
@ -564,6 +576,7 @@
"Enter Docling Server URL": "", "Enter Docling Server URL": "",
"Enter Document Intelligence Endpoint": "", "Enter Document Intelligence Endpoint": "",
"Enter Document Intelligence Key": "", "Enter Document Intelligence Key": "",
"Enter Document Intelligence Model": "",
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "", "Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
"Enter Exa API Key": "", "Enter Exa API Key": "",
"Enter External Document Loader API Key": "", "Enter External Document Loader API Key": "",
@ -689,7 +702,6 @@
"Export Config to JSON File": "", "Export Config to JSON File": "",
"Export Models": "", "Export Models": "",
"Export Presets": "", "Export Presets": "",
"Export Prompt Suggestions": "",
"Export Prompts": "", "Export Prompts": "",
"Export to CSV": "", "Export to CSV": "",
"Export Tools": "", "Export Tools": "",
@ -704,6 +716,8 @@
"External Web Search URL": "", "External Web Search URL": "",
"Fade Effect for Streaming Text": "", "Fade Effect for Streaming Text": "",
"Failed to add file.": "", "Failed to add file.": "",
"Failed to add members": "",
"Failed to clear status": "",
"Failed to connect to {{URL}} OpenAPI tool server": "", "Failed to connect to {{URL}} OpenAPI tool server": "",
"Failed to copy link": "", "Failed to copy link": "",
"Failed to create API Key.": "יצירת מפתח API נכשלה.", "Failed to create API Key.": "יצירת מפתח API נכשלה.",
@ -717,12 +731,14 @@
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to read clipboard contents": "קריאת תוכן הלוח נכשלה", "Failed to read clipboard contents": "קריאת תוכן הלוח נכשלה",
"Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
"Failed to render visualization": "", "Failed to render visualization": "",
"Failed to save connections": "", "Failed to save connections": "",
"Failed to save conversation": "שמירת השיחה נכשלה", "Failed to save conversation": "שמירת השיחה נכשלה",
"Failed to save models configuration": "", "Failed to save models configuration": "",
"Failed to update settings": "", "Failed to update settings": "",
"Failed to update status": "",
"Failed to upload file.": "", "Failed to upload file.": "",
"Features": "", "Features": "",
"Features Permissions": "", "Features Permissions": "",
@ -816,11 +832,13 @@
"Google PSE Engine Id": "מזהה מנוע PSE של Google", "Google PSE Engine Id": "מזהה מנוע PSE של Google",
"Gravatar": "", "Gravatar": "",
"Group": "קבוצה", "Group": "קבוצה",
"Group Channel": "",
"Group created successfully": "", "Group created successfully": "",
"Group deleted successfully": "", "Group deleted successfully": "",
"Group Description": "", "Group Description": "",
"Group Name": "", "Group Name": "",
"Group updated successfully": "", "Group updated successfully": "",
"groups": "",
"Groups": "קבוצות", "Groups": "קבוצות",
"H1": "", "H1": "",
"H2": "", "H2": "",
@ -875,7 +893,6 @@
"Import Models": "", "Import Models": "",
"Import Notes": "ייבוא פתקים", "Import Notes": "ייבוא פתקים",
"Import Presets": "", "Import Presets": "",
"Import Prompt Suggestions": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
"Import Tools": "", "Import Tools": "",
@ -1011,6 +1028,9 @@
"MCP": "", "MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Medium": "", "Medium": "",
"Member removed successfully": "",
"Members": "",
"Members added successfully": "",
"Memories accessible by LLMs will be shown here.": "מזכירים נגישים על ידי LLMs יוצגו כאן.", "Memories accessible by LLMs will be shown here.": "מזכירים נגישים על ידי LLMs יוצגו כאן.",
"Memory": "זיכרון", "Memory": "זיכרון",
"Memory added successfully": "", "Memory added successfully": "",
@ -1110,6 +1130,7 @@
"No models selected": "", "No models selected": "",
"No Notes": "", "No Notes": "",
"No notes found": "", "No notes found": "",
"No pinned messages": "",
"No prompts found": "", "No prompts found": "",
"No results": "לא נמצאו תוצאות", "No results": "לא נמצאו תוצאות",
"No results found": "לא נמצאו תוצאות", "No results found": "לא נמצאו תוצאות",
@ -1157,6 +1178,7 @@
"Only alphanumeric characters and hyphens are allowed in the command string.": "רק תווים אלפאנומריים ומקפים מותרים במחרוזת הפקודה.", "Only alphanumeric characters and hyphens are allowed in the command string.": "רק תווים אלפאנומריים ומקפים מותרים במחרוזת הפקודה.",
"Only can be triggered when the chat input is in focus.": "", "Only can be triggered when the chat input is in focus.": "",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "", "Only collections can be edited, create a new knowledge base to edit/add documents.": "",
"Only invited users can access": "",
"Only markdown files are allowed": "", "Only markdown files are allowed": "",
"Only select users and groups with permission can access": "", "Only select users and groups with permission can access": "",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "אופס! נראה שהכתובת URL אינה תקינה. אנא בדוק שוב ונסה שנית.", "Oops! Looks like the URL is invalid. Please double-check and try again.": "אופס! נראה שהכתובת URL אינה תקינה. אנא בדוק שוב ונסה שנית.",
@ -1219,6 +1241,7 @@
"Personalization": "תאור", "Personalization": "תאור",
"Pin": "", "Pin": "",
"Pinned": "", "Pinned": "",
"Pinned Messages": "",
"Pioneer insights": "", "Pioneer insights": "",
"Pipe": "", "Pipe": "",
"Pipeline deleted successfully": "", "Pipeline deleted successfully": "",
@ -1261,9 +1284,9 @@
"Previous 7 days": "7 הימים הקודמים", "Previous 7 days": "7 הימים הקודמים",
"Previous message": "", "Previous message": "",
"Private": "", "Private": "",
"Private conversation between selected users": "",
"Profile": "פרופיל", "Profile": "פרופיל",
"Prompt": "", "Prompt": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "פקודה (למשל, ספר לי עובדה מעניינת על האימפריה הרומית)",
"Prompt Autocompletion": "", "Prompt Autocompletion": "",
"Prompt Content": "תוכן הפקודה", "Prompt Content": "תוכן הפקודה",
"Prompt created successfully": "", "Prompt created successfully": "",
@ -1450,6 +1473,7 @@
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "", "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
"Set Voice": "הגדר קול", "Set Voice": "הגדר קול",
"Set whisper model": "", "Set whisper model": "",
"Set your status": "",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "", "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "", "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets how far back for the model to look back to prevent repetition.": "", "Sets how far back for the model to look back to prevent repetition.": "",
@ -1502,6 +1526,9 @@
"Start a new conversation": "", "Start a new conversation": "",
"Start of the channel": "תחילת הערוץ", "Start of the channel": "תחילת הערוץ",
"Start Tag": "", "Start Tag": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Steps": "", "Steps": "",
@ -1517,7 +1544,7 @@
"STT Model": "", "STT Model": "",
"STT Settings": "הגדרות חקירה של TTS", "STT Settings": "הגדרות חקירה של TTS",
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "תחקור (לדוגמה: על מעמד הרומי)", "Subtitle": "",
"Success": "הצלחה", "Success": "הצלחה",
"Successfully imported {{userCount}} users.": "", "Successfully imported {{userCount}} users.": "",
"Successfully updated.": "עדכון הצלחה.", "Successfully updated.": "עדכון הצלחה.",
@ -1600,7 +1627,6 @@
"Tika Server URL required.": "", "Tika Server URL required.": "",
"Tiktoken": "", "Tiktoken": "",
"Title": "שם", "Title": "שם",
"Title (e.g. Tell me a fun fact)": "שם (לדוגמה: תרגום)",
"Title Auto-Generation": "יצירת שם אוטומטית", "Title Auto-Generation": "יצירת שם אוטומטית",
"Title cannot be an empty string.": "שם לא יכול להיות מחרוזת ריקה.", "Title cannot be an empty string.": "שם לא יכול להיות מחרוזת ריקה.",
"Title Generation": "", "Title Generation": "",
@ -1669,6 +1695,7 @@
"Update and Copy Link": "עדכן ושכפל קישור", "Update and Copy Link": "עדכן ושכפל קישור",
"Update for the latest features and improvements.": "", "Update for the latest features and improvements.": "",
"Update password": "עדכן סיסמה", "Update password": "עדכן סיסמה",
"Update your status": "",
"Updated": "", "Updated": "",
"Updated at": "", "Updated at": "",
"Updated At": "", "Updated At": "",
@ -1722,6 +1749,7 @@
"View Replies": "", "View Replies": "",
"View Result from **{{NAME}}**": "", "View Result from **{{NAME}}**": "",
"Visibility": "", "Visibility": "",
"Visible to all users": "",
"Vision": "", "Vision": "",
"Voice": "", "Voice": "",
"Voice Input": "", "Voice Input": "",
@ -1749,6 +1777,7 @@
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"What's New in": "מה חדש ב", "What's New in": "מה חדש ב",
"What's on your mind?": "",
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "", "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
"wherever you are": "", "wherever you are": "",
"Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "",

View file

@ -18,11 +18,15 @@
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
"{{model}} download has been canceled": "", "{{model}} download has been canceled": "",
"{{NAMES}} reacted with {{REACTION}}": "",
"{{user}}'s Chats": "{{user}} की चैट", "{{user}}'s Chats": "{{user}} की चैट",
"{{webUIName}} Backend Required": "{{webUIName}} बैकएंड आवश्यक", "{{webUIName}} Backend Required": "{{webUIName}} बैकएंड आवश्यक",
"*Prompt node ID(s) are required for image generation": "", "*Prompt node ID(s) are required for image generation": "",
"1 Source": "", "1 Source": "",
"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.": "", "A new version (v{{LATEST_VERSION}}) is now available.": "",
"A private conversation between you and selected users": "",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "चैट और वेब खोज क्वेरी के लिए शीर्षक उत्पन्न करने जैसे कार्य करते समय कार्य मॉडल का उपयोग किया जाता है", "A task model is used when performing tasks such as generating titles for chats and web search queries": "चैट और वेब खोज क्वेरी के लिए शीर्षक उत्पन्न करने जैसे कार्य करते समय कार्य मॉडल का उपयोग किया जाता है",
"a user": "एक उपयोगकर्ता", "a user": "एक उपयोगकर्ता",
"About": "हमारे बारे में", "About": "हमारे बारे में",
@ -53,7 +57,8 @@
"Add Custom Prompt": "", "Add Custom Prompt": "",
"Add Details": "", "Add Details": "",
"Add Files": "फाइलें जोड़ें", "Add Files": "फाइलें जोड़ें",
"Add Group": "", "Add Member": "",
"Add Members": "",
"Add Memory": "मेमोरी जोड़ें", "Add Memory": "मेमोरी जोड़ें",
"Add Model": "मॉडल जोड़ें", "Add Model": "मॉडल जोड़ें",
"Add Reaction": "", "Add Reaction": "",
@ -252,6 +257,7 @@
"Citations": "", "Citations": "",
"Clear memory": "", "Clear memory": "",
"Clear Memory": "", "Clear Memory": "",
"Clear status": "",
"click here": "", "click here": "",
"Click here for filter guides.": "", "Click here for filter guides.": "",
"Click here for help.": "सहायता के लिए यहां क्लिक करें।", "Click here for help.": "सहायता के लिए यहां क्लिक करें।",
@ -288,6 +294,7 @@
"Code Interpreter": "", "Code Interpreter": "",
"Code Interpreter Engine": "", "Code Interpreter Engine": "",
"Code Interpreter Prompt Template": "", "Code Interpreter Prompt Template": "",
"Collaboration channel where people join as members": "",
"Collapse": "", "Collapse": "",
"Collection": "संग्रह", "Collection": "संग्रह",
"Color": "", "Color": "",
@ -447,6 +454,7 @@
"Discover, download, and explore custom prompts": "कस्टम प्रॉम्प्ट को खोजें, डाउनलोड करें और एक्सप्लोर करें", "Discover, download, and explore custom prompts": "कस्टम प्रॉम्प्ट को खोजें, डाउनलोड करें और एक्सप्लोर करें",
"Discover, download, and explore custom tools": "", "Discover, download, and explore custom tools": "",
"Discover, download, and explore model presets": "मॉडल प्रीसेट खोजें, डाउनलोड करें और एक्सप्लोर करें", "Discover, download, and explore model presets": "मॉडल प्रीसेट खोजें, डाउनलोड करें और एक्सप्लोर करें",
"Discussion channel where access is based on groups and permissions": "",
"Display": "", "Display": "",
"Display chat title in tab": "", "Display chat title in tab": "",
"Display Emoji in Call": "", "Display Emoji in Call": "",
@ -463,6 +471,7 @@
"Document": "दस्तावेज़", "Document": "दस्तावेज़",
"Document Intelligence": "", "Document Intelligence": "",
"Document Intelligence endpoint required.": "", "Document Intelligence endpoint required.": "",
"Document Intelligence Model": "",
"Documentation": "", "Documentation": "",
"Documents": "दस्तावेज़", "Documents": "दस्तावेज़",
"does not make any external connections, and your data stays securely on your locally hosted server.": "कोई बाहरी कनेक्शन नहीं बनाता है, और आपका डेटा आपके स्थानीय रूप से होस्ट किए गए सर्वर पर सुरक्षित रूप से रहता है।", "does not make any external connections, and your data stays securely on your locally hosted server.": "कोई बाहरी कनेक्शन नहीं बनाता है, और आपका डेटा आपके स्थानीय रूप से होस्ट किए गए सर्वर पर सुरक्षित रूप से रहता है।",
@ -485,12 +494,15 @@
"e.g. \"json\" or a JSON schema": "", "e.g. \"json\" or a JSON schema": "",
"e.g. 60": "", "e.g. 60": "",
"e.g. A filter to remove profanity from text": "", "e.g. A filter to remove profanity from text": "",
"e.g. about the Roman Empire": "",
"e.g. en": "", "e.g. en": "",
"e.g. My Filter": "", "e.g. My Filter": "",
"e.g. My Tools": "", "e.g. My Tools": "",
"e.g. my_filter": "", "e.g. my_filter": "",
"e.g. my_tools": "", "e.g. my_tools": "",
"e.g. pdf, docx, txt": "", "e.g. pdf, docx, txt": "",
"e.g. Tell me a fun fact": "",
"e.g. Tell me a fun fact about the Roman Empire": "",
"e.g. Tools for performing various operations": "", "e.g. Tools for performing various operations": "",
"e.g., 3, 4, 5 (leave blank for default)": "", "e.g., 3, 4, 5 (leave blank for default)": "",
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "", "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
@ -564,6 +576,7 @@
"Enter Docling Server URL": "", "Enter Docling Server URL": "",
"Enter Document Intelligence Endpoint": "", "Enter Document Intelligence Endpoint": "",
"Enter Document Intelligence Key": "", "Enter Document Intelligence Key": "",
"Enter Document Intelligence Model": "",
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "", "Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
"Enter Exa API Key": "", "Enter Exa API Key": "",
"Enter External Document Loader API Key": "", "Enter External Document Loader API Key": "",
@ -689,7 +702,6 @@
"Export Config to JSON File": "", "Export Config to JSON File": "",
"Export Models": "", "Export Models": "",
"Export Presets": "", "Export Presets": "",
"Export Prompt Suggestions": "",
"Export Prompts": "", "Export Prompts": "",
"Export to CSV": "", "Export to CSV": "",
"Export Tools": "", "Export Tools": "",
@ -704,6 +716,8 @@
"External Web Search URL": "", "External Web Search URL": "",
"Fade Effect for Streaming Text": "", "Fade Effect for Streaming Text": "",
"Failed to add file.": "", "Failed to add file.": "",
"Failed to add members": "",
"Failed to clear status": "",
"Failed to connect to {{URL}} OpenAPI tool server": "", "Failed to connect to {{URL}} OpenAPI tool server": "",
"Failed to copy link": "", "Failed to copy link": "",
"Failed to create API Key.": "एपीआई कुंजी बनाने में विफल.", "Failed to create API Key.": "एपीआई कुंजी बनाने में विफल.",
@ -717,12 +731,14 @@
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to read clipboard contents": "क्लिपबोर्ड सामग्री पढ़ने में विफल", "Failed to read clipboard contents": "क्लिपबोर्ड सामग्री पढ़ने में विफल",
"Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
"Failed to render visualization": "", "Failed to render visualization": "",
"Failed to save connections": "", "Failed to save connections": "",
"Failed to save conversation": "वार्तालाप सहेजने में विफल", "Failed to save conversation": "वार्तालाप सहेजने में विफल",
"Failed to save models configuration": "", "Failed to save models configuration": "",
"Failed to update settings": "", "Failed to update settings": "",
"Failed to update status": "",
"Failed to upload file.": "", "Failed to upload file.": "",
"Features": "", "Features": "",
"Features Permissions": "", "Features Permissions": "",
@ -816,11 +832,13 @@
"Google PSE Engine Id": "Google PSE इंजन आईडी", "Google PSE Engine Id": "Google PSE इंजन आईडी",
"Gravatar": "", "Gravatar": "",
"Group": "समूह", "Group": "समूह",
"Group Channel": "",
"Group created successfully": "", "Group created successfully": "",
"Group deleted successfully": "", "Group deleted successfully": "",
"Group Description": "", "Group Description": "",
"Group Name": "", "Group Name": "",
"Group updated successfully": "", "Group updated successfully": "",
"groups": "",
"Groups": "", "Groups": "",
"H1": "", "H1": "",
"H2": "", "H2": "",
@ -875,7 +893,6 @@
"Import Models": "", "Import Models": "",
"Import Notes": "", "Import Notes": "",
"Import Presets": "", "Import Presets": "",
"Import Prompt Suggestions": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
"Import Tools": "", "Import Tools": "",
@ -1011,6 +1028,9 @@
"MCP": "", "MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Medium": "", "Medium": "",
"Member removed successfully": "",
"Members": "",
"Members added successfully": "",
"Memories accessible by LLMs will be shown here.": "एलएलएम द्वारा सुलभ यादें यहां दिखाई जाएंगी।", "Memories accessible by LLMs will be shown here.": "एलएलएम द्वारा सुलभ यादें यहां दिखाई जाएंगी।",
"Memory": "मेमोरी", "Memory": "मेमोरी",
"Memory added successfully": "", "Memory added successfully": "",
@ -1110,6 +1130,7 @@
"No models selected": "", "No models selected": "",
"No Notes": "", "No Notes": "",
"No notes found": "", "No notes found": "",
"No pinned messages": "",
"No prompts found": "", "No prompts found": "",
"No results": "कोई परिणाम नहीं मिला", "No results": "कोई परिणाम नहीं मिला",
"No results found": "कोई परिणाम नहीं मिला", "No results found": "कोई परिणाम नहीं मिला",
@ -1157,6 +1178,7 @@
"Only alphanumeric characters and hyphens are allowed in the command string.": "कमांड स्ट्रिंग में केवल अल्फ़ान्यूमेरिक वर्ण और हाइफ़न की अनुमति है।", "Only alphanumeric characters and hyphens are allowed in the command string.": "कमांड स्ट्रिंग में केवल अल्फ़ान्यूमेरिक वर्ण और हाइफ़न की अनुमति है।",
"Only can be triggered when the chat input is in focus.": "", "Only can be triggered when the chat input is in focus.": "",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "", "Only collections can be edited, create a new knowledge base to edit/add documents.": "",
"Only invited users can access": "",
"Only markdown files are allowed": "", "Only markdown files are allowed": "",
"Only select users and groups with permission can access": "", "Only select users and groups with permission can access": "",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "उफ़! ऐसा लगता है कि यूआरएल अमान्य है. कृपया दोबारा जांचें और पुनः प्रयास करें।", "Oops! Looks like the URL is invalid. Please double-check and try again.": "उफ़! ऐसा लगता है कि यूआरएल अमान्य है. कृपया दोबारा जांचें और पुनः प्रयास करें।",
@ -1219,6 +1241,7 @@
"Personalization": "पेरसनलाइज़मेंट", "Personalization": "पेरसनलाइज़मेंट",
"Pin": "", "Pin": "",
"Pinned": "", "Pinned": "",
"Pinned Messages": "",
"Pioneer insights": "", "Pioneer insights": "",
"Pipe": "", "Pipe": "",
"Pipeline deleted successfully": "", "Pipeline deleted successfully": "",
@ -1261,9 +1284,9 @@
"Previous 7 days": "पिछले 7 दिन", "Previous 7 days": "पिछले 7 दिन",
"Previous message": "", "Previous message": "",
"Private": "", "Private": "",
"Private conversation between selected users": "",
"Profile": "प्रोफ़ाइल", "Profile": "प्रोफ़ाइल",
"Prompt": "", "Prompt": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "प्रॉम्प्ट (उदाहरण के लिए मुझे रोमन साम्राज्य के बारे में एक मजेदार तथ्य बताएं)",
"Prompt Autocompletion": "", "Prompt Autocompletion": "",
"Prompt Content": "प्रॉम्प्ट सामग्री", "Prompt Content": "प्रॉम्प्ट सामग्री",
"Prompt created successfully": "", "Prompt created successfully": "",
@ -1449,6 +1472,7 @@
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "", "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
"Set Voice": "आवाज सेट करें", "Set Voice": "आवाज सेट करें",
"Set whisper model": "", "Set whisper model": "",
"Set your status": "",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "", "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "", "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets how far back for the model to look back to prevent repetition.": "", "Sets how far back for the model to look back to prevent repetition.": "",
@ -1501,6 +1525,9 @@
"Start a new conversation": "", "Start a new conversation": "",
"Start of the channel": "चैनल की शुरुआत", "Start of the channel": "चैनल की शुरुआत",
"Start Tag": "", "Start Tag": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Steps": "", "Steps": "",
@ -1516,7 +1543,7 @@
"STT Model": "", "STT Model": "",
"STT Settings": "STT सेटिंग्स ", "STT Settings": "STT सेटिंग्स ",
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "उपशीर्षक (जैसे रोमन साम्राज्य के बारे में)", "Subtitle": "",
"Success": "संपन्न", "Success": "संपन्न",
"Successfully imported {{userCount}} users.": "", "Successfully imported {{userCount}} users.": "",
"Successfully updated.": "सफलतापूर्वक उत्परिवर्तित।", "Successfully updated.": "सफलतापूर्वक उत्परिवर्तित।",
@ -1599,7 +1626,6 @@
"Tika Server URL required.": "", "Tika Server URL required.": "",
"Tiktoken": "", "Tiktoken": "",
"Title": "शीर्षक", "Title": "शीर्षक",
"Title (e.g. Tell me a fun fact)": "शीर्षक (उदा. मुझे एक मज़ेदार तथ्य बताएं)",
"Title Auto-Generation": "शीर्षक ऑटो-जेनरेशन", "Title Auto-Generation": "शीर्षक ऑटो-जेनरेशन",
"Title cannot be an empty string.": "शीर्षक नहीं खाली पाठ हो सकता है.", "Title cannot be an empty string.": "शीर्षक नहीं खाली पाठ हो सकता है.",
"Title Generation": "", "Title Generation": "",
@ -1668,6 +1694,7 @@
"Update and Copy Link": "अपडेट करें और लिंक कॉपी करें", "Update and Copy Link": "अपडेट करें और लिंक कॉपी करें",
"Update for the latest features and improvements.": "", "Update for the latest features and improvements.": "",
"Update password": "पासवर्ड अपडेट करें", "Update password": "पासवर्ड अपडेट करें",
"Update your status": "",
"Updated": "", "Updated": "",
"Updated at": "", "Updated at": "",
"Updated At": "", "Updated At": "",
@ -1721,6 +1748,7 @@
"View Replies": "", "View Replies": "",
"View Result from **{{NAME}}**": "", "View Result from **{{NAME}}**": "",
"Visibility": "", "Visibility": "",
"Visible to all users": "",
"Vision": "", "Vision": "",
"Voice": "", "Voice": "",
"Voice Input": "", "Voice Input": "",
@ -1748,6 +1776,7 @@
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"What's New in": "इसमें नया क्या है", "What's New in": "इसमें नया क्या है",
"What's on your mind?": "",
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "", "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
"wherever you are": "", "wherever you are": "",
"Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "",

View file

@ -18,11 +18,15 @@
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
"{{model}} download has been canceled": "", "{{model}} download has been canceled": "",
"{{NAMES}} reacted with {{REACTION}}": "",
"{{user}}'s Chats": "Razgovori korisnika {{user}}", "{{user}}'s Chats": "Razgovori korisnika {{user}}",
"{{webUIName}} Backend Required": "{{webUIName}} Backend je potreban", "{{webUIName}} Backend Required": "{{webUIName}} Backend je potreban",
"*Prompt node ID(s) are required for image generation": "", "*Prompt node ID(s) are required for image generation": "",
"1 Source": "", "1 Source": "",
"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.": "", "A new version (v{{LATEST_VERSION}}) is now available.": "",
"A private conversation between you and selected users": "",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Model zadatka koristi se pri izvođenju zadataka kao što su generiranje naslova za razgovore i upite za pretraživanje weba", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Model zadatka koristi se pri izvođenju zadataka kao što su generiranje naslova za razgovore i upite za pretraživanje weba",
"a user": "korisnik", "a user": "korisnik",
"About": "O aplikaciji", "About": "O aplikaciji",
@ -53,7 +57,8 @@
"Add Custom Prompt": "", "Add Custom Prompt": "",
"Add Details": "", "Add Details": "",
"Add Files": "Dodaj datoteke", "Add Files": "Dodaj datoteke",
"Add Group": "", "Add Member": "",
"Add Members": "",
"Add Memory": "Dodaj memoriju", "Add Memory": "Dodaj memoriju",
"Add Model": "Dodaj model", "Add Model": "Dodaj model",
"Add Reaction": "", "Add Reaction": "",
@ -252,6 +257,7 @@
"Citations": "", "Citations": "",
"Clear memory": "Očisti memoriju", "Clear memory": "Očisti memoriju",
"Clear Memory": "", "Clear Memory": "",
"Clear status": "",
"click here": "", "click here": "",
"Click here for filter guides.": "", "Click here for filter guides.": "",
"Click here for help.": "Kliknite ovdje za pomoć.", "Click here for help.": "Kliknite ovdje za pomoć.",
@ -288,6 +294,7 @@
"Code Interpreter": "", "Code Interpreter": "",
"Code Interpreter Engine": "", "Code Interpreter Engine": "",
"Code Interpreter Prompt Template": "", "Code Interpreter Prompt Template": "",
"Collaboration channel where people join as members": "",
"Collapse": "", "Collapse": "",
"Collection": "Kolekcija", "Collection": "Kolekcija",
"Color": "", "Color": "",
@ -447,6 +454,7 @@
"Discover, download, and explore custom prompts": "Otkrijte, preuzmite i istražite prilagođene prompte", "Discover, download, and explore custom prompts": "Otkrijte, preuzmite i istražite prilagođene prompte",
"Discover, download, and explore custom tools": "", "Discover, download, and explore custom tools": "",
"Discover, download, and explore model presets": "Otkrijte, preuzmite i istražite unaprijed postavljene modele", "Discover, download, and explore model presets": "Otkrijte, preuzmite i istražite unaprijed postavljene modele",
"Discussion channel where access is based on groups and permissions": "",
"Display": "", "Display": "",
"Display chat title in tab": "", "Display chat title in tab": "",
"Display Emoji in Call": "", "Display Emoji in Call": "",
@ -463,6 +471,7 @@
"Document": "Dokument", "Document": "Dokument",
"Document Intelligence": "", "Document Intelligence": "",
"Document Intelligence endpoint required.": "", "Document Intelligence endpoint required.": "",
"Document Intelligence Model": "",
"Documentation": "Dokumentacija", "Documentation": "Dokumentacija",
"Documents": "Dokumenti", "Documents": "Dokumenti",
"does not make any external connections, and your data stays securely on your locally hosted server.": "ne uspostavlja vanjske veze, a vaši podaci ostaju sigurno na vašem lokalno hostiranom poslužitelju.", "does not make any external connections, and your data stays securely on your locally hosted server.": "ne uspostavlja vanjske veze, a vaši podaci ostaju sigurno na vašem lokalno hostiranom poslužitelju.",
@ -485,12 +494,15 @@
"e.g. \"json\" or a JSON schema": "", "e.g. \"json\" or a JSON schema": "",
"e.g. 60": "", "e.g. 60": "",
"e.g. A filter to remove profanity from text": "", "e.g. A filter to remove profanity from text": "",
"e.g. about the Roman Empire": "",
"e.g. en": "", "e.g. en": "",
"e.g. My Filter": "", "e.g. My Filter": "",
"e.g. My Tools": "", "e.g. My Tools": "",
"e.g. my_filter": "", "e.g. my_filter": "",
"e.g. my_tools": "", "e.g. my_tools": "",
"e.g. pdf, docx, txt": "", "e.g. pdf, docx, txt": "",
"e.g. Tell me a fun fact": "",
"e.g. Tell me a fun fact about the Roman Empire": "",
"e.g. Tools for performing various operations": "", "e.g. Tools for performing various operations": "",
"e.g., 3, 4, 5 (leave blank for default)": "", "e.g., 3, 4, 5 (leave blank for default)": "",
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "", "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
@ -564,6 +576,7 @@
"Enter Docling Server URL": "", "Enter Docling Server URL": "",
"Enter Document Intelligence Endpoint": "", "Enter Document Intelligence Endpoint": "",
"Enter Document Intelligence Key": "", "Enter Document Intelligence Key": "",
"Enter Document Intelligence Model": "",
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "", "Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
"Enter Exa API Key": "", "Enter Exa API Key": "",
"Enter External Document Loader API Key": "", "Enter External Document Loader API Key": "",
@ -689,7 +702,6 @@
"Export Config to JSON File": "", "Export Config to JSON File": "",
"Export Models": "", "Export Models": "",
"Export Presets": "", "Export Presets": "",
"Export Prompt Suggestions": "",
"Export Prompts": "", "Export Prompts": "",
"Export to CSV": "", "Export to CSV": "",
"Export Tools": "", "Export Tools": "",
@ -704,6 +716,8 @@
"External Web Search URL": "", "External Web Search URL": "",
"Fade Effect for Streaming Text": "", "Fade Effect for Streaming Text": "",
"Failed to add file.": "", "Failed to add file.": "",
"Failed to add members": "",
"Failed to clear status": "",
"Failed to connect to {{URL}} OpenAPI tool server": "", "Failed to connect to {{URL}} OpenAPI tool server": "",
"Failed to copy link": "", "Failed to copy link": "",
"Failed to create API Key.": "Neuspješno stvaranje API ključa.", "Failed to create API Key.": "Neuspješno stvaranje API ključa.",
@ -717,12 +731,14 @@
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to read clipboard contents": "Neuspješno čitanje sadržaja međuspremnika", "Failed to read clipboard contents": "Neuspješno čitanje sadržaja međuspremnika",
"Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
"Failed to render visualization": "", "Failed to render visualization": "",
"Failed to save connections": "", "Failed to save connections": "",
"Failed to save conversation": "Neuspješno spremanje razgovora", "Failed to save conversation": "Neuspješno spremanje razgovora",
"Failed to save models configuration": "", "Failed to save models configuration": "",
"Failed to update settings": "Greška kod ažuriranja postavki", "Failed to update settings": "Greška kod ažuriranja postavki",
"Failed to update status": "",
"Failed to upload file.": "", "Failed to upload file.": "",
"Features": "", "Features": "",
"Features Permissions": "", "Features Permissions": "",
@ -816,11 +832,13 @@
"Google PSE Engine Id": "ID Google PSE modula", "Google PSE Engine Id": "ID Google PSE modula",
"Gravatar": "", "Gravatar": "",
"Group": "Grupa", "Group": "Grupa",
"Group Channel": "",
"Group created successfully": "", "Group created successfully": "",
"Group deleted successfully": "", "Group deleted successfully": "",
"Group Description": "", "Group Description": "",
"Group Name": "", "Group Name": "",
"Group updated successfully": "", "Group updated successfully": "",
"groups": "",
"Groups": "", "Groups": "",
"H1": "", "H1": "",
"H2": "", "H2": "",
@ -875,7 +893,6 @@
"Import Models": "", "Import Models": "",
"Import Notes": "", "Import Notes": "",
"Import Presets": "", "Import Presets": "",
"Import Prompt Suggestions": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
"Import Tools": "", "Import Tools": "",
@ -1011,6 +1028,9 @@
"MCP": "", "MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Medium": "", "Medium": "",
"Member removed successfully": "",
"Members": "",
"Members added successfully": "",
"Memories accessible by LLMs will be shown here.": "Ovdje će biti prikazana memorija kojoj mogu pristupiti LLM-ovi.", "Memories accessible by LLMs will be shown here.": "Ovdje će biti prikazana memorija kojoj mogu pristupiti LLM-ovi.",
"Memory": "Memorija", "Memory": "Memorija",
"Memory added successfully": "", "Memory added successfully": "",
@ -1110,6 +1130,7 @@
"No models selected": "", "No models selected": "",
"No Notes": "", "No Notes": "",
"No notes found": "", "No notes found": "",
"No pinned messages": "",
"No prompts found": "", "No prompts found": "",
"No results": "Nema rezultata", "No results": "Nema rezultata",
"No results found": "Nema rezultata", "No results found": "Nema rezultata",
@ -1157,6 +1178,7 @@
"Only alphanumeric characters and hyphens are allowed in the command string.": "Samo alfanumerički znakovi i crtice su dopušteni u naredbenom nizu.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Samo alfanumerički znakovi i crtice su dopušteni u naredbenom nizu.",
"Only can be triggered when the chat input is in focus.": "", "Only can be triggered when the chat input is in focus.": "",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "", "Only collections can be edited, create a new knowledge base to edit/add documents.": "",
"Only invited users can access": "",
"Only markdown files are allowed": "", "Only markdown files are allowed": "",
"Only select users and groups with permission can access": "", "Only select users and groups with permission can access": "",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "Ups! Izgleda da je URL nevažeći. Molimo provjerite ponovno i pokušajte ponovo.", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Ups! Izgleda da je URL nevažeći. Molimo provjerite ponovno i pokušajte ponovo.",
@ -1219,6 +1241,7 @@
"Personalization": "Prilagodba", "Personalization": "Prilagodba",
"Pin": "", "Pin": "",
"Pinned": "", "Pinned": "",
"Pinned Messages": "",
"Pioneer insights": "", "Pioneer insights": "",
"Pipe": "", "Pipe": "",
"Pipeline deleted successfully": "", "Pipeline deleted successfully": "",
@ -1261,9 +1284,9 @@
"Previous 7 days": "Prethodnih 7 dana", "Previous 7 days": "Prethodnih 7 dana",
"Previous message": "", "Previous message": "",
"Private": "", "Private": "",
"Private conversation between selected users": "",
"Profile": "Profil", "Profile": "Profil",
"Prompt": "", "Prompt": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (npr. Reci mi zanimljivost o Rimskom carstvu)",
"Prompt Autocompletion": "", "Prompt Autocompletion": "",
"Prompt Content": "Sadržaj prompta", "Prompt Content": "Sadržaj prompta",
"Prompt created successfully": "", "Prompt created successfully": "",
@ -1450,6 +1473,7 @@
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "", "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
"Set Voice": "Postavi glas", "Set Voice": "Postavi glas",
"Set whisper model": "", "Set whisper model": "",
"Set your status": "",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "", "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "", "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets how far back for the model to look back to prevent repetition.": "", "Sets how far back for the model to look back to prevent repetition.": "",
@ -1502,6 +1526,9 @@
"Start a new conversation": "", "Start a new conversation": "",
"Start of the channel": "Početak kanala", "Start of the channel": "Početak kanala",
"Start Tag": "", "Start Tag": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Steps": "", "Steps": "",
@ -1517,7 +1544,7 @@
"STT Model": "STT model", "STT Model": "STT model",
"STT Settings": "STT postavke", "STT Settings": "STT postavke",
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Podnaslov (npr. o Rimskom carstvu)", "Subtitle": "",
"Success": "Uspjeh", "Success": "Uspjeh",
"Successfully imported {{userCount}} users.": "", "Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Uspješno ažurirano.", "Successfully updated.": "Uspješno ažurirano.",
@ -1600,7 +1627,6 @@
"Tika Server URL required.": "", "Tika Server URL required.": "",
"Tiktoken": "", "Tiktoken": "",
"Title": "Naslov", "Title": "Naslov",
"Title (e.g. Tell me a fun fact)": "Naslov (npr. Reci mi zanimljivost)",
"Title Auto-Generation": "Automatsko generiranje naslova", "Title Auto-Generation": "Automatsko generiranje naslova",
"Title cannot be an empty string.": "Naslov ne može biti prazni niz.", "Title cannot be an empty string.": "Naslov ne može biti prazni niz.",
"Title Generation": "", "Title Generation": "",
@ -1669,6 +1695,7 @@
"Update and Copy Link": "Ažuriraj i kopiraj vezu", "Update and Copy Link": "Ažuriraj i kopiraj vezu",
"Update for the latest features and improvements.": "", "Update for the latest features and improvements.": "",
"Update password": "Ažuriraj lozinku", "Update password": "Ažuriraj lozinku",
"Update your status": "",
"Updated": "", "Updated": "",
"Updated at": "", "Updated at": "",
"Updated At": "", "Updated At": "",
@ -1722,6 +1749,7 @@
"View Replies": "", "View Replies": "",
"View Result from **{{NAME}}**": "", "View Result from **{{NAME}}**": "",
"Visibility": "", "Visibility": "",
"Visible to all users": "",
"Vision": "", "Vision": "",
"Voice": "", "Voice": "",
"Voice Input": "", "Voice Input": "",
@ -1749,6 +1777,7 @@
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"What's New in": "Što je novo u", "What's New in": "Što je novo u",
"What's on your mind?": "",
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "", "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
"wherever you are": "", "wherever you are": "",
"Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "",

View file

@ -18,11 +18,15 @@
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
"{{model}} download has been canceled": "", "{{model}} download has been canceled": "",
"{{NAMES}} reacted with {{REACTION}}": "",
"{{user}}'s Chats": "{{user}} beszélgetései", "{{user}}'s Chats": "{{user}} beszélgetései",
"{{webUIName}} Backend Required": "{{webUIName}} Backend szükséges", "{{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", "*Prompt node ID(s) are required for image generation": "*Prompt node ID(k) szükségesek a képgeneráláshoz",
"1 Source": "", "1 Source": "",
"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.", "A new version (v{{LATEST_VERSION}}) is now available.": "Új verzió (v{{LATEST_VERSION}}) érhető el.",
"A private conversation between you and selected users": "",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "A feladat modell olyan feladatokhoz használatos, mint a beszélgetések címeinek generálása és webes keresési lekérdezések", "A task model is used when performing tasks such as generating titles for chats and web search queries": "A feladat modell olyan feladatokhoz használatos, mint a beszélgetések címeinek generálása és webes keresési lekérdezések",
"a user": "egy felhasználó", "a user": "egy felhasználó",
"About": "Névjegy", "About": "Névjegy",
@ -53,7 +57,8 @@
"Add Custom Prompt": "", "Add Custom Prompt": "",
"Add Details": "", "Add Details": "",
"Add Files": "Fájlok hozzáadása", "Add Files": "Fájlok hozzáadása",
"Add Group": "Csoport hozzáadása", "Add Member": "",
"Add Members": "",
"Add Memory": "Memória hozzáadása", "Add Memory": "Memória hozzáadása",
"Add Model": "Modell hozzáadása", "Add Model": "Modell hozzáadása",
"Add Reaction": "Reakció hozzáadása", "Add Reaction": "Reakció hozzáadása",
@ -252,6 +257,7 @@
"Citations": "", "Citations": "",
"Clear memory": "Memória törlése", "Clear memory": "Memória törlése",
"Clear Memory": "Memória törlése", "Clear Memory": "Memória törlése",
"Clear status": "",
"click here": "kattints ide", "click here": "kattints ide",
"Click here for filter guides.": "Kattints ide a szűrő útmutatókért.", "Click here for filter guides.": "Kattints ide a szűrő útmutatókért.",
"Click here for help.": "Kattints ide segítségért.", "Click here for help.": "Kattints ide segítségért.",
@ -288,6 +294,7 @@
"Code Interpreter": "Kód értelmező", "Code Interpreter": "Kód értelmező",
"Code Interpreter Engine": "Kód értelmező motor", "Code Interpreter Engine": "Kód értelmező motor",
"Code Interpreter Prompt Template": "Kód értelmező prompt sablon", "Code Interpreter Prompt Template": "Kód értelmező prompt sablon",
"Collaboration channel where people join as members": "",
"Collapse": "Összecsukás", "Collapse": "Összecsukás",
"Collection": "Gyűjtemény", "Collection": "Gyűjtemény",
"Color": "Szín", "Color": "Szín",
@ -447,6 +454,7 @@
"Discover, download, and explore custom prompts": "Fedezz fel, tölts le és fedezz fel egyéni promptokat", "Discover, download, and explore custom prompts": "Fedezz fel, tölts le és fedezz fel egyéni promptokat",
"Discover, download, and explore custom tools": "Fedezz fel, tölts le és fedezz fel egyéni eszközöket", "Discover, download, and explore custom tools": "Fedezz fel, tölts le és fedezz fel egyéni eszközöket",
"Discover, download, and explore model presets": "Fedezz fel, tölts le és fedezz fel modell beállításokat", "Discover, download, and explore model presets": "Fedezz fel, tölts le és fedezz fel modell beállításokat",
"Discussion channel where access is based on groups and permissions": "",
"Display": "Megjelenítés", "Display": "Megjelenítés",
"Display chat title in tab": "", "Display chat title in tab": "",
"Display Emoji in Call": "Emoji megjelenítése hívásban", "Display Emoji in Call": "Emoji megjelenítése hívásban",
@ -463,6 +471,7 @@
"Document": "Dokumentum", "Document": "Dokumentum",
"Document Intelligence": "Dokumentum intelligencia", "Document Intelligence": "Dokumentum intelligencia",
"Document Intelligence endpoint required.": "", "Document Intelligence endpoint required.": "",
"Document Intelligence Model": "",
"Documentation": "Dokumentáció", "Documentation": "Dokumentáció",
"Documents": "Dokumentumok", "Documents": "Dokumentumok",
"does not make any external connections, and your data stays securely on your locally hosted server.": "nem létesít külső kapcsolatokat, és az adataid biztonságban maradnak a helyileg hosztolt szervereden.", "does not make any external connections, and your data stays securely on your locally hosted server.": "nem létesít külső kapcsolatokat, és az adataid biztonságban maradnak a helyileg hosztolt szervereden.",
@ -485,12 +494,15 @@
"e.g. \"json\" or a JSON schema": "pl. \"json\" vagy egy JSON séma", "e.g. \"json\" or a JSON schema": "pl. \"json\" vagy egy JSON séma",
"e.g. 60": "pl. 60", "e.g. 60": "pl. 60",
"e.g. A filter to remove profanity from text": "pl. Egy szűrő a trágárság eltávolítására a szövegből", "e.g. A filter to remove profanity from text": "pl. Egy szűrő a trágárság eltávolítására a szövegből",
"e.g. about the Roman Empire": "",
"e.g. en": "", "e.g. en": "",
"e.g. My Filter": "pl. Az én szűrőm", "e.g. My Filter": "pl. Az én szűrőm",
"e.g. My Tools": "pl. Az én eszközeim", "e.g. My Tools": "pl. Az én eszközeim",
"e.g. my_filter": "pl. az_en_szűrőm", "e.g. my_filter": "pl. az_en_szűrőm",
"e.g. my_tools": "pl. az_en_eszkozeim", "e.g. my_tools": "pl. az_en_eszkozeim",
"e.g. pdf, docx, txt": "", "e.g. pdf, docx, txt": "",
"e.g. Tell me a fun fact": "",
"e.g. Tell me a fun fact about the Roman Empire": "",
"e.g. Tools for performing various operations": "pl. Eszközök különböző műveletek elvégzéséhez", "e.g. Tools for performing various operations": "pl. Eszközök különböző műveletek elvégzéséhez",
"e.g., 3, 4, 5 (leave blank for default)": "", "e.g., 3, 4, 5 (leave blank for default)": "",
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "", "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
@ -564,6 +576,7 @@
"Enter Docling Server URL": "Add meg a Docling szerver URL-t", "Enter Docling Server URL": "Add meg a Docling szerver URL-t",
"Enter Document Intelligence Endpoint": "Add meg a dokumentum intelligencia végpontot", "Enter Document Intelligence Endpoint": "Add meg a dokumentum intelligencia végpontot",
"Enter Document Intelligence Key": "Add meg a dokumentum intelligencia kulcsot", "Enter Document Intelligence Key": "Add meg a dokumentum intelligencia kulcsot",
"Enter Document Intelligence Model": "",
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "", "Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
"Enter Exa API Key": "Add meg az Exa API kulcsot", "Enter Exa API Key": "Add meg az Exa API kulcsot",
"Enter External Document Loader API Key": "", "Enter External Document Loader API Key": "",
@ -689,7 +702,6 @@
"Export Config to JSON File": "Konfiguráció exportálása JSON fájlba", "Export Config to JSON File": "Konfiguráció exportálása JSON fájlba",
"Export Models": "", "Export Models": "",
"Export Presets": "Előre beállított exportálás", "Export Presets": "Előre beállított exportálás",
"Export Prompt Suggestions": "",
"Export Prompts": "", "Export Prompts": "",
"Export to CSV": "Exportálás CSV-be", "Export to CSV": "Exportálás CSV-be",
"Export Tools": "", "Export Tools": "",
@ -704,6 +716,8 @@
"External Web Search URL": "", "External Web Search URL": "",
"Fade Effect for Streaming Text": "", "Fade Effect for Streaming Text": "",
"Failed to add file.": "Nem sikerült hozzáadni a fájlt.", "Failed to add file.": "Nem sikerült hozzáadni a fájlt.",
"Failed to add members": "",
"Failed to clear status": "",
"Failed to connect to {{URL}} OpenAPI tool server": "Nem sikerült csatlakozni a {{URL}} OpenAPI eszköszerverhez", "Failed to connect to {{URL}} OpenAPI tool server": "Nem sikerült csatlakozni a {{URL}} OpenAPI eszköszerverhez",
"Failed to copy link": "", "Failed to copy link": "",
"Failed to create API Key.": "Nem sikerült létrehozni az API kulcsot.", "Failed to create API Key.": "Nem sikerült létrehozni az API kulcsot.",
@ -717,12 +731,14 @@
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to read clipboard contents": "Nem sikerült olvasni a vágólap tartalmát", "Failed to read clipboard contents": "Nem sikerült olvasni a vágólap tartalmát",
"Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
"Failed to render visualization": "", "Failed to render visualization": "",
"Failed to save connections": "Nem sikerült menteni a kapcsolatokat", "Failed to save connections": "Nem sikerült menteni a kapcsolatokat",
"Failed to save conversation": "Nem sikerült menteni a beszélgetést", "Failed to save conversation": "Nem sikerült menteni a beszélgetést",
"Failed to save models configuration": "Nem sikerült menteni a modellek konfigurációját", "Failed to save models configuration": "Nem sikerült menteni a modellek konfigurációját",
"Failed to update settings": "Nem sikerült frissíteni a beállításokat", "Failed to update settings": "Nem sikerült frissíteni a beállításokat",
"Failed to update status": "",
"Failed to upload file.": "Nem sikerült feltölteni a fájlt.", "Failed to upload file.": "Nem sikerült feltölteni a fájlt.",
"Features": "Funkciók", "Features": "Funkciók",
"Features Permissions": "Funkciók engedélyei", "Features Permissions": "Funkciók engedélyei",
@ -816,11 +832,13 @@
"Google PSE Engine Id": "Google PSE motor azonosító", "Google PSE Engine Id": "Google PSE motor azonosító",
"Gravatar": "", "Gravatar": "",
"Group": "Csoport", "Group": "Csoport",
"Group Channel": "",
"Group created successfully": "Csoport sikeresen létrehozva", "Group created successfully": "Csoport sikeresen létrehozva",
"Group deleted successfully": "Csoport sikeresen törölve", "Group deleted successfully": "Csoport sikeresen törölve",
"Group Description": "Csoport leírása", "Group Description": "Csoport leírása",
"Group Name": "Csoport neve", "Group Name": "Csoport neve",
"Group updated successfully": "Csoport sikeresen frissítve", "Group updated successfully": "Csoport sikeresen frissítve",
"groups": "",
"Groups": "Csoportok", "Groups": "Csoportok",
"H1": "", "H1": "",
"H2": "", "H2": "",
@ -875,7 +893,6 @@
"Import Models": "", "Import Models": "",
"Import Notes": "", "Import Notes": "",
"Import Presets": "Előre beállított importálás", "Import Presets": "Előre beállított importálás",
"Import Prompt Suggestions": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
"Import Tools": "", "Import Tools": "",
@ -1011,6 +1028,9 @@
"MCP": "", "MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Medium": "", "Medium": "",
"Member removed successfully": "",
"Members": "",
"Members added successfully": "",
"Memories accessible by LLMs will be shown here.": "Az LLM-ek által elérhető emlékek itt jelennek meg.", "Memories accessible by LLMs will be shown here.": "Az LLM-ek által elérhető emlékek itt jelennek meg.",
"Memory": "Memória", "Memory": "Memória",
"Memory added successfully": "Memória sikeresen hozzáadva", "Memory added successfully": "Memória sikeresen hozzáadva",
@ -1110,6 +1130,7 @@
"No models selected": "Nincs kiválasztott modell", "No models selected": "Nincs kiválasztott modell",
"No Notes": "", "No Notes": "",
"No notes found": "", "No notes found": "",
"No pinned messages": "",
"No prompts found": "", "No prompts found": "",
"No results": "Nincs találat", "No results": "Nincs találat",
"No results found": "Nincs találat", "No results found": "Nincs találat",
@ -1157,6 +1178,7 @@
"Only alphanumeric characters and hyphens are allowed in the command string.": "Csak alfanumerikus karakterek és kötőjelek engedélyezettek a parancssorban.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Csak alfanumerikus karakterek és kötőjelek engedélyezettek a parancssorban.",
"Only can be triggered when the chat input is in focus.": "", "Only can be triggered when the chat input is in focus.": "",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Csak gyűjtemények szerkeszthetők, hozzon létre új tudásbázist dokumentumok szerkesztéséhez/hozzáadásához.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Csak gyűjtemények szerkeszthetők, hozzon létre új tudásbázist dokumentumok szerkesztéséhez/hozzáadásához.",
"Only invited users can access": "",
"Only markdown files are allowed": "", "Only markdown files are allowed": "",
"Only select users and groups with permission can access": "Csak a kiválasztott, engedéllyel rendelkező felhasználók és csoportok férhetnek hozzá", "Only select users and groups with permission can access": "Csak a kiválasztott, engedéllyel rendelkező felhasználók és csoportok férhetnek hozzá",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "Hoppá! Úgy tűnik, az URL érvénytelen. Kérjük, ellenőrizze és próbálja újra.", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Hoppá! Úgy tűnik, az URL érvénytelen. Kérjük, ellenőrizze és próbálja újra.",
@ -1219,6 +1241,7 @@
"Personalization": "Személyre szabás", "Personalization": "Személyre szabás",
"Pin": "Rögzítés", "Pin": "Rögzítés",
"Pinned": "Rögzítve", "Pinned": "Rögzítve",
"Pinned Messages": "",
"Pioneer insights": "Úttörő betekintések", "Pioneer insights": "Úttörő betekintések",
"Pipe": "", "Pipe": "",
"Pipeline deleted successfully": "Folyamat sikeresen törölve", "Pipeline deleted successfully": "Folyamat sikeresen törölve",
@ -1261,9 +1284,9 @@
"Previous 7 days": "Előző 7 nap", "Previous 7 days": "Előző 7 nap",
"Previous message": "", "Previous message": "",
"Private": "Privát", "Private": "Privát",
"Private conversation between selected users": "",
"Profile": "Profil", "Profile": "Profil",
"Prompt": "Prompt", "Prompt": "Prompt",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (pl. Mondj egy érdekes tényt a Római Birodalomról)",
"Prompt Autocompletion": "Prompt automatikus kiegészítés", "Prompt Autocompletion": "Prompt automatikus kiegészítés",
"Prompt Content": "Prompt tartalom", "Prompt Content": "Prompt tartalom",
"Prompt created successfully": "Prompt sikeresen létrehozva", "Prompt created successfully": "Prompt sikeresen létrehozva",
@ -1449,6 +1472,7 @@
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Állítsd be a számítási feladatokhoz használt munkaszálak számát. Ez az opció szabályozza, hány szál dolgozik párhuzamosan a bejövő kérések feldolgozásán. Az érték növelése javíthatja a teljesítményt nagy párhuzamosságú munkaterhelés esetén, de több CPU-erőforrást is fogyaszthat.", "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Állítsd be a számítási feladatokhoz használt munkaszálak számát. Ez az opció szabályozza, hány szál dolgozik párhuzamosan a bejövő kérések feldolgozásán. Az érték növelése javíthatja a teljesítményt nagy párhuzamosságú munkaterhelés esetén, de több CPU-erőforrást is fogyaszthat.",
"Set Voice": "Hang beállítása", "Set Voice": "Hang beállítása",
"Set whisper model": "Whisper modell beállítása", "Set whisper model": "Whisper modell beállítása",
"Set your status": "",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Egységes elfogultságot állít be az egyszer már megjelent tokenek ellen. Magasabb érték (pl. 1,5) erősebben bünteti az ismétléseket, alacsonyabb érték (pl. 0,9) engedékenyebb. 0-nál kikapcsolva.", "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Egységes elfogultságot állít be az egyszer már megjelent tokenek ellen. Magasabb érték (pl. 1,5) erősebben bünteti az ismétléseket, alacsonyabb érték (pl. 0,9) engedékenyebb. 0-nál kikapcsolva.",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Skálázott elfogultságot állít be az ismétlések büntetésére a tokenek megjelenési száma alapján. Magasabb érték (pl. 1,5) erősebben bünteti az ismétléseket, alacsonyabb érték (pl. 0,9) engedékenyebb. 0-nál kikapcsolva.", "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Skálázott elfogultságot állít be az ismétlések büntetésére a tokenek megjelenési száma alapján. Magasabb érték (pl. 1,5) erősebben bünteti az ismétléseket, alacsonyabb érték (pl. 0,9) engedékenyebb. 0-nál kikapcsolva.",
"Sets how far back for the model to look back to prevent repetition.": "Beállítja, hogy a modell mennyire nézzen vissza az ismétlések elkerülése érdekében.", "Sets how far back for the model to look back to prevent repetition.": "Beállítja, hogy a modell mennyire nézzen vissza az ismétlések elkerülése érdekében.",
@ -1501,6 +1525,9 @@
"Start a new conversation": "", "Start a new conversation": "",
"Start of the channel": "A csatorna eleje", "Start of the channel": "A csatorna eleje",
"Start Tag": "", "Start Tag": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Steps": "", "Steps": "",
@ -1516,7 +1543,7 @@
"STT Model": "STT modell", "STT Model": "STT modell",
"STT Settings": "STT beállítások", "STT Settings": "STT beállítások",
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Alcím (pl. a Római Birodalomról)", "Subtitle": "",
"Success": "Siker", "Success": "Siker",
"Successfully imported {{userCount}} users.": "", "Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Sikeresen frissítve.", "Successfully updated.": "Sikeresen frissítve.",
@ -1599,7 +1626,6 @@
"Tika Server URL required.": "Tika szerver URL szükséges.", "Tika Server URL required.": "Tika szerver URL szükséges.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Title": "Cím", "Title": "Cím",
"Title (e.g. Tell me a fun fact)": "Cím (pl. Mondj egy érdekes tényt)",
"Title Auto-Generation": "Cím automatikus generálása", "Title Auto-Generation": "Cím automatikus generálása",
"Title cannot be an empty string.": "A cím nem lehet üres karakterlánc.", "Title cannot be an empty string.": "A cím nem lehet üres karakterlánc.",
"Title Generation": "Cím generálás", "Title Generation": "Cím generálás",
@ -1668,6 +1694,7 @@
"Update and Copy Link": "Frissítés és link másolása", "Update and Copy Link": "Frissítés és link másolása",
"Update for the latest features and improvements.": "Frissítsen a legújabb funkciókért és fejlesztésekért.", "Update for the latest features and improvements.": "Frissítsen a legújabb funkciókért és fejlesztésekért.",
"Update password": "Jelszó frissítése", "Update password": "Jelszó frissítése",
"Update your status": "",
"Updated": "Frissítve", "Updated": "Frissítve",
"Updated at": "Frissítve ekkor", "Updated at": "Frissítve ekkor",
"Updated At": "Frissítve ekkor", "Updated At": "Frissítve ekkor",
@ -1721,6 +1748,7 @@
"View Replies": "Válaszok megtekintése", "View Replies": "Válaszok megtekintése",
"View Result from **{{NAME}}**": "Eredmény megtekintése innen: **{{NAME}}**", "View Result from **{{NAME}}**": "Eredmény megtekintése innen: **{{NAME}}**",
"Visibility": "Láthatóság", "Visibility": "Láthatóság",
"Visible to all users": "",
"Vision": "", "Vision": "",
"Voice": "Hang", "Voice": "Hang",
"Voice Input": "Hangbevitel", "Voice Input": "Hangbevitel",
@ -1748,6 +1776,7 @@
"What are you trying to achieve?": "Mit próbálsz elérni?", "What are you trying to achieve?": "Mit próbálsz elérni?",
"What are you working on?": "Min dolgozol?", "What are you working on?": "Min dolgozol?",
"What's New in": "Mi újság a", "What's New in": "Mi újság a",
"What's on your mind?": "",
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Ha engedélyezve van, a modell valós időben válaszol minden csevegőüzenetre, amint a felhasználó elküldi az üzenetet. Ez a mód hasznos élő csevegőalkalmazásokhoz, de lassabb hardveren befolyásolhatja a teljesítményt.", "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Ha engedélyezve van, a modell valós időben válaszol minden csevegőüzenetre, amint a felhasználó elküldi az üzenetet. Ez a mód hasznos élő csevegőalkalmazásokhoz, de lassabb hardveren befolyásolhatja a teljesítményt.",
"wherever you are": "bárhol is vagy", "wherever you are": "bárhol is vagy",
"Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "",

View file

@ -18,11 +18,15 @@
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
"{{model}} download has been canceled": "", "{{model}} download has been canceled": "",
"{{NAMES}} reacted with {{REACTION}}": "",
"{{user}}'s Chats": "Obrolan {{user}}", "{{user}}'s Chats": "Obrolan {{user}}",
"{{webUIName}} Backend Required": "{{webUIName}} Diperlukan Backend", "{{webUIName}} Backend Required": "{{webUIName}} Diperlukan Backend",
"*Prompt node ID(s) are required for image generation": "", "*Prompt node ID(s) are required for image generation": "",
"1 Source": "", "1 Source": "",
"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.": "", "A new version (v{{LATEST_VERSION}}) is now available.": "",
"A private conversation between you and selected users": "",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Model tugas digunakan saat melakukan tugas seperti membuat judul untuk obrolan dan kueri penelusuran web", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Model tugas digunakan saat melakukan tugas seperti membuat judul untuk obrolan dan kueri penelusuran web",
"a user": "seorang pengguna", "a user": "seorang pengguna",
"About": "Tentang", "About": "Tentang",
@ -53,7 +57,8 @@
"Add Custom Prompt": "", "Add Custom Prompt": "",
"Add Details": "", "Add Details": "",
"Add Files": "Menambahkan File", "Add Files": "Menambahkan File",
"Add Group": "", "Add Member": "",
"Add Members": "",
"Add Memory": "Menambahkan Memori", "Add Memory": "Menambahkan Memori",
"Add Model": "Tambahkan Model", "Add Model": "Tambahkan Model",
"Add Reaction": "", "Add Reaction": "",
@ -252,6 +257,7 @@
"Citations": "", "Citations": "",
"Clear memory": "Menghapus memori", "Clear memory": "Menghapus memori",
"Clear Memory": "", "Clear Memory": "",
"Clear status": "",
"click here": "", "click here": "",
"Click here for filter guides.": "", "Click here for filter guides.": "",
"Click here for help.": "Klik di sini untuk bantuan.", "Click here for help.": "Klik di sini untuk bantuan.",
@ -288,6 +294,7 @@
"Code Interpreter": "", "Code Interpreter": "",
"Code Interpreter Engine": "", "Code Interpreter Engine": "",
"Code Interpreter Prompt Template": "", "Code Interpreter Prompt Template": "",
"Collaboration channel where people join as members": "",
"Collapse": "", "Collapse": "",
"Collection": "Koleksi", "Collection": "Koleksi",
"Color": "", "Color": "",
@ -447,6 +454,7 @@
"Discover, download, and explore custom prompts": "Temukan, unduh, dan jelajahi prompt khusus", "Discover, download, and explore custom prompts": "Temukan, unduh, dan jelajahi prompt khusus",
"Discover, download, and explore custom tools": "Menemukan, mengunduh, dan menjelajahi alat khusus", "Discover, download, and explore custom tools": "Menemukan, mengunduh, dan menjelajahi alat khusus",
"Discover, download, and explore model presets": "Menemukan, mengunduh, dan menjelajahi preset model", "Discover, download, and explore model presets": "Menemukan, mengunduh, dan menjelajahi preset model",
"Discussion channel where access is based on groups and permissions": "",
"Display": "", "Display": "",
"Display chat title in tab": "", "Display chat title in tab": "",
"Display Emoji in Call": "Menampilkan Emoji dalam Panggilan", "Display Emoji in Call": "Menampilkan Emoji dalam Panggilan",
@ -463,6 +471,7 @@
"Document": "Dokumen", "Document": "Dokumen",
"Document Intelligence": "", "Document Intelligence": "",
"Document Intelligence endpoint required.": "", "Document Intelligence endpoint required.": "",
"Document Intelligence Model": "",
"Documentation": "Dokumentasi", "Documentation": "Dokumentasi",
"Documents": "Dokumen", "Documents": "Dokumen",
"does not make any external connections, and your data stays securely on your locally hosted server.": "tidak membuat koneksi eksternal apa pun, dan data Anda tetap aman di server yang dihosting secara lokal.", "does not make any external connections, and your data stays securely on your locally hosted server.": "tidak membuat koneksi eksternal apa pun, dan data Anda tetap aman di server yang dihosting secara lokal.",
@ -485,12 +494,15 @@
"e.g. \"json\" or a JSON schema": "", "e.g. \"json\" or a JSON schema": "",
"e.g. 60": "", "e.g. 60": "",
"e.g. A filter to remove profanity from text": "", "e.g. A filter to remove profanity from text": "",
"e.g. about the Roman Empire": "",
"e.g. en": "", "e.g. en": "",
"e.g. My Filter": "", "e.g. My Filter": "",
"e.g. My Tools": "", "e.g. My Tools": "",
"e.g. my_filter": "", "e.g. my_filter": "",
"e.g. my_tools": "", "e.g. my_tools": "",
"e.g. pdf, docx, txt": "", "e.g. pdf, docx, txt": "",
"e.g. Tell me a fun fact": "",
"e.g. Tell me a fun fact about the Roman Empire": "",
"e.g. Tools for performing various operations": "", "e.g. Tools for performing various operations": "",
"e.g., 3, 4, 5 (leave blank for default)": "", "e.g., 3, 4, 5 (leave blank for default)": "",
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "", "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
@ -564,6 +576,7 @@
"Enter Docling Server URL": "", "Enter Docling Server URL": "",
"Enter Document Intelligence Endpoint": "", "Enter Document Intelligence Endpoint": "",
"Enter Document Intelligence Key": "", "Enter Document Intelligence Key": "",
"Enter Document Intelligence Model": "",
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "", "Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
"Enter Exa API Key": "", "Enter Exa API Key": "",
"Enter External Document Loader API Key": "", "Enter External Document Loader API Key": "",
@ -689,7 +702,6 @@
"Export Config to JSON File": "", "Export Config to JSON File": "",
"Export Models": "", "Export Models": "",
"Export Presets": "", "Export Presets": "",
"Export Prompt Suggestions": "",
"Export Prompts": "", "Export Prompts": "",
"Export to CSV": "", "Export to CSV": "",
"Export Tools": "", "Export Tools": "",
@ -704,6 +716,8 @@
"External Web Search URL": "", "External Web Search URL": "",
"Fade Effect for Streaming Text": "", "Fade Effect for Streaming Text": "",
"Failed to add file.": "", "Failed to add file.": "",
"Failed to add members": "",
"Failed to clear status": "",
"Failed to connect to {{URL}} OpenAPI tool server": "", "Failed to connect to {{URL}} OpenAPI tool server": "",
"Failed to copy link": "", "Failed to copy link": "",
"Failed to create API Key.": "Gagal membuat API Key.", "Failed to create API Key.": "Gagal membuat API Key.",
@ -717,12 +731,14 @@
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to read clipboard contents": "Gagal membaca konten papan klip", "Failed to read clipboard contents": "Gagal membaca konten papan klip",
"Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
"Failed to render visualization": "", "Failed to render visualization": "",
"Failed to save connections": "", "Failed to save connections": "",
"Failed to save conversation": "Gagal menyimpan percakapan", "Failed to save conversation": "Gagal menyimpan percakapan",
"Failed to save models configuration": "", "Failed to save models configuration": "",
"Failed to update settings": "Gagal memperbarui pengaturan", "Failed to update settings": "Gagal memperbarui pengaturan",
"Failed to update status": "",
"Failed to upload file.": "", "Failed to upload file.": "",
"Features": "", "Features": "",
"Features Permissions": "", "Features Permissions": "",
@ -816,11 +832,13 @@
"Google PSE Engine Id": "Id Mesin Google PSE", "Google PSE Engine Id": "Id Mesin Google PSE",
"Gravatar": "", "Gravatar": "",
"Group": "Grup", "Group": "Grup",
"Group Channel": "",
"Group created successfully": "", "Group created successfully": "",
"Group deleted successfully": "", "Group deleted successfully": "",
"Group Description": "", "Group Description": "",
"Group Name": "", "Group Name": "",
"Group updated successfully": "", "Group updated successfully": "",
"groups": "",
"Groups": "", "Groups": "",
"H1": "", "H1": "",
"H2": "", "H2": "",
@ -875,7 +893,6 @@
"Import Models": "", "Import Models": "",
"Import Notes": "", "Import Notes": "",
"Import Presets": "", "Import Presets": "",
"Import Prompt Suggestions": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
"Import Tools": "", "Import Tools": "",
@ -1011,6 +1028,9 @@
"MCP": "", "MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Medium": "", "Medium": "",
"Member removed successfully": "",
"Members": "",
"Members added successfully": "",
"Memories accessible by LLMs will be shown here.": "Memori yang dapat diakses oleh LLM akan ditampilkan di sini.", "Memories accessible by LLMs will be shown here.": "Memori yang dapat diakses oleh LLM akan ditampilkan di sini.",
"Memory": "Memori", "Memory": "Memori",
"Memory added successfully": "Memori berhasil ditambahkan", "Memory added successfully": "Memori berhasil ditambahkan",
@ -1110,6 +1130,7 @@
"No models selected": "", "No models selected": "",
"No Notes": "", "No Notes": "",
"No notes found": "", "No notes found": "",
"No pinned messages": "",
"No prompts found": "", "No prompts found": "",
"No results": "Tidak ada hasil yang ditemukan", "No results": "Tidak ada hasil yang ditemukan",
"No results found": "Tidak ada hasil yang ditemukan", "No results found": "Tidak ada hasil yang ditemukan",
@ -1157,6 +1178,7 @@
"Only alphanumeric characters and hyphens are allowed in the command string.": "Hanya karakter alfanumerik dan tanda hubung yang diizinkan dalam string perintah.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Hanya karakter alfanumerik dan tanda hubung yang diizinkan dalam string perintah.",
"Only can be triggered when the chat input is in focus.": "", "Only can be triggered when the chat input is in focus.": "",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "", "Only collections can be edited, create a new knowledge base to edit/add documents.": "",
"Only invited users can access": "",
"Only markdown files are allowed": "", "Only markdown files are allowed": "",
"Only select users and groups with permission can access": "", "Only select users and groups with permission can access": "",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "Ups! Sepertinya URL tidak valid. Mohon periksa ulang dan coba lagi.", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Ups! Sepertinya URL tidak valid. Mohon periksa ulang dan coba lagi.",
@ -1219,6 +1241,7 @@
"Personalization": "Personalisasi", "Personalization": "Personalisasi",
"Pin": "", "Pin": "",
"Pinned": "", "Pinned": "",
"Pinned Messages": "",
"Pioneer insights": "", "Pioneer insights": "",
"Pipe": "", "Pipe": "",
"Pipeline deleted successfully": "Pipeline berhasil dihapus", "Pipeline deleted successfully": "Pipeline berhasil dihapus",
@ -1261,9 +1284,9 @@
"Previous 7 days": "7 hari sebelumnya", "Previous 7 days": "7 hari sebelumnya",
"Previous message": "", "Previous message": "",
"Private": "", "Private": "",
"Private conversation between selected users": "",
"Profile": "Profil", "Profile": "Profil",
"Prompt": "", "Prompt": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Permintaan (mis. Ceritakan sebuah fakta menarik tentang Kekaisaran Romawi)",
"Prompt Autocompletion": "", "Prompt Autocompletion": "",
"Prompt Content": "Konten yang Diminta", "Prompt Content": "Konten yang Diminta",
"Prompt created successfully": "", "Prompt created successfully": "",
@ -1448,6 +1471,7 @@
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "", "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
"Set Voice": "Mengatur Suara", "Set Voice": "Mengatur Suara",
"Set whisper model": "", "Set whisper model": "",
"Set your status": "",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "", "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "", "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets how far back for the model to look back to prevent repetition.": "", "Sets how far back for the model to look back to prevent repetition.": "",
@ -1500,6 +1524,9 @@
"Start a new conversation": "", "Start a new conversation": "",
"Start of the channel": "Awal saluran", "Start of the channel": "Awal saluran",
"Start Tag": "", "Start Tag": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Steps": "", "Steps": "",
@ -1515,7 +1542,7 @@
"STT Model": "Model STT", "STT Model": "Model STT",
"STT Settings": "Pengaturan STT", "STT Settings": "Pengaturan STT",
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Subtitle (misalnya tentang Kekaisaran Romawi)", "Subtitle": "",
"Success": "Berhasil", "Success": "Berhasil",
"Successfully imported {{userCount}} users.": "", "Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Berhasil diperbarui.", "Successfully updated.": "Berhasil diperbarui.",
@ -1598,7 +1625,6 @@
"Tika Server URL required.": "", "Tika Server URL required.": "",
"Tiktoken": "", "Tiktoken": "",
"Title": "Judul", "Title": "Judul",
"Title (e.g. Tell me a fun fact)": "Judul (misalnya, Ceritakan sebuah fakta menarik)",
"Title Auto-Generation": "Pembuatan Judul Secara Otomatis", "Title Auto-Generation": "Pembuatan Judul Secara Otomatis",
"Title cannot be an empty string.": "Judul tidak boleh berupa string kosong.", "Title cannot be an empty string.": "Judul tidak boleh berupa string kosong.",
"Title Generation": "", "Title Generation": "",
@ -1667,6 +1693,7 @@
"Update and Copy Link": "Perbarui dan Salin Tautan", "Update and Copy Link": "Perbarui dan Salin Tautan",
"Update for the latest features and improvements.": "", "Update for the latest features and improvements.": "",
"Update password": "Perbarui kata sandi", "Update password": "Perbarui kata sandi",
"Update your status": "",
"Updated": "", "Updated": "",
"Updated at": "Diperbarui di", "Updated at": "Diperbarui di",
"Updated At": "", "Updated At": "",
@ -1720,6 +1747,7 @@
"View Replies": "", "View Replies": "",
"View Result from **{{NAME}}**": "", "View Result from **{{NAME}}**": "",
"Visibility": "", "Visibility": "",
"Visible to all users": "",
"Vision": "", "Vision": "",
"Voice": "Suara", "Voice": "Suara",
"Voice Input": "", "Voice Input": "",
@ -1747,6 +1775,7 @@
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"What's New in": "Apa yang Baru di", "What's New in": "Apa yang Baru di",
"What's on your mind?": "",
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "", "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
"wherever you are": "", "wherever you are": "",
"Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "",

View file

@ -18,11 +18,15 @@
"{{COUNT}} words": "{{COUNT}} focail", "{{COUNT}} words": "{{COUNT}} focail",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} ag {{LOCALIZED_TIME}}", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} ag {{LOCALIZED_TIME}}",
"{{model}} download has been canceled": "Tá íoslódáil {{model}} curtha ar ceal", "{{model}} download has been canceled": "Tá íoslódáil {{model}} curtha ar ceal",
"{{NAMES}} reacted with {{REACTION}}": "",
"{{user}}'s Chats": "Comhráite {{user}}", "{{user}}'s Chats": "Comhráite {{user}}",
"{{webUIName}} Backend Required": "{{webUIName}} Ceoldeireadh Riachtanach", "{{webUIName}} Backend Required": "{{webUIName}} Ceoldeireadh Riachtanach",
"*Prompt node ID(s) are required for image generation": "* Tá ID nód leid ag teastáil chun íomhá a ghiniúint", "*Prompt node ID(s) are required for image generation": "* Tá ID nód leid ag teastáil chun íomhá a ghiniúint",
"1 Source": "1 Foinse", "1 Source": "1 Foinse",
"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.": "Tá leagan nua (v {{LATEST_VERSION}}) ar fáil anois.", "A new version (v{{LATEST_VERSION}}) is now available.": "Tá leagan nua (v {{LATEST_VERSION}}) ar fáil anois.",
"A private conversation between you and selected users": "",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Úsáidtear samhail tascanna agus tascanna á ndéanamh amhail teidil a ghiniúint le haghaidh comhráite agus fiosrúcháin chuardaigh ghréasáin", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Úsáidtear samhail tascanna agus tascanna á ndéanamh amhail teidil a ghiniúint le haghaidh comhráite agus fiosrúcháin chuardaigh ghréasáin",
"a user": "úsáideoir", "a user": "úsáideoir",
"About": "Maidir", "About": "Maidir",
@ -53,7 +57,8 @@
"Add Custom Prompt": "Cuir Leid Saincheaptha leis", "Add Custom Prompt": "Cuir Leid Saincheaptha leis",
"Add Details": "Cuir Sonraí leis", "Add Details": "Cuir Sonraí leis",
"Add Files": "Cuir Comhaid", "Add Files": "Cuir Comhaid",
"Add Group": "Cuir Grúpa leis", "Add Member": "",
"Add Members": "",
"Add Memory": "Cuir Cuimhne", "Add Memory": "Cuir Cuimhne",
"Add Model": "Cuir Samhail leis", "Add Model": "Cuir Samhail leis",
"Add Reaction": "Cuir Frithghníomh leis", "Add Reaction": "Cuir Frithghníomh leis",
@ -252,6 +257,7 @@
"Citations": "Comhlua", "Citations": "Comhlua",
"Clear memory": "Cuimhne ghlan", "Clear memory": "Cuimhne ghlan",
"Clear Memory": "Glan Cuimhne", "Clear Memory": "Glan Cuimhne",
"Clear status": "",
"click here": "cliceáil anseo", "click here": "cliceáil anseo",
"Click here for filter guides.": "Cliceáil anseo le haghaidh treoracha scagaire.", "Click here for filter guides.": "Cliceáil anseo le haghaidh treoracha scagaire.",
"Click here for help.": "Cliceáil anseo le haghaidh cabhair.", "Click here for help.": "Cliceáil anseo le haghaidh cabhair.",
@ -288,6 +294,7 @@
"Code Interpreter": "Ateangaire Cód", "Code Interpreter": "Ateangaire Cód",
"Code Interpreter Engine": "Inneall Ateangaire Cóid", "Code Interpreter Engine": "Inneall Ateangaire Cóid",
"Code Interpreter Prompt Template": "Teimpléad Pras Ateangaire Cód", "Code Interpreter Prompt Template": "Teimpléad Pras Ateangaire Cód",
"Collaboration channel where people join as members": "",
"Collapse": "Laghdaigh", "Collapse": "Laghdaigh",
"Collection": "Bailiúchán", "Collection": "Bailiúchán",
"Color": "Dath", "Color": "Dath",
@ -447,6 +454,7 @@
"Discover, download, and explore custom prompts": "Leideanna saincheaptha a fháil amach, a íoslódáil agus a iniúchadh", "Discover, download, and explore custom prompts": "Leideanna saincheaptha a fháil amach, a íoslódáil agus a iniúchadh",
"Discover, download, and explore custom tools": "Uirlisí saincheaptha a fháil amach, íoslódáil agus iniúchadh", "Discover, download, and explore custom tools": "Uirlisí saincheaptha a fháil amach, íoslódáil agus iniúchadh",
"Discover, download, and explore model presets": "Réamhshocruithe samhail a fháil amach, a íoslódáil agus a iniúchadh", "Discover, download, and explore model presets": "Réamhshocruithe samhail a fháil amach, a íoslódáil agus a iniúchadh",
"Discussion channel where access is based on groups and permissions": "",
"Display": "Taispeáin", "Display": "Taispeáin",
"Display chat title in tab": "Taispeáin teideal an chomhrá sa chluaisín", "Display chat title in tab": "Taispeáin teideal an chomhrá sa chluaisín",
"Display Emoji in Call": "Taispeáin Emoji i nGlao", "Display Emoji in Call": "Taispeáin Emoji i nGlao",
@ -463,6 +471,7 @@
"Document": "Doiciméad", "Document": "Doiciméad",
"Document Intelligence": "Faisnéise Doiciméad", "Document Intelligence": "Faisnéise Doiciméad",
"Document Intelligence endpoint required.": "Críochphointe Faisnéise Doiciméad ag teastáil.", "Document Intelligence endpoint required.": "Críochphointe Faisnéise Doiciméad ag teastáil.",
"Document Intelligence Model": "",
"Documentation": "Doiciméadú", "Documentation": "Doiciméadú",
"Documents": "Doiciméid", "Documents": "Doiciméid",
"does not make any external connections, and your data stays securely on your locally hosted server.": "ní dhéanann sé aon naisc sheachtracha, agus fanann do chuid sonraí go slán ar do fhreastalaí a óstáiltear go háitiúil.", "does not make any external connections, and your data stays securely on your locally hosted server.": "ní dhéanann sé aon naisc sheachtracha, agus fanann do chuid sonraí go slán ar do fhreastalaí a óstáiltear go háitiúil.",
@ -485,12 +494,15 @@
"e.g. \"json\" or a JSON schema": "m.sh. \"json\" nó scéimre JSON", "e.g. \"json\" or a JSON schema": "m.sh. \"json\" nó scéimre JSON",
"e.g. 60": "m.sh. 60", "e.g. 60": "m.sh. 60",
"e.g. A filter to remove profanity from text": "m.sh. Scagaire chun profanity a bhaint as téacs", "e.g. A filter to remove profanity from text": "m.sh. Scagaire chun profanity a bhaint as téacs",
"e.g. about the Roman Empire": "",
"e.g. en": "m.sh. en", "e.g. en": "m.sh. en",
"e.g. My Filter": "m.sh. Mo Scagaire", "e.g. My Filter": "m.sh. Mo Scagaire",
"e.g. My Tools": "m.sh. Mo Uirlisí", "e.g. My Tools": "m.sh. Mo Uirlisí",
"e.g. my_filter": "m.sh. mo_scagaire", "e.g. my_filter": "m.sh. mo_scagaire",
"e.g. my_tools": "m.sh. mo_uirlisí", "e.g. my_tools": "m.sh. mo_uirlisí",
"e.g. pdf, docx, txt": "m.sh. pdf, docx, txt", "e.g. pdf, docx, txt": "m.sh. pdf, docx, txt",
"e.g. Tell me a fun fact": "",
"e.g. Tell me a fun fact about the Roman Empire": "",
"e.g. Tools for performing various operations": "m.sh. Uirlisí chun oibríochtaí éagsúla a dhéanamh", "e.g. Tools for performing various operations": "m.sh. Uirlisí chun oibríochtaí éagsúla a dhéanamh",
"e.g., 3, 4, 5 (leave blank for default)": "m.sh., 3, 4, 5 (fág bán le haghaidh réamhshocraithe)", "e.g., 3, 4, 5 (leave blank for default)": "m.sh., 3, 4, 5 (fág bán le haghaidh réamhshocraithe)",
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "m.sh., fuaim/wav, fuaim/mpeg, físeán/* (fág bán le haghaidh réamhshocruithe)", "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "m.sh., fuaim/wav, fuaim/mpeg, físeán/* (fág bán le haghaidh réamhshocruithe)",
@ -564,6 +576,7 @@
"Enter Docling Server URL": "Cuir isteach URL Freastalaí Doling", "Enter Docling Server URL": "Cuir isteach URL Freastalaí Doling",
"Enter Document Intelligence Endpoint": "Iontráil Críochphointe Faisnéise Doiciméid", "Enter Document Intelligence Endpoint": "Iontráil Críochphointe Faisnéise Doiciméid",
"Enter Document Intelligence Key": "Iontráil Eochair Faisnéise Doiciméad", "Enter Document Intelligence Key": "Iontráil Eochair Faisnéise Doiciméad",
"Enter Document Intelligence Model": "",
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "", "Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
"Enter Exa API Key": "Cuir isteach Eochair Exa API", "Enter Exa API Key": "Cuir isteach Eochair Exa API",
"Enter External Document Loader API Key": "Cuir isteach Eochair API Luchtaitheora Doiciméad Seachtrach", "Enter External Document Loader API Key": "Cuir isteach Eochair API Luchtaitheora Doiciméad Seachtrach",
@ -689,7 +702,6 @@
"Export Config to JSON File": "Easpórtáil Cumraíocht chuig Comhad JSON", "Export Config to JSON File": "Easpórtáil Cumraíocht chuig Comhad JSON",
"Export Models": "", "Export Models": "",
"Export Presets": "Easpórtáil Gach Comhrá Cartlainne", "Export Presets": "Easpórtáil Gach Comhrá Cartlainne",
"Export Prompt Suggestions": "Moltaí Easpórtála",
"Export Prompts": "", "Export Prompts": "",
"Export to CSV": "Easpórtáil go CSV", "Export to CSV": "Easpórtáil go CSV",
"Export Tools": "", "Export Tools": "",
@ -704,6 +716,8 @@
"External Web Search URL": "URL Cuardaigh Gréasáin Sheachtrach", "External Web Search URL": "URL Cuardaigh Gréasáin Sheachtrach",
"Fade Effect for Streaming Text": "Éifeacht Céimnithe le haghaidh Sruthú Téacs", "Fade Effect for Streaming Text": "Éifeacht Céimnithe le haghaidh Sruthú Téacs",
"Failed to add file.": "Theip ar an gcomhad a chur leis.", "Failed to add file.": "Theip ar an gcomhad a chur leis.",
"Failed to add members": "",
"Failed to clear status": "",
"Failed to connect to {{URL}} OpenAPI tool server": "Theip ar nascadh le {{URL}} freastalaí uirlisí OpenAPI", "Failed to connect to {{URL}} OpenAPI tool server": "Theip ar nascadh le {{URL}} freastalaí uirlisí OpenAPI",
"Failed to copy link": "Theip ar an nasc a chóipeáil", "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 create API Key.": "Theip ar an eochair API a chruthú.",
@ -717,12 +731,14 @@
"Failed to load file content.": "Theip ar lódáil ábhar an chomhaid.", "Failed to load file content.": "Theip ar lódáil ábhar an chomhaid.",
"Failed to move chat": "Theip ar an gcomhrá a bhogadh", "Failed to move chat": "Theip ar an gcomhrá a bhogadh",
"Failed to read clipboard contents": "Theip ar ábhar gearrthaisce a lé", "Failed to read clipboard contents": "Theip ar ábhar gearrthaisce a lé",
"Failed to remove member": "",
"Failed to render diagram": "Theip ar an léaráid a rindreáil", "Failed to render diagram": "Theip ar an léaráid a rindreáil",
"Failed to render visualization": "Theip ar an léirshamhlú a rindreáil", "Failed to render visualization": "Theip ar an léirshamhlú a rindreáil",
"Failed to save connections": "Theip ar na naisc a shábháil", "Failed to save connections": "Theip ar na naisc a shábháil",
"Failed to save conversation": "Theip ar an gcomhrá a shábháil", "Failed to save conversation": "Theip ar an gcomhrá a shábháil",
"Failed to save models configuration": "Theip ar chumraíocht na samhlacha a shábháil", "Failed to save models configuration": "Theip ar chumraíocht na samhlacha a shábháil",
"Failed to update settings": "Theip ar shocruithe a nuashonrú", "Failed to update settings": "Theip ar shocruithe a nuashonrú",
"Failed to update status": "",
"Failed to upload file.": "Theip ar uaslódáil an chomhaid.", "Failed to upload file.": "Theip ar uaslódáil an chomhaid.",
"Features": "Gnéithe", "Features": "Gnéithe",
"Features Permissions": "Ceadanna Gnéithe", "Features Permissions": "Ceadanna Gnéithe",
@ -816,11 +832,13 @@
"Google PSE Engine Id": "ID Inneall Google PSE", "Google PSE Engine Id": "ID Inneall Google PSE",
"Gravatar": "Gravatar", "Gravatar": "Gravatar",
"Group": "Grúpa", "Group": "Grúpa",
"Group Channel": "",
"Group created successfully": "Grúpa cruthaithe go rathúil", "Group created successfully": "Grúpa cruthaithe go rathúil",
"Group deleted successfully": "D'éirigh le scriosadh an ghrúpa", "Group deleted successfully": "D'éirigh le scriosadh an ghrúpa",
"Group Description": "Cur síos ar an nGrúpa", "Group Description": "Cur síos ar an nGrúpa",
"Group Name": "Ainm an Ghrúpa", "Group Name": "Ainm an Ghrúpa",
"Group updated successfully": "D'éirigh le nuashonrú an ghrúpa", "Group updated successfully": "D'éirigh le nuashonrú an ghrúpa",
"groups": "",
"Groups": "Grúpaí", "Groups": "Grúpaí",
"H1": "H1", "H1": "H1",
"H2": "H2", "H2": "H2",
@ -875,7 +893,6 @@
"Import Models": "", "Import Models": "",
"Import Notes": "Nótaí Iompórtála", "Import Notes": "Nótaí Iompórtála",
"Import Presets": "Réamhshocruithe Iompórtáil", "Import Presets": "Réamhshocruithe Iompórtáil",
"Import Prompt Suggestions": "Moltaí Pras Iompórtála",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "D'éirigh leis an allmhairiú", "Import successful": "D'éirigh leis an allmhairiú",
"Import Tools": "", "Import Tools": "",
@ -1011,6 +1028,9 @@
"MCP": "MCP", "MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "Is turgnamhach tacaíocht MCP agus athraítear a shonraíocht go minic, rud a dfhéadfadh neamh-chomhoiriúnachtaí a bheith mar thoradh air. Déanann foireann Open WebUI cothabháil dhíreach ar thacaíocht sonraíochta OpenAPI, rud a fhágann gurb é an rogha is iontaofa é le haghaidh comhoiriúnachta.", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "Is turgnamhach tacaíocht MCP agus athraítear a shonraíocht go minic, rud a dfhéadfadh neamh-chomhoiriúnachtaí a bheith mar thoradh air. Déanann foireann Open WebUI cothabháil dhíreach ar thacaíocht sonraíochta OpenAPI, rud a fhágann gurb é an rogha is iontaofa é le haghaidh comhoiriúnachta.",
"Medium": "Meánach", "Medium": "Meánach",
"Member removed successfully": "",
"Members": "",
"Members added successfully": "",
"Memories accessible by LLMs will be shown here.": "Taispeánfar cuimhní atá inrochtana ag LLManna anseo.", "Memories accessible by LLMs will be shown here.": "Taispeánfar cuimhní atá inrochtana ag LLManna anseo.",
"Memory": "Cuimhne", "Memory": "Cuimhne",
"Memory added successfully": "Cuireadh cuimhne leis go", "Memory added successfully": "Cuireadh cuimhne leis go",
@ -1110,6 +1130,7 @@
"No models selected": "Uimh samhlacha roghnaithe", "No models selected": "Uimh samhlacha roghnaithe",
"No Notes": "Gan Nótaí", "No Notes": "Gan Nótaí",
"No notes found": "Níor aimsíodh aon nótaí", "No notes found": "Níor aimsíodh aon nótaí",
"No pinned messages": "",
"No prompts found": "Níor aimsíodh aon leideanna", "No prompts found": "Níor aimsíodh aon leideanna",
"No results": "Níl aon torthaí le fáil", "No results": "Níl aon torthaí le fáil",
"No results found": "Níl aon torthaí le fáil", "No results found": "Níl aon torthaí le fáil",
@ -1157,6 +1178,7 @@
"Only alphanumeric characters and hyphens are allowed in the command string.": "Ní cheadaítear ach carachtair alfauméireacha agus braithíní sa sreangán ordaithe.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Ní cheadaítear ach carachtair alfauméireacha agus braithíní sa sreangán ordaithe.",
"Only can be triggered when the chat input is in focus.": "Ní féidir é a spreagadh ach amháin nuair a bhíonn an t-ionchur comhrá i bhfócas.", "Only can be triggered when the chat input is in focus.": "Ní féidir é a spreagadh ach amháin nuair a bhíonn an t-ionchur comhrá i bhfócas.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Ní féidir ach bailiúcháin a chur in eagar, bonn eolais nua a chruthú chun doiciméid a chur in eagar/a chur leis.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Ní féidir ach bailiúcháin a chur in eagar, bonn eolais nua a chruthú chun doiciméid a chur in eagar/a chur leis.",
"Only invited users can access": "",
"Only markdown files are allowed": "Ní cheadaítear ach comhaid marcála síos", "Only markdown files are allowed": "Ní cheadaítear ach comhaid marcála síos",
"Only select users and groups with permission can access": "Ní féidir ach le húsáideoirí roghnaithe agus le grúpaí a bhfuil cead acu rochtain a fháil", "Only select users and groups with permission can access": "Ní féidir ach le húsáideoirí roghnaithe agus le grúpaí a bhfuil cead acu rochtain a fháil",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "Ups! Is cosúil go bhfuil an URL neamhbhailí. Seiceáil faoi dhó le do thoil agus iarracht arís.", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Ups! Is cosúil go bhfuil an URL neamhbhailí. Seiceáil faoi dhó le do thoil agus iarracht arís.",
@ -1219,6 +1241,7 @@
"Personalization": "Pearsantú", "Personalization": "Pearsantú",
"Pin": "Bioráin", "Pin": "Bioráin",
"Pinned": "Pinneáilte", "Pinned": "Pinneáilte",
"Pinned Messages": "",
"Pioneer insights": "Léargais ceannródaí", "Pioneer insights": "Léargais ceannródaí",
"Pipe": "Píopa", "Pipe": "Píopa",
"Pipeline deleted successfully": "Scriosta píblíne go rathúil", "Pipeline deleted successfully": "Scriosta píblíne go rathúil",
@ -1261,9 +1284,9 @@
"Previous 7 days": "7 lá roimhe seo", "Previous 7 days": "7 lá roimhe seo",
"Previous message": "Teachtaireacht roimhe seo", "Previous message": "Teachtaireacht roimhe seo",
"Private": "Príobháideach", "Private": "Príobháideach",
"Private conversation between selected users": "",
"Profile": "Próifíl", "Profile": "Próifíl",
"Prompt": "Leid", "Prompt": "Leid",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Leid (m.sh. inis dom fíric spraíúil faoin Impireacht Rómhánach)",
"Prompt Autocompletion": "Uathchríochnú Pras", "Prompt Autocompletion": "Uathchríochnú Pras",
"Prompt Content": "Ábhar Leid", "Prompt Content": "Ábhar Leid",
"Prompt created successfully": "Leid cruthaithe go rathúil", "Prompt created successfully": "Leid cruthaithe go rathúil",
@ -1449,6 +1472,7 @@
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Socraigh líon na snáitheanna oibrithe a úsáidtear le haghaidh ríomh. Rialaíonn an rogha seo cé mhéad snáithe a úsáidtear chun iarratais a thagann isteach a phróiseáil i gcomhthráth. D'fhéadfadh méadú ar an luach seo feidhmíocht a fheabhsú faoi ualaí oibre comhairgeadra ard ach féadfaidh sé níos mó acmhainní LAP a úsáid freisin.", "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Socraigh líon na snáitheanna oibrithe a úsáidtear le haghaidh ríomh. Rialaíonn an rogha seo cé mhéad snáithe a úsáidtear chun iarratais a thagann isteach a phróiseáil i gcomhthráth. D'fhéadfadh méadú ar an luach seo feidhmíocht a fheabhsú faoi ualaí oibre comhairgeadra ard ach féadfaidh sé níos mó acmhainní LAP a úsáid freisin.",
"Set Voice": "Socraigh Guth", "Set Voice": "Socraigh Guth",
"Set whisper model": "Socraigh samhail cogarnaí", "Set whisper model": "Socraigh samhail cogarnaí",
"Set your status": "",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Socraíonn sé claonadh cothrom i gcoinne comharthaí a tháinig chun solais uair amháin ar a laghad. Cuirfidh luach níos airde (m.sh., 1.5) pionós níos láidre ar athrá, agus beidh luach níos ísle (m.sh., 0.9) níos boige. Ag 0, tá sé díchumasaithe.", "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Socraíonn sé claonadh cothrom i gcoinne comharthaí a tháinig chun solais uair amháin ar a laghad. Cuirfidh luach níos airde (m.sh., 1.5) pionós níos láidre ar athrá, agus beidh luach níos ísle (m.sh., 0.9) níos boige. Ag 0, tá sé díchumasaithe.",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Socraíonn sé laofacht scálaithe i gcoinne comharthaí chun pionós a ghearradh ar athrá, bunaithe ar cé mhéad uair a tháinig siad chun solais. Cuirfidh luach níos airde (m.sh., 1.5) pionós níos láidre ar athrá, agus beidh luach níos ísle (m.sh., 0.9) níos boige. Ag 0, tá sé díchumasaithe.", "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Socraíonn sé laofacht scálaithe i gcoinne comharthaí chun pionós a ghearradh ar athrá, bunaithe ar cé mhéad uair a tháinig siad chun solais. Cuirfidh luach níos airde (m.sh., 1.5) pionós níos láidre ar athrá, agus beidh luach níos ísle (m.sh., 0.9) níos boige. Ag 0, tá sé díchumasaithe.",
"Sets how far back for the model to look back to prevent repetition.": "Socraíonn sé cé chomh fada siar is atá an tsamhail le breathnú siar chun athrá a chosc.", "Sets how far back for the model to look back to prevent repetition.": "Socraíonn sé cé chomh fada siar is atá an tsamhail le breathnú siar chun athrá a chosc.",
@ -1501,6 +1525,9 @@
"Start a new conversation": "Tosaigh comhrá nua", "Start a new conversation": "Tosaigh comhrá nua",
"Start of the channel": "Tús an chainéil", "Start of the channel": "Tús an chainéil",
"Start Tag": "Clib Tosaigh", "Start Tag": "Clib Tosaigh",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
"Status Updates": "Nuashonruithe Stádais", "Status Updates": "Nuashonruithe Stádais",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Steps": "Céimeanna", "Steps": "Céimeanna",
@ -1516,7 +1543,7 @@
"STT Model": "Samhail STT", "STT Model": "Samhail STT",
"STT Settings": "Socruithe STT", "STT Settings": "Socruithe STT",
"Stylized PDF Export": "Easpórtáil PDF Stílithe", "Stylized PDF Export": "Easpórtáil PDF Stílithe",
"Subtitle (e.g. about the Roman Empire)": "Fotheideal (m.sh. faoin Impireacht Rómhánach)", "Subtitle": "",
"Success": "Rath", "Success": "Rath",
"Successfully imported {{userCount}} users.": "Iompórtáladh {{userCount}} úsáideoir go rathúil.", "Successfully imported {{userCount}} users.": "Iompórtáladh {{userCount}} úsáideoir go rathúil.",
"Successfully updated.": "Nuashonraithe go rathúil.", "Successfully updated.": "Nuashonraithe go rathúil.",
@ -1599,7 +1626,6 @@
"Tika Server URL required.": "Teastaíonn URL Freastalaí Tika.", "Tika Server URL required.": "Teastaíonn URL Freastalaí Tika.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Title": "Teideal", "Title": "Teideal",
"Title (e.g. Tell me a fun fact)": "Teideal (m.sh. inis dom fíric spraíúil)",
"Title Auto-Generation": "Teideal Auto-Generation", "Title Auto-Generation": "Teideal Auto-Generation",
"Title cannot be an empty string.": "Ní féidir leis an teideal a bheith ina teaghrán folamh.", "Title cannot be an empty string.": "Ní féidir leis an teideal a bheith ina teaghrán folamh.",
"Title Generation": "Giniúint Teidil", "Title Generation": "Giniúint Teidil",
@ -1668,6 +1694,7 @@
"Update and Copy Link": "Nuashonraigh agus Cóipeáil Nasc", "Update and Copy Link": "Nuashonraigh agus Cóipeáil Nasc",
"Update for the latest features and improvements.": "Nuashonrú le haghaidh na gnéithe agus na feabhsuithe is déanaí.", "Update for the latest features and improvements.": "Nuashonrú le haghaidh na gnéithe agus na feabhsuithe is déanaí.",
"Update password": "Nuashonrú pasfhocal", "Update password": "Nuashonrú pasfhocal",
"Update your status": "",
"Updated": "Nuashonraithe", "Updated": "Nuashonraithe",
"Updated at": "Nuashonraithe ag", "Updated at": "Nuashonraithe ag",
"Updated At": "Nuashonraithe Ag", "Updated At": "Nuashonraithe Ag",
@ -1721,6 +1748,7 @@
"View Replies": "Féach ar Fhreagraí", "View Replies": "Féach ar Fhreagraí",
"View Result from **{{NAME}}**": "Féach ar Thoradh ó **{{NAME}}**", "View Result from **{{NAME}}**": "Féach ar Thoradh ó **{{NAME}}**",
"Visibility": "Infheictheacht", "Visibility": "Infheictheacht",
"Visible to all users": "",
"Vision": "Fís", "Vision": "Fís",
"Voice": "Guth", "Voice": "Guth",
"Voice Input": "Ionchur Gutha", "Voice Input": "Ionchur Gutha",
@ -1748,6 +1776,7 @@
"What are you trying to achieve?": "Cad atá tú ag iarraidh a bhaint amach?", "What are you trying to achieve?": "Cad atá tú ag iarraidh a bhaint amach?",
"What are you working on?": "Cad air a bhfuil tú ag obair?", "What are you working on?": "Cad air a bhfuil tú ag obair?",
"What's New in": "Cad atá Nua i", "What's New in": "Cad atá Nua i",
"What's on your mind?": "",
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Nuair a bheidh sé cumasaithe, freagróidh an tsamhail gach teachtaireacht comhrá i bhfíor-am, ag giniúint freagra a luaithe a sheolann an t-úsáideoir teachtaireacht. Tá an mód seo úsáideach le haghaidh feidhmchláir chomhrá beo, ach d'fhéadfadh tionchar a bheith aige ar fheidhmíocht ar chrua-earraí níos moille.", "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Nuair a bheidh sé cumasaithe, freagróidh an tsamhail gach teachtaireacht comhrá i bhfíor-am, ag giniúint freagra a luaithe a sheolann an t-úsáideoir teachtaireacht. Tá an mód seo úsáideach le haghaidh feidhmchláir chomhrá beo, ach d'fhéadfadh tionchar a bheith aige ar fheidhmíocht ar chrua-earraí níos moille.",
"wherever you are": "aon áit a bhfuil tú", "wherever you are": "aon áit a bhfuil tú",
"Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Cibé acu an ndéanfar an t-aschur a roinnt le leathanaigh nó nach ndéanfar. Beidh riail chothrománach agus uimhir leathanaigh ag scartha ó gach leathanach. Is é Bréag an rogha réamhshocraithe.", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Cibé acu an ndéanfar an t-aschur a roinnt le leathanaigh nó nach ndéanfar. Beidh riail chothrománach agus uimhir leathanaigh ag scartha ó gach leathanach. Is é Bréag an rogha réamhshocraithe.",

View file

@ -18,11 +18,15 @@
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
"{{model}} download has been canceled": "", "{{model}} download has been canceled": "",
"{{NAMES}} reacted with {{REACTION}}": "",
"{{user}}'s Chats": "{{user}} Chat", "{{user}}'s Chats": "{{user}} Chat",
"{{webUIName}} Backend Required": "{{webUIName}} Richiesta Backend", "{{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", "*Prompt node ID(s) are required for image generation": "*ID nodo prompt sono necessari per la generazione di immagini",
"1 Source": "", "1 Source": "",
"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.", "A new version (v{{LATEST_VERSION}}) is now available.": "Una nuova versione (v{{LATEST_VERSION}}) è ora disponibile.",
"A private conversation between you and selected users": "",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Un task model viene utilizzato durante l'esecuzione di attività come la generazione di titoli per chat e query di ricerca Web", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Un task model viene utilizzato durante l'esecuzione di attività come la generazione di titoli per chat e query di ricerca Web",
"a user": "un utente", "a user": "un utente",
"About": "Informazioni", "About": "Informazioni",
@ -53,7 +57,8 @@
"Add Custom Prompt": "", "Add Custom Prompt": "",
"Add Details": "", "Add Details": "",
"Add Files": "Aggiungi dei file", "Add Files": "Aggiungi dei file",
"Add Group": "Aggiungi un gruppo", "Add Member": "",
"Add Members": "",
"Add Memory": "Aggiungi memoria", "Add Memory": "Aggiungi memoria",
"Add Model": "Aggiungi un modello", "Add Model": "Aggiungi un modello",
"Add Reaction": "Aggiungi una reazione", "Add Reaction": "Aggiungi una reazione",
@ -252,6 +257,7 @@
"Citations": "Citazioni", "Citations": "Citazioni",
"Clear memory": "Cancella memoria", "Clear memory": "Cancella memoria",
"Clear Memory": "Cancella memoria", "Clear Memory": "Cancella memoria",
"Clear status": "",
"click here": "clicca qui", "click here": "clicca qui",
"Click here for filter guides.": "Clicca qui per le guide ai filtri.", "Click here for filter guides.": "Clicca qui per le guide ai filtri.",
"Click here for help.": "Clicca qui per aiuto.", "Click here for help.": "Clicca qui per aiuto.",
@ -288,6 +294,7 @@
"Code Interpreter": "Interprete codice", "Code Interpreter": "Interprete codice",
"Code Interpreter Engine": "Motore interprete codice", "Code Interpreter Engine": "Motore interprete codice",
"Code Interpreter Prompt Template": "Template di prompt per interprete codice", "Code Interpreter Prompt Template": "Template di prompt per interprete codice",
"Collaboration channel where people join as members": "",
"Collapse": "Riduci", "Collapse": "Riduci",
"Collection": "Collezione", "Collection": "Collezione",
"Color": "Colore", "Color": "Colore",
@ -447,6 +454,7 @@
"Discover, download, and explore custom prompts": "Scopri, scarica ed esplora prompt personalizzati", "Discover, download, and explore custom prompts": "Scopri, scarica ed esplora prompt personalizzati",
"Discover, download, and explore custom tools": "Scopri, scarica ed esplora strumenti personalizzati", "Discover, download, and explore custom tools": "Scopri, scarica ed esplora strumenti personalizzati",
"Discover, download, and explore model presets": "Scopri, scarica ed esplora i preset dei modello", "Discover, download, and explore model presets": "Scopri, scarica ed esplora i preset dei modello",
"Discussion channel where access is based on groups and permissions": "",
"Display": "Visualizza", "Display": "Visualizza",
"Display chat title in tab": "", "Display chat title in tab": "",
"Display Emoji in Call": "Visualizza emoji nella chiamata", "Display Emoji in Call": "Visualizza emoji nella chiamata",
@ -463,6 +471,7 @@
"Document": "Documento", "Document": "Documento",
"Document Intelligence": "Document Intelligence", "Document Intelligence": "Document Intelligence",
"Document Intelligence endpoint required.": "", "Document Intelligence endpoint required.": "",
"Document Intelligence Model": "",
"Documentation": "Documentazione", "Documentation": "Documentazione",
"Documents": "Documenti", "Documents": "Documenti",
"does not make any external connections, and your data stays securely on your locally hosted server.": "non effettua connessioni esterne e i tuoi dati rimangono al sicuro sul tuo server ospitato localmente.", "does not make any external connections, and your data stays securely on your locally hosted server.": "non effettua connessioni esterne e i tuoi dati rimangono al sicuro sul tuo server ospitato localmente.",
@ -485,12 +494,15 @@
"e.g. \"json\" or a JSON schema": "ad esempio \"json\" o uno schema JSON", "e.g. \"json\" or a JSON schema": "ad esempio \"json\" o uno schema JSON",
"e.g. 60": "ad esempio 60", "e.g. 60": "ad esempio 60",
"e.g. A filter to remove profanity from text": "ad esempio un filtro per rimuovere le parolacce dal testo", "e.g. A filter to remove profanity from text": "ad esempio un filtro per rimuovere le parolacce dal testo",
"e.g. about the Roman Empire": "",
"e.g. en": "ad esempio en", "e.g. en": "ad esempio en",
"e.g. My Filter": "ad esempio il Mio Filtro", "e.g. My Filter": "ad esempio il Mio Filtro",
"e.g. My Tools": "ad esempio i Miei Strumenti", "e.g. My Tools": "ad esempio i Miei Strumenti",
"e.g. my_filter": "ad esempio il mio_filtro", "e.g. my_filter": "ad esempio il mio_filtro",
"e.g. my_tools": "ad esempio i miei_strumenti", "e.g. my_tools": "ad esempio i miei_strumenti",
"e.g. pdf, docx, txt": "ad esempio pdf, docx, txt", "e.g. pdf, docx, txt": "ad esempio pdf, docx, txt",
"e.g. Tell me a fun fact": "",
"e.g. Tell me a fun fact about the Roman Empire": "",
"e.g. Tools for performing various operations": "ad esempio strumenti per eseguire varie operazioni", "e.g. Tools for performing various operations": "ad esempio strumenti per eseguire varie operazioni",
"e.g., 3, 4, 5 (leave blank for default)": "ad esempio, 3, 4, 5 (lascia vuoto per predefinito)", "e.g., 3, 4, 5 (leave blank for default)": "ad esempio, 3, 4, 5 (lascia vuoto per predefinito)",
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "", "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
@ -564,6 +576,7 @@
"Enter Docling Server URL": "Inserisci URL del Server Docling", "Enter Docling Server URL": "Inserisci URL del Server Docling",
"Enter Document Intelligence Endpoint": "Inserisci Endpoint di Document Intelligence", "Enter Document Intelligence Endpoint": "Inserisci Endpoint di Document Intelligence",
"Enter Document Intelligence Key": "Inserisci Chiave di Document Intelligence", "Enter Document Intelligence Key": "Inserisci Chiave di Document Intelligence",
"Enter Document Intelligence Model": "",
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "", "Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
"Enter Exa API Key": "Inserisci Chiave API Exa", "Enter Exa API Key": "Inserisci Chiave API Exa",
"Enter External Document Loader API Key": "Inserisci Chiave API del Caricatore Documenti Esterno", "Enter External Document Loader API Key": "Inserisci Chiave API del Caricatore Documenti Esterno",
@ -689,7 +702,6 @@
"Export Config to JSON File": "Esporta Configurazione in file JSON", "Export Config to JSON File": "Esporta Configurazione in file JSON",
"Export Models": "", "Export Models": "",
"Export Presets": "Esporta Preset", "Export Presets": "Esporta Preset",
"Export Prompt Suggestions": "Esporta i suggerimenti per il prompt",
"Export Prompts": "", "Export Prompts": "",
"Export to CSV": "Esporta in CSV", "Export to CSV": "Esporta in CSV",
"Export Tools": "", "Export Tools": "",
@ -704,6 +716,8 @@
"External Web Search URL": "URL di ricerca web esterna", "External Web Search URL": "URL di ricerca web esterna",
"Fade Effect for Streaming Text": "", "Fade Effect for Streaming Text": "",
"Failed to add file.": "Impossibile aggiungere il file.", "Failed to add file.": "Impossibile aggiungere il file.",
"Failed to add members": "",
"Failed to clear status": "",
"Failed to connect to {{URL}} OpenAPI tool server": "Impossibile connettersi al server dello strumento OpenAPI {{URL}}", "Failed to connect to {{URL}} OpenAPI tool server": "Impossibile connettersi al server dello strumento OpenAPI {{URL}}",
"Failed to copy link": "Impossibile copiare il link", "Failed to copy link": "Impossibile copiare il link",
"Failed to create API Key.": "Impossibile creare Chiave API.", "Failed to create API Key.": "Impossibile creare Chiave API.",
@ -717,12 +731,14 @@
"Failed to load file content.": "Impossibile caricare il contenuto del file.", "Failed to load file content.": "Impossibile caricare il contenuto del file.",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to read clipboard contents": "Impossibile leggere il contenuto degli appunti", "Failed to read clipboard contents": "Impossibile leggere il contenuto degli appunti",
"Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
"Failed to render visualization": "", "Failed to render visualization": "",
"Failed to save connections": "Impossibile salvare le connessioni", "Failed to save connections": "Impossibile salvare le connessioni",
"Failed to save conversation": "Impossibile salvare la conversazione", "Failed to save conversation": "Impossibile salvare la conversazione",
"Failed to save models configuration": "Impossibile salvare la configurazione dei modelli", "Failed to save models configuration": "Impossibile salvare la configurazione dei modelli",
"Failed to update settings": "Impossibile aggiornare le impostazioni", "Failed to update settings": "Impossibile aggiornare le impostazioni",
"Failed to update status": "",
"Failed to upload file.": "Impossibile caricare il file.", "Failed to upload file.": "Impossibile caricare il file.",
"Features": "Caratteristiche", "Features": "Caratteristiche",
"Features Permissions": "Permessi delle funzionalità", "Features Permissions": "Permessi delle funzionalità",
@ -816,11 +832,13 @@
"Google PSE Engine Id": "ID motore PSE di Google", "Google PSE Engine Id": "ID motore PSE di Google",
"Gravatar": "", "Gravatar": "",
"Group": "Gruppo", "Group": "Gruppo",
"Group Channel": "",
"Group created successfully": "Gruppo creato con successo", "Group created successfully": "Gruppo creato con successo",
"Group deleted successfully": "Gruppo eliminato con successo", "Group deleted successfully": "Gruppo eliminato con successo",
"Group Description": "Descrizione Gruppo", "Group Description": "Descrizione Gruppo",
"Group Name": "Nome Gruppo", "Group Name": "Nome Gruppo",
"Group updated successfully": "Gruppo aggiornato con successo", "Group updated successfully": "Gruppo aggiornato con successo",
"groups": "",
"Groups": "Gruppi", "Groups": "Gruppi",
"H1": "", "H1": "",
"H2": "", "H2": "",
@ -875,7 +893,6 @@
"Import Models": "", "Import Models": "",
"Import Notes": "Importa Note", "Import Notes": "Importa Note",
"Import Presets": "Importa Preset", "Import Presets": "Importa Preset",
"Import Prompt Suggestions": "Importa suggerimenti Prompt",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
"Import Tools": "", "Import Tools": "",
@ -1011,6 +1028,9 @@
"MCP": "", "MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Medium": "", "Medium": "",
"Member removed successfully": "",
"Members": "",
"Members added successfully": "",
"Memories accessible by LLMs will be shown here.": "I memori accessibili ai LLM saranno mostrati qui.", "Memories accessible by LLMs will be shown here.": "I memori accessibili ai LLM saranno mostrati qui.",
"Memory": "Memoria", "Memory": "Memoria",
"Memory added successfully": "Memoria aggiunta con successo", "Memory added successfully": "Memoria aggiunta con successo",
@ -1110,6 +1130,7 @@
"No models selected": "Nessun modello selezionato", "No models selected": "Nessun modello selezionato",
"No Notes": "Nessuna nota", "No Notes": "Nessuna nota",
"No notes found": "", "No notes found": "",
"No pinned messages": "",
"No prompts found": "", "No prompts found": "",
"No results": "Nessun risultato trovato", "No results": "Nessun risultato trovato",
"No results found": "Nessun risultato trovato", "No results found": "Nessun risultato trovato",
@ -1157,6 +1178,7 @@
"Only alphanumeric characters and hyphens are allowed in the command string.": "Nella stringa di comando sono consentiti solo caratteri alfanumerici e trattini.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Nella stringa di comando sono consentiti solo caratteri alfanumerici e trattini.",
"Only can be triggered when the chat input is in focus.": "", "Only can be triggered when the chat input is in focus.": "",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Solo le collezioni possono essere modificate, crea una nuova base di conoscenza per modificare/aggiungere documenti.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Solo le collezioni possono essere modificate, crea una nuova base di conoscenza per modificare/aggiungere documenti.",
"Only invited users can access": "",
"Only markdown files are allowed": "Sono consentiti solo file markdown", "Only markdown files are allowed": "Sono consentiti solo file markdown",
"Only select users and groups with permission can access": "Solo gli utenti e i gruppi selezionati con autorizzazione possono accedere", "Only select users and groups with permission can access": "Solo gli utenti e i gruppi selezionati con autorizzazione possono accedere",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "Ops! Sembra che l'URL non sia valido. Si prega di ricontrollare e riprovare.", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Ops! Sembra che l'URL non sia valido. Si prega di ricontrollare e riprovare.",
@ -1219,6 +1241,7 @@
"Personalization": "Personalizzazione", "Personalization": "Personalizzazione",
"Pin": "Appunta", "Pin": "Appunta",
"Pinned": "Appuntato", "Pinned": "Appuntato",
"Pinned Messages": "",
"Pioneer insights": "Scopri nuove intuizioni", "Pioneer insights": "Scopri nuove intuizioni",
"Pipe": "", "Pipe": "",
"Pipeline deleted successfully": "Pipeline rimossa con successo", "Pipeline deleted successfully": "Pipeline rimossa con successo",
@ -1261,9 +1284,9 @@
"Previous 7 days": "Ultimi 7 giorni", "Previous 7 days": "Ultimi 7 giorni",
"Previous message": "", "Previous message": "",
"Private": "Privato", "Private": "Privato",
"Private conversation between selected users": "",
"Profile": "Profilo", "Profile": "Profilo",
"Prompt": "Prompt", "Prompt": "Prompt",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (ad esempio Dimmi un fatto divertente sull'Impero Romano)",
"Prompt Autocompletion": "Autocompletamento del Prompt", "Prompt Autocompletion": "Autocompletamento del Prompt",
"Prompt Content": "Contenuto del Prompt", "Prompt Content": "Contenuto del Prompt",
"Prompt created successfully": "Prompt creato con successo", "Prompt created successfully": "Prompt creato con successo",
@ -1450,6 +1473,7 @@
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Imposta il numero di thread di lavoro utilizzati per il calcolo. Questa opzione controlla quanti thread vengono utilizzati per elaborare le richieste in arrivo in modo concorrente. Aumentare questo valore può migliorare le prestazioni sotto carichi di lavoro ad alta concorrenza, ma può anche consumare più risorse CPU.", "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Imposta il numero di thread di lavoro utilizzati per il calcolo. Questa opzione controlla quanti thread vengono utilizzati per elaborare le richieste in arrivo in modo concorrente. Aumentare questo valore può migliorare le prestazioni sotto carichi di lavoro ad alta concorrenza, ma può anche consumare più risorse CPU.",
"Set Voice": "Imposta voce", "Set Voice": "Imposta voce",
"Set whisper model": "Imposta modello whisper", "Set whisper model": "Imposta modello whisper",
"Set your status": "",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Imposta un bias piatto contro i token che sono apparsi almeno una volta. Un valore più alto (ad esempio, 1,5) penalizzerà le ripetizioni in modo più forte, mentre un valore più basso (ad esempio, 0,9) sarà più indulgente. A 0, è disabilitato.", "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Imposta un bias piatto contro i token che sono apparsi almeno una volta. Un valore più alto (ad esempio, 1,5) penalizzerà le ripetizioni in modo più forte, mentre un valore più basso (ad esempio, 0,9) sarà più indulgente. A 0, è disabilitato.",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Imposta un bias di scaling contro i token per penalizzare le ripetizioni, in base a quante volte sono apparsi. Un valore più alto (ad esempio, 1,5) penalizzerà le ripetizioni in modo più forte, mentre un valore più basso (ad esempio, 0,9) sarà più indulgente. A 0, è disabilitato.", "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Imposta un bias di scaling contro i token per penalizzare le ripetizioni, in base a quante volte sono apparsi. Un valore più alto (ad esempio, 1,5) penalizzerà le ripetizioni in modo più forte, mentre un valore più basso (ad esempio, 0,9) sarà più indulgente. A 0, è disabilitato.",
"Sets how far back for the model to look back to prevent repetition.": "Imposta quanto lontano il modello deve guardare indietro per prevenire la ripetizione.", "Sets how far back for the model to look back to prevent repetition.": "Imposta quanto lontano il modello deve guardare indietro per prevenire la ripetizione.",
@ -1502,6 +1526,9 @@
"Start a new conversation": "", "Start a new conversation": "",
"Start of the channel": "Inizio del canale", "Start of the channel": "Inizio del canale",
"Start Tag": "", "Start Tag": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Steps": "", "Steps": "",
@ -1517,7 +1544,7 @@
"STT Model": "Modello STT", "STT Model": "Modello STT",
"STT Settings": "Impostazioni STT", "STT Settings": "Impostazioni STT",
"Stylized PDF Export": "Esportazione PDF Stilizzata", "Stylized PDF Export": "Esportazione PDF Stilizzata",
"Subtitle (e.g. about the Roman Empire)": "Sottotitolo (ad esempio sull'Impero Romano)", "Subtitle": "",
"Success": "Successo", "Success": "Successo",
"Successfully imported {{userCount}} users.": "", "Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Aggiornato con successo.", "Successfully updated.": "Aggiornato con successo.",
@ -1600,7 +1627,6 @@
"Tika Server URL required.": "L'URL del server Tika è obbligatorio.", "Tika Server URL required.": "L'URL del server Tika è obbligatorio.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Title": "Titolo", "Title": "Titolo",
"Title (e.g. Tell me a fun fact)": "Titolo (ad esempio Dimmi un fatto divertente)",
"Title Auto-Generation": "Generazione automatica del titolo", "Title Auto-Generation": "Generazione automatica del titolo",
"Title cannot be an empty string.": "Il titolo non può essere una stringa vuota.", "Title cannot be an empty string.": "Il titolo non può essere una stringa vuota.",
"Title Generation": "Generazione del titolo", "Title Generation": "Generazione del titolo",
@ -1669,6 +1695,7 @@
"Update and Copy Link": "Aggiorna e Copia Link", "Update and Copy Link": "Aggiorna e Copia Link",
"Update for the latest features and improvements.": "Aggiorna per le ultime funzionalità e miglioramenti.", "Update for the latest features and improvements.": "Aggiorna per le ultime funzionalità e miglioramenti.",
"Update password": "Aggiorna password", "Update password": "Aggiorna password",
"Update your status": "",
"Updated": "Aggiornato", "Updated": "Aggiornato",
"Updated at": "Aggiornato il", "Updated at": "Aggiornato il",
"Updated At": "Aggiornato Il", "Updated At": "Aggiornato Il",
@ -1722,6 +1749,7 @@
"View Replies": "Visualizza Risposte", "View Replies": "Visualizza Risposte",
"View Result from **{{NAME}}**": "Visualizza risultato da **{{NAME}}**", "View Result from **{{NAME}}**": "Visualizza risultato da **{{NAME}}**",
"Visibility": "Visibilità", "Visibility": "Visibilità",
"Visible to all users": "",
"Vision": "", "Vision": "",
"Voice": "Voce", "Voice": "Voce",
"Voice Input": "Input vocale", "Voice Input": "Input vocale",
@ -1749,6 +1777,7 @@
"What are you trying to achieve?": "Cosa stai cercando di ottenere?", "What are you trying to achieve?": "Cosa stai cercando di ottenere?",
"What are you working on?": "Su cosa stai lavorando?", "What are you working on?": "Su cosa stai lavorando?",
"What's New in": "Novità in", "What's New in": "Novità in",
"What's on your mind?": "",
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Quando abilitato, il modello risponderà a ciascun messaggio della chat in tempo reale, generando una risposta non appena l'utente invia un messaggio. Questa modalità è utile per le applicazioni di chat dal vivo, ma potrebbe influire sulle prestazioni su hardware più lento.", "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Quando abilitato, il modello risponderà a ciascun messaggio della chat in tempo reale, generando una risposta non appena l'utente invia un messaggio. Questa modalità è utile per le applicazioni di chat dal vivo, ma potrebbe influire sulle prestazioni su hardware più lento.",
"wherever you are": "Ovunque tu sia", "wherever you are": "Ovunque tu sia",
"Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Specifica se paginare l'output. Ogni pagina sarà separata da una riga orizzontale e dal numero di pagina. Predefinito è Falso.", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Specifica se paginare l'output. Ogni pagina sarà separata da una riga orizzontale e dal numero di pagina. Predefinito è Falso.",

View file

@ -18,11 +18,15 @@
"{{COUNT}} words": "{{COUNT}} 語", "{{COUNT}} words": "{{COUNT}} 語",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
"{{model}} download has been canceled": "{{model}} のダウンロードがキャンセルされました", "{{model}} download has been canceled": "{{model}} のダウンロードがキャンセルされました",
"{{NAMES}} reacted with {{REACTION}}": "",
"{{user}}'s Chats": "{{user}} のチャット", "{{user}}'s Chats": "{{user}} のチャット",
"{{webUIName}} Backend Required": "{{webUIName}} バックエンドが必要です", "{{webUIName}} Backend Required": "{{webUIName}} バックエンドが必要です",
"*Prompt node ID(s) are required for image generation": "*画像生成にはプロンプトードIDが必要です", "*Prompt node ID(s) are required for image generation": "*画像生成にはプロンプトードIDが必要です",
"1 Source": "", "1 Source": "",
"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}}) が利用可能です。", "A new version (v{{LATEST_VERSION}}) is now available.": "新しいバージョン (v{{LATEST_VERSION}}) が利用可能です。",
"A private conversation between you and selected users": "",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "タスクモデルは、チャットやウェブ検索クエリのタイトルの生成などのタスクを実行するときに使用されます", "A task model is used when performing tasks such as generating titles for chats and web search queries": "タスクモデルは、チャットやウェブ検索クエリのタイトルの生成などのタスクを実行するときに使用されます",
"a user": "ユーザー", "a user": "ユーザー",
"About": "概要", "About": "概要",
@ -53,7 +57,8 @@
"Add Custom Prompt": "", "Add Custom Prompt": "",
"Add Details": "より詳しく", "Add Details": "より詳しく",
"Add Files": "ファイルを追加", "Add Files": "ファイルを追加",
"Add Group": "グループを追加", "Add Member": "",
"Add Members": "",
"Add Memory": "メモリを追加", "Add Memory": "メモリを追加",
"Add Model": "モデルを追加", "Add Model": "モデルを追加",
"Add Reaction": "リアクションを追加", "Add Reaction": "リアクションを追加",
@ -252,6 +257,7 @@
"Citations": "引用", "Citations": "引用",
"Clear memory": "メモリをクリア", "Clear memory": "メモリをクリア",
"Clear Memory": "メモリをクリア", "Clear Memory": "メモリをクリア",
"Clear status": "",
"click here": "ここをクリック", "click here": "ここをクリック",
"Click here for filter guides.": "フィルターガイドはこちらをクリックしてください。", "Click here for filter guides.": "フィルターガイドはこちらをクリックしてください。",
"Click here for help.": "ヘルプについてはここをクリックしてください。", "Click here for help.": "ヘルプについてはここをクリックしてください。",
@ -288,6 +294,7 @@
"Code Interpreter": "コードインタプリタ", "Code Interpreter": "コードインタプリタ",
"Code Interpreter Engine": "コードインタプリタエンジン", "Code Interpreter Engine": "コードインタプリタエンジン",
"Code Interpreter Prompt Template": "コードインタプリタプロンプトテンプレート", "Code Interpreter Prompt Template": "コードインタプリタプロンプトテンプレート",
"Collaboration channel where people join as members": "",
"Collapse": "折りたたむ", "Collapse": "折りたたむ",
"Collection": "コレクション", "Collection": "コレクション",
"Color": "色", "Color": "色",
@ -447,6 +454,7 @@
"Discover, download, and explore custom prompts": "カスタムプロンプトを探してダウンロードする", "Discover, download, and explore custom prompts": "カスタムプロンプトを探してダウンロードする",
"Discover, download, and explore custom tools": "カスタムツールを探てしダウンロードする", "Discover, download, and explore custom tools": "カスタムツールを探てしダウンロードする",
"Discover, download, and explore model presets": "モデルプリセットを探してダウンロードする", "Discover, download, and explore model presets": "モデルプリセットを探してダウンロードする",
"Discussion channel where access is based on groups and permissions": "",
"Display": "表示", "Display": "表示",
"Display chat title in tab": "", "Display chat title in tab": "",
"Display Emoji in Call": "コールで絵文字を表示", "Display Emoji in Call": "コールで絵文字を表示",
@ -463,6 +471,7 @@
"Document": "ドキュメント", "Document": "ドキュメント",
"Document Intelligence": "ドキュメントインテリジェンス", "Document Intelligence": "ドキュメントインテリジェンス",
"Document Intelligence endpoint required.": "", "Document Intelligence endpoint required.": "",
"Document Intelligence Model": "",
"Documentation": "ドキュメント", "Documentation": "ドキュメント",
"Documents": "ドキュメント", "Documents": "ドキュメント",
"does not make any external connections, and your data stays securely on your locally hosted server.": "は外部接続を行わず、データはローカルでホストされているサーバー上に安全に保持されます。", "does not make any external connections, and your data stays securely on your locally hosted server.": "は外部接続を行わず、データはローカルでホストされているサーバー上に安全に保持されます。",
@ -485,12 +494,15 @@
"e.g. \"json\" or a JSON schema": "例: \"json\" または JSON スキーマ", "e.g. \"json\" or a JSON schema": "例: \"json\" または JSON スキーマ",
"e.g. 60": "", "e.g. 60": "",
"e.g. A filter to remove profanity from text": "例: テキストから不適切な表現を削除するフィルター", "e.g. A filter to remove profanity from text": "例: テキストから不適切な表現を削除するフィルター",
"e.g. about the Roman Empire": "",
"e.g. en": "", "e.g. en": "",
"e.g. My Filter": "", "e.g. My Filter": "",
"e.g. My Tools": "", "e.g. My Tools": "",
"e.g. my_filter": "", "e.g. my_filter": "",
"e.g. my_tools": "", "e.g. my_tools": "",
"e.g. pdf, docx, txt": "", "e.g. pdf, docx, txt": "",
"e.g. Tell me a fun fact": "",
"e.g. Tell me a fun fact about the Roman Empire": "",
"e.g. Tools for performing various operations": "e.g. 様々な操作を実行するためのツール", "e.g. Tools for performing various operations": "e.g. 様々な操作を実行するためのツール",
"e.g., 3, 4, 5 (leave blank for default)": "e.g. 3, 4, 5 (空白でデフォルト)", "e.g., 3, 4, 5 (leave blank for default)": "e.g. 3, 4, 5 (空白でデフォルト)",
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "e.g., audio/wav,audio/mpeg,video/* (空白でデフォルト)", "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "e.g., audio/wav,audio/mpeg,video/* (空白でデフォルト)",
@ -564,6 +576,7 @@
"Enter Docling Server URL": "Docling Server URLを入力", "Enter Docling Server URL": "Docling Server URLを入力",
"Enter Document Intelligence Endpoint": "Document Intelligenceエンドポイントを入力", "Enter Document Intelligence Endpoint": "Document Intelligenceエンドポイントを入力",
"Enter Document Intelligence Key": "Document Intelligenceキーを入力", "Enter Document Intelligence Key": "Document Intelligenceキーを入力",
"Enter Document Intelligence Model": "",
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "", "Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
"Enter Exa API Key": "Exa APIキーを入力", "Enter Exa API Key": "Exa APIキーを入力",
"Enter External Document Loader API Key": "外部ドキュメントローダーのAPIキーを入力", "Enter External Document Loader API Key": "外部ドキュメントローダーのAPIキーを入力",
@ -689,7 +702,6 @@
"Export Config to JSON File": "設定をJSONファイルでエクスポート", "Export Config to JSON File": "設定をJSONファイルでエクスポート",
"Export Models": "", "Export Models": "",
"Export Presets": "プリセットのエクスポート", "Export Presets": "プリセットのエクスポート",
"Export Prompt Suggestions": "プロンプトの提案をエクスポート",
"Export Prompts": "", "Export Prompts": "",
"Export to CSV": "CSVにエクスポート", "Export to CSV": "CSVにエクスポート",
"Export Tools": "", "Export Tools": "",
@ -704,6 +716,8 @@
"External Web Search URL": "外部Web検索のURL", "External Web Search URL": "外部Web検索のURL",
"Fade Effect for Streaming Text": "ストリームテキストのフェーディング効果", "Fade Effect for Streaming Text": "ストリームテキストのフェーディング効果",
"Failed to add file.": "ファイルの追加に失敗しました。", "Failed to add file.": "ファイルの追加に失敗しました。",
"Failed to add members": "",
"Failed to clear status": "",
"Failed to connect to {{URL}} OpenAPI tool server": "{{URL}} OpenAPIツールサーバーへの接続に失敗しました。", "Failed to connect to {{URL}} OpenAPI tool server": "{{URL}} OpenAPIツールサーバーへの接続に失敗しました。",
"Failed to copy link": "リンクのコピーに失敗しました。", "Failed to copy link": "リンクのコピーに失敗しました。",
"Failed to create API Key.": "APIキーの作成に失敗しました。", "Failed to create API Key.": "APIキーの作成に失敗しました。",
@ -717,12 +731,14 @@
"Failed to load file content.": "ファイルの内容を読み込めませんでした。", "Failed to load file content.": "ファイルの内容を読み込めませんでした。",
"Failed to move chat": "チャットの移動に失敗しました。", "Failed to move chat": "チャットの移動に失敗しました。",
"Failed to read clipboard contents": "クリップボードの内容を読み取れませんでした。", "Failed to read clipboard contents": "クリップボードの内容を読み取れませんでした。",
"Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
"Failed to render visualization": "", "Failed to render visualization": "",
"Failed to save connections": "接続の保存に失敗しました。", "Failed to save connections": "接続の保存に失敗しました。",
"Failed to save conversation": "会話の保存に失敗しました。", "Failed to save conversation": "会話の保存に失敗しました。",
"Failed to save models configuration": "モデルの設定の保存に失敗しました。", "Failed to save models configuration": "モデルの設定の保存に失敗しました。",
"Failed to update settings": "設定アップデートに失敗しました。", "Failed to update settings": "設定アップデートに失敗しました。",
"Failed to update status": "",
"Failed to upload file.": "ファイルアップロードに失敗しました。", "Failed to upload file.": "ファイルアップロードに失敗しました。",
"Features": "機能", "Features": "機能",
"Features Permissions": "機能の許可", "Features Permissions": "機能の許可",
@ -816,11 +832,13 @@
"Google PSE Engine Id": "Google PSE エンジン ID", "Google PSE Engine Id": "Google PSE エンジン ID",
"Gravatar": "", "Gravatar": "",
"Group": "グループ", "Group": "グループ",
"Group Channel": "",
"Group created successfully": "グループの作成が成功しました。", "Group created successfully": "グループの作成が成功しました。",
"Group deleted successfully": "グループの削除が成功しました。", "Group deleted successfully": "グループの削除が成功しました。",
"Group Description": "グループの説明", "Group Description": "グループの説明",
"Group Name": "グループ名", "Group Name": "グループ名",
"Group updated successfully": "グループの更新が成功しました。", "Group updated successfully": "グループの更新が成功しました。",
"groups": "",
"Groups": "グループ", "Groups": "グループ",
"H1": "見出し1", "H1": "見出し1",
"H2": "見出し2", "H2": "見出し2",
@ -875,7 +893,6 @@
"Import Models": "", "Import Models": "",
"Import Notes": "ノートをインポート", "Import Notes": "ノートをインポート",
"Import Presets": "プリセットをインポート", "Import Presets": "プリセットをインポート",
"Import Prompt Suggestions": "プロンプトの提案をインポート",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
"Import Tools": "", "Import Tools": "",
@ -1011,6 +1028,9 @@
"MCP": "", "MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Medium": "中", "Medium": "中",
"Member removed successfully": "",
"Members": "",
"Members added successfully": "",
"Memories accessible by LLMs will be shown here.": "LLM がアクセスできるメモリはここに表示されます。", "Memories accessible by LLMs will be shown here.": "LLM がアクセスできるメモリはここに表示されます。",
"Memory": "メモリ", "Memory": "メモリ",
"Memory added successfully": "メモリに追加されました。", "Memory added successfully": "メモリに追加されました。",
@ -1110,6 +1130,7 @@
"No models selected": "モデルが選択されていません", "No models selected": "モデルが選択されていません",
"No Notes": "ノートがありません", "No Notes": "ノートがありません",
"No notes found": "", "No notes found": "",
"No pinned messages": "",
"No prompts found": "", "No prompts found": "",
"No results": "結果が見つかりません", "No results": "結果が見つかりません",
"No results found": "結果が見つかりません", "No results found": "結果が見つかりません",
@ -1157,6 +1178,7 @@
"Only alphanumeric characters and hyphens are allowed in the command string.": "コマンド文字列には英数字とハイフンのみが使用できます。", "Only alphanumeric characters and hyphens are allowed in the command string.": "コマンド文字列には英数字とハイフンのみが使用できます。",
"Only can be triggered when the chat input is in focus.": "", "Only can be triggered when the chat input is in focus.": "",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "コレクションのみ編集できます。新しいナレッジベースを作成してドキュメントを編集/追加してください。", "Only collections can be edited, create a new knowledge base to edit/add documents.": "コレクションのみ編集できます。新しいナレッジベースを作成してドキュメントを編集/追加してください。",
"Only invited users can access": "",
"Only markdown files are allowed": "マークダウンファイルのみが許可されています", "Only markdown files are allowed": "マークダウンファイルのみが許可されています",
"Only select users and groups with permission can access": "許可されたユーザーとグループのみがアクセスできます", "Only select users and groups with permission can access": "許可されたユーザーとグループのみがアクセスできます",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "おっと! URL が無効なようです。もう一度確認してやり直してください。", "Oops! Looks like the URL is invalid. Please double-check and try again.": "おっと! URL が無効なようです。もう一度確認してやり直してください。",
@ -1219,6 +1241,7 @@
"Personalization": "パーソナライズ", "Personalization": "パーソナライズ",
"Pin": "ピン留め", "Pin": "ピン留め",
"Pinned": "ピン留めされています", "Pinned": "ピン留めされています",
"Pinned Messages": "",
"Pioneer insights": "洞察を切り開く", "Pioneer insights": "洞察を切り開く",
"Pipe": "パイプ", "Pipe": "パイプ",
"Pipeline deleted successfully": "パイプラインが正常に削除されました", "Pipeline deleted successfully": "パイプラインが正常に削除されました",
@ -1261,9 +1284,9 @@
"Previous 7 days": "過去7日間", "Previous 7 days": "過去7日間",
"Previous message": "前のメッセージ", "Previous message": "前のメッセージ",
"Private": "プライベート", "Private": "プライベート",
"Private conversation between selected users": "",
"Profile": "プロフィール", "Profile": "プロフィール",
"Prompt": "プロンプト", "Prompt": "プロンプト",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "プロンプト(例:ローマ帝国についての楽しい事を教えてください)",
"Prompt Autocompletion": "プロンプトの自動補完", "Prompt Autocompletion": "プロンプトの自動補完",
"Prompt Content": "プロンプトの内容", "Prompt Content": "プロンプトの内容",
"Prompt created successfully": "プロンプトが正常に作成されました", "Prompt created successfully": "プロンプトが正常に作成されました",
@ -1448,6 +1471,7 @@
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "計算に使用するワーカースレッドの数を設定します。このオプションは、同時に処理可能なリクエスト数スレッド数を制御します。値を増やすことで、高い同時実行負荷下でのパフォーマンスが向上する可能性がありますが、その分CPUリソースの消費も増加します。", "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "計算に使用するワーカースレッドの数を設定します。このオプションは、同時に処理可能なリクエスト数スレッド数を制御します。値を増やすことで、高い同時実行負荷下でのパフォーマンスが向上する可能性がありますが、その分CPUリソースの消費も増加します。",
"Set Voice": "音声を設定", "Set Voice": "音声を設定",
"Set whisper model": "whisperモデルを設定", "Set whisper model": "whisperモデルを設定",
"Set your status": "",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "一度でも出現したトークンに対して一定のペナルティを設定します。値が高い1.5ほど繰り返しを強く抑制し、低い値0.9では寛容になります。0の場合は無効です。", "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "一度でも出現したトークンに対して一定のペナルティを設定します。値が高い1.5ほど繰り返しを強く抑制し、低い値0.9では寛容になります。0の場合は無効です。",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "出現回数に応じてトークンにスケーリングされたペナルティを設定します。値が高い1.5ほど繰り返しを強く抑制し、低い値0.9では寛容になります。0の場合は無効です。", "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "出現回数に応じてトークンにスケーリングされたペナルティを設定します。値が高い1.5ほど繰り返しを強く抑制し、低い値0.9では寛容になります。0の場合は無効です。",
"Sets how far back for the model to look back to prevent repetition.": "モデルが繰り返しを防止するために遡る履歴の長さを設定します。", "Sets how far back for the model to look back to prevent repetition.": "モデルが繰り返しを防止するために遡る履歴の長さを設定します。",
@ -1500,6 +1524,9 @@
"Start a new conversation": "", "Start a new conversation": "",
"Start of the channel": "チャンネルの開始", "Start of the channel": "チャンネルの開始",
"Start Tag": "", "Start Tag": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Steps": "", "Steps": "",
@ -1515,7 +1542,7 @@
"STT Model": "STTモデル", "STT Model": "STTモデル",
"STT Settings": "STT設定", "STT Settings": "STT設定",
"Stylized PDF Export": "スタイル付きPDFエクスポート", "Stylized PDF Export": "スタイル付きPDFエクスポート",
"Subtitle (e.g. about the Roman Empire)": "サブタイトル(例:ローマ帝国について)", "Subtitle": "",
"Success": "成功", "Success": "成功",
"Successfully imported {{userCount}} users.": "{{userCount}} 人のユーザが正常にインポートされました。", "Successfully imported {{userCount}} users.": "{{userCount}} 人のユーザが正常にインポートされました。",
"Successfully updated.": "正常に更新されました。", "Successfully updated.": "正常に更新されました。",
@ -1598,7 +1625,6 @@
"Tika Server URL required.": "Tika Server URLが必要です。", "Tika Server URL required.": "Tika Server URLが必要です。",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Title": "タイトル", "Title": "タイトル",
"Title (e.g. Tell me a fun fact)": "タイトル (例: 楽しい事を教えて)",
"Title Auto-Generation": "タイトル自動生成", "Title Auto-Generation": "タイトル自動生成",
"Title cannot be an empty string.": "タイトルは空文字列にできません。", "Title cannot be an empty string.": "タイトルは空文字列にできません。",
"Title Generation": "タイトル生成", "Title Generation": "タイトル生成",
@ -1667,6 +1693,7 @@
"Update and Copy Link": "リンクの更新とコピー", "Update and Copy Link": "リンクの更新とコピー",
"Update for the latest features and improvements.": "最新の機能と改善点を更新します。", "Update for the latest features and improvements.": "最新の機能と改善点を更新します。",
"Update password": "パスワードを更新", "Update password": "パスワードを更新",
"Update your status": "",
"Updated": "更新されました", "Updated": "更新されました",
"Updated at": "更新日時", "Updated at": "更新日時",
"Updated At": "更新日時", "Updated At": "更新日時",
@ -1720,6 +1747,7 @@
"View Replies": "リプライを表示", "View Replies": "リプライを表示",
"View Result from **{{NAME}}**": "**{{NAME}}**の結果を表示", "View Result from **{{NAME}}**": "**{{NAME}}**の結果を表示",
"Visibility": "可視性", "Visibility": "可視性",
"Visible to all users": "",
"Vision": "視覚", "Vision": "視覚",
"Voice": "ボイス", "Voice": "ボイス",
"Voice Input": "音声入力", "Voice Input": "音声入力",
@ -1747,6 +1775,7 @@
"What are you trying to achieve?": "何を達成したいですか?", "What are you trying to achieve?": "何を達成したいですか?",
"What are you working on?": "何に取り組んでいますか?", "What are you working on?": "何に取り組んでいますか?",
"What's New in": "新機能", "What's New in": "新機能",
"What's on your mind?": "",
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "有効にすると、ユーザのメッセージ送信と同時にリアルタイムで応答を生成します。ライブチャット用途に適しますが、性能の低い環境では動作が重くなる可能性があります。", "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "有効にすると、ユーザのメッセージ送信と同時にリアルタイムで応答を生成します。ライブチャット用途に適しますが、性能の低い環境では動作が重くなる可能性があります。",
"wherever you are": "どこにいても", "wherever you are": "どこにいても",
"Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "出力をページ分けするかどうか。各ページは水平線とページ番号で分割されます。デフォルトでは無効", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "出力をページ分けするかどうか。各ページは水平線とページ番号で分割されます。デフォルトでは無効",

View file

@ -18,11 +18,15 @@
"{{COUNT}} words": "{{COUNT}} სიტყვა", "{{COUNT}} words": "{{COUNT}} სიტყვა",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} დრო {{LOCALIZED_TIME}}", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} დრო {{LOCALIZED_TIME}}",
"{{model}} download has been canceled": "{{model}} მოდელი გაუქმდა", "{{model}} download has been canceled": "{{model}} მოდელი გაუქმდა",
"{{NAMES}} reacted with {{REACTION}}": "",
"{{user}}'s Chats": "{{user}}-ის ჩათები", "{{user}}'s Chats": "{{user}}-ის ჩათები",
"{{webUIName}} Backend Required": "{{webUIName}} საჭიროა უკანაბოლო", "{{webUIName}} Backend Required": "{{webUIName}} საჭიროა უკანაბოლო",
"*Prompt node ID(s) are required for image generation": "", "*Prompt node ID(s) are required for image generation": "",
"1 Source": "1 წყარო", "1 Source": "1 წყარო",
"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}}).", "A new version (v{{LATEST_VERSION}}) is now available.": "ხელმისაწვდომია ახალი ვერსია (v{{LATEST_VERSION}}).",
"A private conversation between you and selected users": "",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "დავალების მოდელი გამოიყენება ისეთი ამოცანების შესრულებისას, როგორიცაა ჩეთების სათაურების გენერირება და ვებ ძიების მოთხოვნები", "A task model is used when performing tasks such as generating titles for chats and web search queries": "დავალების მოდელი გამოიყენება ისეთი ამოცანების შესრულებისას, როგორიცაა ჩეთების სათაურების გენერირება და ვებ ძიების მოთხოვნები",
"a user": "მომხმარებელი", "a user": "მომხმარებელი",
"About": "შესახებ", "About": "შესახებ",
@ -53,7 +57,8 @@
"Add Custom Prompt": "", "Add Custom Prompt": "",
"Add Details": "დეტალების დამატება", "Add Details": "დეტალების დამატება",
"Add Files": "ფაილების დამატება", "Add Files": "ფაილების დამატება",
"Add Group": "ჯგუფის დამატება", "Add Member": "",
"Add Members": "",
"Add Memory": "მეხსიერების დამატება", "Add Memory": "მეხსიერების დამატება",
"Add Model": "მოდელის დამატება", "Add Model": "მოდელის დამატება",
"Add Reaction": "რეაქციის დამატება", "Add Reaction": "რეაქციის დამატება",
@ -252,6 +257,7 @@
"Citations": "ციტატები", "Citations": "ციტატები",
"Clear memory": "მეხსიერების გასუფთავება", "Clear memory": "მეხსიერების გასუფთავება",
"Clear Memory": "მეხსიერების გასუფთავება", "Clear Memory": "მეხსიერების გასუფთავება",
"Clear status": "",
"click here": "აქ დააწკაპუნეთ", "click here": "აქ დააწკაპუნეთ",
"Click here for filter guides.": "", "Click here for filter guides.": "",
"Click here for help.": "დახმარებისთვის დააწკაპუნეთ აქ.", "Click here for help.": "დახმარებისთვის დააწკაპუნეთ აქ.",
@ -288,6 +294,7 @@
"Code Interpreter": "კოდის ინტერპრეტატორი", "Code Interpreter": "კოდის ინტერპრეტატორი",
"Code Interpreter Engine": "კოდის ინტერპრეტატორის ძრავა", "Code Interpreter Engine": "კოდის ინტერპრეტატორის ძრავა",
"Code Interpreter Prompt Template": "", "Code Interpreter Prompt Template": "",
"Collaboration channel where people join as members": "",
"Collapse": "აკეცვა", "Collapse": "აკეცვა",
"Collection": "კოლექცია", "Collection": "კოლექცია",
"Color": "ფერი", "Color": "ფერი",
@ -447,6 +454,7 @@
"Discover, download, and explore custom prompts": "აღმოაჩინეთ, გადმოწერეთ და შეისწავლეთ მორგებული მოთხოვნები", "Discover, download, and explore custom prompts": "აღმოაჩინეთ, გადმოწერეთ და შეისწავლეთ მორგებული მოთხოვნები",
"Discover, download, and explore custom tools": "", "Discover, download, and explore custom tools": "",
"Discover, download, and explore model presets": "აღმოაჩინეთ, გადმოწერეთ და შეისწავლეთ მოდელის პარამეტრები", "Discover, download, and explore model presets": "აღმოაჩინეთ, გადმოწერეთ და შეისწავლეთ მოდელის პარამეტრები",
"Discussion channel where access is based on groups and permissions": "",
"Display": "ჩვენება", "Display": "ჩვენება",
"Display chat title in tab": "", "Display chat title in tab": "",
"Display Emoji in Call": "", "Display Emoji in Call": "",
@ -463,6 +471,7 @@
"Document": "დოკუმენტი", "Document": "დოკუმენტი",
"Document Intelligence": "დოკუმენტის ანალიზი", "Document Intelligence": "დოკუმენტის ანალიზი",
"Document Intelligence endpoint required.": "დოკუმენტის ანალიზის ბოლოწერტილი აუცილებელია.", "Document Intelligence endpoint required.": "დოკუმენტის ანალიზის ბოლოწერტილი აუცილებელია.",
"Document Intelligence Model": "",
"Documentation": "დოკუმენტაცია", "Documentation": "დოკუმენტაცია",
"Documents": "დოკუმენტები", "Documents": "დოკუმენტები",
"does not make any external connections, and your data stays securely on your locally hosted server.": "არ ამყარებს გარე კავშირებს და თქვენი მონაცემები უსაფრთხოდ რჩება თქვენს ლოკალურ სერვერზე.", "does not make any external connections, and your data stays securely on your locally hosted server.": "არ ამყარებს გარე კავშირებს და თქვენი მონაცემები უსაფრთხოდ რჩება თქვენს ლოკალურ სერვერზე.",
@ -485,12 +494,15 @@
"e.g. \"json\" or a JSON schema": "", "e.g. \"json\" or a JSON schema": "",
"e.g. 60": "მაგ: 60", "e.g. 60": "მაგ: 60",
"e.g. A filter to remove profanity from text": "", "e.g. A filter to remove profanity from text": "",
"e.g. about the Roman Empire": "",
"e.g. en": "მაგ: en", "e.g. en": "მაგ: en",
"e.g. My Filter": "მაგ: ჩემი ფილტრი", "e.g. My Filter": "მაგ: ჩემი ფილტრი",
"e.g. My Tools": "მაგ: ჩემი ხელსაწყოები", "e.g. My Tools": "მაგ: ჩემი ხელსაწყოები",
"e.g. my_filter": "მაგ: ჩემი_ფილტრი", "e.g. my_filter": "მაგ: ჩემი_ფილტრი",
"e.g. my_tools": "მაგ: ჩემი_ხელსაწოები", "e.g. my_tools": "მაგ: ჩემი_ხელსაწოები",
"e.g. pdf, docx, txt": "მაგ: pdf, docx, txt", "e.g. pdf, docx, txt": "მაგ: pdf, docx, txt",
"e.g. Tell me a fun fact": "",
"e.g. Tell me a fun fact about the Roman Empire": "",
"e.g. Tools for performing various operations": "", "e.g. Tools for performing various operations": "",
"e.g., 3, 4, 5 (leave blank for default)": "", "e.g., 3, 4, 5 (leave blank for default)": "",
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "", "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
@ -564,6 +576,7 @@
"Enter Docling Server URL": "", "Enter Docling Server URL": "",
"Enter Document Intelligence Endpoint": "", "Enter Document Intelligence Endpoint": "",
"Enter Document Intelligence Key": "", "Enter Document Intelligence Key": "",
"Enter Document Intelligence Model": "",
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "", "Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
"Enter Exa API Key": "შეიყვანეთ Exa API-ის გასაღები", "Enter Exa API Key": "შეიყვანეთ Exa API-ის გასაღები",
"Enter External Document Loader API Key": "", "Enter External Document Loader API Key": "",
@ -689,7 +702,6 @@
"Export Config to JSON File": "", "Export Config to JSON File": "",
"Export Models": "", "Export Models": "",
"Export Presets": "პრესეტების გატანა", "Export Presets": "პრესეტების გატანა",
"Export Prompt Suggestions": "",
"Export Prompts": "", "Export Prompts": "",
"Export to CSV": "CVS-ში გატანა", "Export to CSV": "CVS-ში გატანა",
"Export Tools": "", "Export Tools": "",
@ -704,6 +716,8 @@
"External Web Search URL": "გარე ვებძებნის URL", "External Web Search URL": "გარე ვებძებნის URL",
"Fade Effect for Streaming Text": "", "Fade Effect for Streaming Text": "",
"Failed to add file.": "ფაილის დამატების შეცდომა.", "Failed to add file.": "ფაილის დამატების შეცდომა.",
"Failed to add members": "",
"Failed to clear status": "",
"Failed to connect to {{URL}} OpenAPI tool server": "", "Failed to connect to {{URL}} OpenAPI tool server": "",
"Failed to copy link": "ბმულის კოპირება ჩავარდა", "Failed to copy link": "ბმულის კოპირება ჩავარდა",
"Failed to create API Key.": "API-ის გასაღების შექმნა ჩავარდა.", "Failed to create API Key.": "API-ის გასაღების შექმნა ჩავარდა.",
@ -717,12 +731,14 @@
"Failed to load file content.": "ფაილის შემცველობის ჩატვირთვა ჩავარდა.", "Failed to load file content.": "ფაილის შემცველობის ჩატვირთვა ჩავარდა.",
"Failed to move chat": "ჩატის გადატანა ჩავარდა", "Failed to move chat": "ჩატის გადატანა ჩავარდა",
"Failed to read clipboard contents": "ბუფერის შემცველობის წაკითხვა ჩავარდა", "Failed to read clipboard contents": "ბუფერის შემცველობის წაკითხვა ჩავარდა",
"Failed to remove member": "",
"Failed to render diagram": "დიაგრამის რენდერი ჩავარდა", "Failed to render diagram": "დიაგრამის რენდერი ჩავარდა",
"Failed to render visualization": "", "Failed to render visualization": "",
"Failed to save connections": "კავშირების შენახვა ჩავარდა", "Failed to save connections": "კავშირების შენახვა ჩავარდა",
"Failed to save conversation": "საუბრის შენახვა ვერ მოხერხდა", "Failed to save conversation": "საუბრის შენახვა ვერ მოხერხდა",
"Failed to save models configuration": "მოდელების კონფიგურაციის შენახვა ჩავარდა", "Failed to save models configuration": "მოდელების კონფიგურაციის შენახვა ჩავარდა",
"Failed to update settings": "პარამეტრების განახლება ჩავარდა", "Failed to update settings": "პარამეტრების განახლება ჩავარდა",
"Failed to update status": "",
"Failed to upload file.": "ფაილის ატვირთვა ჩავარდა.", "Failed to upload file.": "ფაილის ატვირთვა ჩავარდა.",
"Features": "მახასიათებლები", "Features": "მახასიათებლები",
"Features Permissions": "უფლებები ფუნქციებზე", "Features Permissions": "უფლებები ფუნქციებზე",
@ -816,11 +832,13 @@
"Google PSE Engine Id": "Google PSE ძრავის Id", "Google PSE Engine Id": "Google PSE ძრავის Id",
"Gravatar": "გრავატარი", "Gravatar": "გრავატარი",
"Group": "ჯგუფი", "Group": "ჯგუფი",
"Group Channel": "",
"Group created successfully": "ჯგუფი წარმატებით შეიქმნა", "Group created successfully": "ჯგუფი წარმატებით შეიქმნა",
"Group deleted successfully": "ჯგუფი წარმატებით წაიშალა", "Group deleted successfully": "ჯგუფი წარმატებით წაიშალა",
"Group Description": "ჯგუფის აღწერა", "Group Description": "ჯგუფის აღწერა",
"Group Name": "ჯგუფის სახელი", "Group Name": "ჯგუფის სახელი",
"Group updated successfully": "ჯგუფის წარმატებით განახლდა", "Group updated successfully": "ჯგუფის წარმატებით განახლდა",
"groups": "",
"Groups": "ჯგუფები", "Groups": "ჯგუფები",
"H1": "H1", "H1": "H1",
"H2": "H2", "H2": "H2",
@ -875,7 +893,6 @@
"Import Models": "", "Import Models": "",
"Import Notes": "შენიშვნების შემოტანა", "Import Notes": "შენიშვნების შემოტანა",
"Import Presets": "პრესეტების შემოტანა", "Import Presets": "პრესეტების შემოტანა",
"Import Prompt Suggestions": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "შემოტანა წარმატებულია", "Import successful": "შემოტანა წარმატებულია",
"Import Tools": "", "Import Tools": "",
@ -1011,6 +1028,9 @@
"MCP": "MCP", "MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Medium": "საშუალო", "Medium": "საშუალო",
"Member removed successfully": "",
"Members": "",
"Members added successfully": "",
"Memories accessible by LLMs will be shown here.": "LLM-ებისთვის ხელმისაწვდომი მეხსიერებები აქ გამოჩნდება.", "Memories accessible by LLMs will be shown here.": "LLM-ებისთვის ხელმისაწვდომი მეხსიერებები აქ გამოჩნდება.",
"Memory": "მეხსიერება", "Memory": "მეხსიერება",
"Memory added successfully": "მოგონება წარმატებით დაემატა", "Memory added successfully": "მოგონება წარმატებით დაემატა",
@ -1110,6 +1130,7 @@
"No models selected": "მოდელები არჩეული არაა", "No models selected": "მოდელები არჩეული არაა",
"No Notes": "შენიშვნების გარეშე", "No Notes": "შენიშვნების გარეშე",
"No notes found": "სანიშნების გარეშე", "No notes found": "სანიშნების გარეშე",
"No pinned messages": "",
"No prompts found": "შეყვანები აღმოჩენილი არაა", "No prompts found": "შეყვანები აღმოჩენილი არაა",
"No results": "შედეგების გარეშე", "No results": "შედეგების გარეშე",
"No results found": "შედეგების გარეშე", "No results found": "შედეგების გარეშე",
@ -1157,6 +1178,7 @@
"Only alphanumeric characters and hyphens are allowed in the command string.": "ბრძანების სტრიქონში დაშვებულია, მხოლოდ, ალფარიცხვითი სიმბოლოები და ტირეები.", "Only alphanumeric characters and hyphens are allowed in the command string.": "ბრძანების სტრიქონში დაშვებულია, მხოლოდ, ალფარიცხვითი სიმბოლოები და ტირეები.",
"Only can be triggered when the chat input is in focus.": "", "Only can be triggered when the chat input is in focus.": "",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "", "Only collections can be edited, create a new knowledge base to edit/add documents.": "",
"Only invited users can access": "",
"Only markdown files are allowed": "", "Only markdown files are allowed": "",
"Only select users and groups with permission can access": "", "Only select users and groups with permission can access": "",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "უი! როგორც ჩანს, მისამართი არასწორია. გთხოვთ, გადაამოწმოთ და ისევ სცადოთ.", "Oops! Looks like the URL is invalid. Please double-check and try again.": "უი! როგორც ჩანს, მისამართი არასწორია. გთხოვთ, გადაამოწმოთ და ისევ სცადოთ.",
@ -1219,6 +1241,7 @@
"Personalization": "პერსონალიზაცია", "Personalization": "პერსონალიზაცია",
"Pin": "მიმაგრება", "Pin": "მიმაგრება",
"Pinned": "მიმაგრებულია", "Pinned": "მიმაგრებულია",
"Pinned Messages": "",
"Pioneer insights": "", "Pioneer insights": "",
"Pipe": "ფაიფი", "Pipe": "ფაიფი",
"Pipeline deleted successfully": "", "Pipeline deleted successfully": "",
@ -1261,9 +1284,9 @@
"Previous 7 days": "წინა 7 დღე", "Previous 7 days": "წინა 7 დღე",
"Previous message": "წინა შეტყობინება", "Previous message": "წინა შეტყობინება",
"Private": "პირადი", "Private": "პირადი",
"Private conversation between selected users": "",
"Profile": "პროფილი", "Profile": "პროფილი",
"Prompt": "ბრძანების შეყვანის შეხსენება", "Prompt": "ბრძანების შეყვანის შეხსენება",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (მაგ. მითხარი სახალისო ფაქტი რომის იმპერიის შესახებ)",
"Prompt Autocompletion": "", "Prompt Autocompletion": "",
"Prompt Content": "მოთხოვნის შემცველობა", "Prompt Content": "მოთხოვნის შემცველობა",
"Prompt created successfully": "", "Prompt created successfully": "",
@ -1449,6 +1472,7 @@
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "", "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
"Set Voice": "ხმის დაყენება", "Set Voice": "ხმის დაყენება",
"Set whisper model": "Whisper-ის მოდელის დაყენება", "Set whisper model": "Whisper-ის მოდელის დაყენება",
"Set your status": "",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "", "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "", "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets how far back for the model to look back to prevent repetition.": "", "Sets how far back for the model to look back to prevent repetition.": "",
@ -1501,6 +1525,9 @@
"Start a new conversation": "", "Start a new conversation": "",
"Start of the channel": "არხის დასაწყისი", "Start of the channel": "არხის დასაწყისი",
"Start Tag": "დაწყების ჭდე", "Start Tag": "დაწყების ჭდე",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
"Status Updates": "სტატუსის განახლებები", "Status Updates": "სტატუსის განახლებები",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Steps": "", "Steps": "",
@ -1516,7 +1543,7 @@
"STT Model": "STT მოდელი", "STT Model": "STT მოდელი",
"STT Settings": "STT-ის მორგება", "STT Settings": "STT-ის მორგება",
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "სუბტიტრები (მაგ. რომის იმპერიის შესახებ)", "Subtitle": "",
"Success": "წარმატება", "Success": "წარმატება",
"Successfully imported {{userCount}} users.": "", "Successfully imported {{userCount}} users.": "",
"Successfully updated.": "წარმატებით განახლდა.", "Successfully updated.": "წარმატებით განახლდა.",
@ -1599,7 +1626,6 @@
"Tika Server URL required.": "Tika-ის სერვერის URL აუცილებელია.", "Tika Server URL required.": "Tika-ის სერვერის URL აუცილებელია.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Title": "სათაური", "Title": "სათაური",
"Title (e.g. Tell me a fun fact)": "სათაური (მაგ. მითხარი რამე სასაცილო)",
"Title Auto-Generation": "სათაურის ავტოგენერაცია", "Title Auto-Generation": "სათაურის ავტოგენერაცია",
"Title cannot be an empty string.": "სათაურის ველი ცარიელი სტრიქონი ვერ იქნება.", "Title cannot be an empty string.": "სათაურის ველი ცარიელი სტრიქონი ვერ იქნება.",
"Title Generation": "სათაურის გენერაცია", "Title Generation": "სათაურის გენერაცია",
@ -1668,6 +1694,7 @@
"Update and Copy Link": "განახლება და ბმულის კოპირება", "Update and Copy Link": "განახლება და ბმულის კოპირება",
"Update for the latest features and improvements.": "", "Update for the latest features and improvements.": "",
"Update password": "პაროლის განახლება", "Update password": "პაროლის განახლება",
"Update your status": "",
"Updated": "განახლებულია", "Updated": "განახლებულია",
"Updated at": "განახლების დრო", "Updated at": "განახლების დრო",
"Updated At": "განახლების დრო", "Updated At": "განახლების დრო",
@ -1721,6 +1748,7 @@
"View Replies": "პასუხების ნახვა", "View Replies": "პასუხების ნახვა",
"View Result from **{{NAME}}**": "", "View Result from **{{NAME}}**": "",
"Visibility": "ხილვადობა", "Visibility": "ხილვადობა",
"Visible to all users": "",
"Vision": "ხედვა", "Vision": "ხედვა",
"Voice": "ხმა", "Voice": "ხმა",
"Voice Input": "ხმოვანი შეყვანა", "Voice Input": "ხმოვანი შეყვანა",
@ -1748,6 +1776,7 @@
"What are you trying to achieve?": "რას ცდილობთ, მიაღწიოთ?", "What are you trying to achieve?": "რას ცდილობთ, მიაღწიოთ?",
"What are you working on?": "რაზე მუშაობთ?", "What are you working on?": "რაზე მუშაობთ?",
"What's New in": "რა არის ახალი", "What's New in": "რა არის ახალი",
"What's on your mind?": "",
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "", "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
"wherever you are": "სადაც არ უნდა ბრძანდებოდეთ", "wherever you are": "სადაც არ უნდა ბრძანდებოდეთ",
"Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "",

View file

@ -18,11 +18,15 @@
"{{COUNT}} words": "{{COUNT}} n wawalen", "{{COUNT}} words": "{{COUNT}} n wawalen",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} ɣef {{LOCALIZED_TIME}}", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} ɣef {{LOCALIZED_TIME}}",
"{{model}} download has been canceled": "Azdam n {{model}} yettusemmet", "{{model}} download has been canceled": "Azdam n {{model}} yettusemmet",
"{{NAMES}} reacted with {{REACTION}}": "",
"{{user}}'s Chats": "Asqerdec n {{user}}", "{{user}}'s Chats": "Asqerdec n {{user}}",
"{{webUIName}} Backend Required": "", "{{webUIName}} Backend Required": "",
"*Prompt node ID(s) are required for image generation": "", "*Prompt node ID(s) are required for image generation": "",
"1 Source": "1 n weɣbalu", "1 Source": "1 n weɣbalu",
"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.", "A new version (v{{LATEST_VERSION}}) is now available.": "Lqem amaynut n (v{{LATEST_VERSION}}), yella akka tura.",
"A private conversation between you and selected users": "",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Tamudemt n temsekra tettuseqdec mi ara tgeḍ timsekra am usirew n yizwal i yidiwenniyen akked tuttriwin n unadi deg web", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Tamudemt n temsekra tettuseqdec mi ara tgeḍ timsekra am usirew n yizwal i yidiwenniyen akked tuttriwin n unadi deg web",
"a user": "aseqdac", "a user": "aseqdac",
"About": "Awal ɣef", "About": "Awal ɣef",
@ -53,7 +57,8 @@
"Add Custom Prompt": "", "Add Custom Prompt": "",
"Add Details": "Rnu talqayt", "Add Details": "Rnu talqayt",
"Add Files": "Rnu ifuyla", "Add Files": "Rnu ifuyla",
"Add Group": "Rnu agraw", "Add Member": "",
"Add Members": "",
"Add Memory": "Rnu cfawat", "Add Memory": "Rnu cfawat",
"Add Model": "Rnu tamudemt", "Add Model": "Rnu tamudemt",
"Add Reaction": "Rnu tamyigawt", "Add Reaction": "Rnu tamyigawt",
@ -252,6 +257,7 @@
"Citations": "Tinebdurin", "Citations": "Tinebdurin",
"Clear memory": "Sfeḍ takatut", "Clear memory": "Sfeḍ takatut",
"Clear Memory": "Sfeḍ takatut", "Clear Memory": "Sfeḍ takatut",
"Clear status": "",
"click here": "sit da", "click here": "sit da",
"Click here for filter guides.": "Tekki da i yimniren n tṣeffayt.", "Click here for filter guides.": "Tekki da i yimniren n tṣeffayt.",
"Click here for help.": "Sit da i wawway n tallalt.", "Click here for help.": "Sit da i wawway n tallalt.",
@ -288,6 +294,7 @@
"Code Interpreter": "Asegzay n tengalt", "Code Interpreter": "Asegzay n tengalt",
"Code Interpreter Engine": "Amsedday n usegzay n tengalt", "Code Interpreter Engine": "Amsedday n usegzay n tengalt",
"Code Interpreter Prompt Template": "Tamudemt n uneftaɣ n usegzay n tengalt", "Code Interpreter Prompt Template": "Tamudemt n uneftaɣ n usegzay n tengalt",
"Collaboration channel where people join as members": "",
"Collapse": "Sneḍfes", "Collapse": "Sneḍfes",
"Collection": "Tagrumma", "Collection": "Tagrumma",
"Color": "Ini", "Color": "Ini",
@ -447,6 +454,7 @@
"Discover, download, and explore custom prompts": "Af-d, zdem-d, tesnirmeḍ-d ineftaɣen udmawanen", "Discover, download, and explore custom prompts": "Af-d, zdem-d, tesnirmeḍ-d ineftaɣen udmawanen",
"Discover, download, and explore custom tools": "Af-d, zdem-d, tesnirmeḍ ifecka udmawanen", "Discover, download, and explore custom tools": "Af-d, zdem-d, tesnirmeḍ ifecka udmawanen",
"Discover, download, and explore model presets": "Af-d, zdem-d, tesnirmeḍ-d iferdisen n tmudemt", "Discover, download, and explore model presets": "Af-d, zdem-d, tesnirmeḍ-d iferdisen n tmudemt",
"Discussion channel where access is based on groups and permissions": "",
"Display": "Beqqeḍ", "Display": "Beqqeḍ",
"Display chat title in tab": "", "Display chat title in tab": "",
"Display Emoji in Call": "Sken imujitin lawan n usiwel", "Display Emoji in Call": "Sken imujitin lawan n usiwel",
@ -463,6 +471,7 @@
"Document": "Imesli", "Document": "Imesli",
"Document Intelligence": "Tigzi n tsemlit", "Document Intelligence": "Tigzi n tsemlit",
"Document Intelligence endpoint required.": "", "Document Intelligence endpoint required.": "",
"Document Intelligence Model": "",
"Documentation": "Tasemlit", "Documentation": "Tasemlit",
"Documents": "Isemliyen", "Documents": "Isemliyen",
"does not make any external connections, and your data stays securely on your locally hosted server.": "ur teqqen ara ɣer tuqqniwin tizɣarayin, akka isefka-k⋅m ad qqimen d iɣellsanen ɣef uqeddac-ik⋅im adigan.", "does not make any external connections, and your data stays securely on your locally hosted server.": "ur teqqen ara ɣer tuqqniwin tizɣarayin, akka isefka-k⋅m ad qqimen d iɣellsanen ɣef uqeddac-ik⋅im adigan.",
@ -485,12 +494,15 @@
"e.g. \"json\" or a JSON schema": "amedya: \"json\" neɣ azenziɣ JSON", "e.g. \"json\" or a JSON schema": "amedya: \"json\" neɣ azenziɣ JSON",
"e.g. 60": "amedya. 60", "e.g. 60": "amedya. 60",
"e.g. A filter to remove profanity from text": "e.g. Imzizdig akken ad yekkes tukksa n sser seg uḍris", "e.g. A filter to remove profanity from text": "e.g. Imzizdig akken ad yekkes tukksa n sser seg uḍris",
"e.g. about the Roman Empire": "",
"e.g. en": "amedya kab", "e.g. en": "amedya kab",
"e.g. My Filter": "amedya Imsizdeg-iw", "e.g. My Filter": "amedya Imsizdeg-iw",
"e.g. My Tools": "amedya ifecka-inu", "e.g. My Tools": "amedya ifecka-inu",
"e.g. my_filter": "amedya amsizdeg_iw", "e.g. my_filter": "amedya amsizdeg_iw",
"e.g. my_tools": "amedya ifecka_inu", "e.g. my_tools": "amedya ifecka_inu",
"e.g. pdf, docx, txt": "amedya: pdf, docx, txt", "e.g. pdf, docx, txt": "amedya: pdf, docx, txt",
"e.g. Tell me a fun fact": "",
"e.g. Tell me a fun fact about the Roman Empire": "",
"e.g. Tools for performing various operations": "g. Ifecka i usexdem n tigawin yemgaraden", "e.g. Tools for performing various operations": "g. Ifecka i usexdem n tigawin yemgaraden",
"e.g., 3, 4, 5 (leave blank for default)": "e.g., 3, 4, 5 (iɣes n temtunt d ilem i tazwara)", "e.g., 3, 4, 5 (leave blank for default)": "e.g., 3, 4, 5 (iɣes n temtunt d ilem i tazwara)",
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "amedya, audio/wav,audio/mpeg,video/* (anef-as d ilem i yimezwura)", "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "amedya, audio/wav,audio/mpeg,video/* (anef-as d ilem i yimezwura)",
@ -564,6 +576,7 @@
"Enter Docling Server URL": "Sekcem tansa URL n uqeddac", "Enter Docling Server URL": "Sekcem tansa URL n uqeddac",
"Enter Document Intelligence Endpoint": "Sekcem agaz n tagara n yisemli", "Enter Document Intelligence Endpoint": "Sekcem agaz n tagara n yisemli",
"Enter Document Intelligence Key": "Kcem ɣer tsarut n wulli", "Enter Document Intelligence Key": "Kcem ɣer tsarut n wulli",
"Enter Document Intelligence Model": "",
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "", "Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
"Enter Exa API Key": "Kcem ɣer Exa Tasarut", "Enter Exa API Key": "Kcem ɣer Exa Tasarut",
"Enter External Document Loader API Key": "Sekcem-d tasarut API n usezdam n isemliyen yeffɣen", "Enter External Document Loader API Key": "Sekcem-d tasarut API n usezdam n isemliyen yeffɣen",
@ -689,7 +702,6 @@
"Export Config to JSON File": "Sifeḍ asesteb ɣer ufaylu JSON", "Export Config to JSON File": "Sifeḍ asesteb ɣer ufaylu JSON",
"Export Models": "", "Export Models": "",
"Export Presets": "Sifeḍ isestab uzwiren", "Export Presets": "Sifeḍ isestab uzwiren",
"Export Prompt Suggestions": "Sifeḍ isumar n uneftaɣ",
"Export Prompts": "", "Export Prompts": "",
"Export to CSV": "Kter ɣer CSV", "Export to CSV": "Kter ɣer CSV",
"Export Tools": "", "Export Tools": "",
@ -704,6 +716,8 @@
"External Web Search URL": "Tansa URL yeffɣen n unadi deg Web", "External Web Search URL": "Tansa URL yeffɣen n unadi deg Web",
"Fade Effect for Streaming Text": "", "Fade Effect for Streaming Text": "",
"Failed to add file.": "Tecceḍ tmerna n ufaylu.", "Failed to add file.": "Tecceḍ tmerna n ufaylu.",
"Failed to add members": "",
"Failed to clear status": "",
"Failed to connect to {{URL}} OpenAPI tool server": "Ur yessaweḍ ara ad yeqqen ɣer {{URL}} n uqeddac n yifecka OpenAPI", "Failed to connect to {{URL}} OpenAPI tool server": "Ur yessaweḍ ara ad yeqqen ɣer {{URL}} n uqeddac n yifecka OpenAPI",
"Failed to copy link": "Ur yessaweḍ ara ad yessukken aseɣwen", "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 create API Key.": "Ur yessaweḍ ara ad d-yesnulfu tasarut API.",
@ -717,12 +731,14 @@
"Failed to load file content.": "Ur yessaweḍ ara ad d-yessali agbur n yifuyla.", "Failed to load file content.": "Ur yessaweḍ ara ad d-yessali agbur n yifuyla.",
"Failed to move chat": "Tuccḍa deg unkaz n udiwenni", "Failed to move chat": "Tuccḍa deg unkaz n udiwenni",
"Failed to read clipboard contents": "Ur yessaweḍ ara ad iɣer agbur n tfelwit", "Failed to read clipboard contents": "Ur yessaweḍ ara ad iɣer agbur n tfelwit",
"Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
"Failed to render visualization": "", "Failed to render visualization": "",
"Failed to save connections": "Yecceḍ uklas n tuqqniwin", "Failed to save connections": "Yecceḍ uklas n tuqqniwin",
"Failed to save conversation": "Yecceḍ uklas n udiwenni", "Failed to save conversation": "Yecceḍ uklas n udiwenni",
"Failed to save models configuration": "Ur yessaweḍ ara ad d-yessukkes tamudemt n usneftaɣ", "Failed to save models configuration": "Ur yessaweḍ ara ad d-yessukkes tamudemt n usneftaɣ",
"Failed to update settings": "Yecceḍ uleqqem n yiɣewwaren", "Failed to update settings": "Yecceḍ uleqqem n yiɣewwaren",
"Failed to update status": "",
"Failed to upload file.": "Yecceḍ uzdam n ufaylu.", "Failed to upload file.": "Yecceḍ uzdam n ufaylu.",
"Features": "Timahilin", "Features": "Timahilin",
"Features Permissions": "Tisirag n tmehilin", "Features Permissions": "Tisirag n tmehilin",
@ -816,11 +832,13 @@
"Google PSE Engine Id": "Asulay n umsadday n unadi PSE n Google", "Google PSE Engine Id": "Asulay n umsadday n unadi PSE n Google",
"Gravatar": "Gravatar", "Gravatar": "Gravatar",
"Group": "Agraw", "Group": "Agraw",
"Group Channel": "",
"Group created successfully": "Agraw yennulfa-d akken iwata", "Group created successfully": "Agraw yennulfa-d akken iwata",
"Group deleted successfully": "Agraw yettwakkes akken iwata", "Group deleted successfully": "Agraw yettwakkes akken iwata",
"Group Description": "Aglam n ugraw", "Group Description": "Aglam n ugraw",
"Group Name": "Isem n ugraw", "Group Name": "Isem n ugraw",
"Group updated successfully": "Agraw yettwaleqqem akken iwata", "Group updated successfully": "Agraw yettwaleqqem akken iwata",
"groups": "",
"Groups": "Igrawen", "Groups": "Igrawen",
"H1": "H1", "H1": "H1",
"H2": "H2", "H2": "H2",
@ -875,7 +893,6 @@
"Import Models": "", "Import Models": "",
"Import Notes": "Kter tizmilin", "Import Notes": "Kter tizmilin",
"Import Presets": "Kter iɣewwaren uzwiren", "Import Presets": "Kter iɣewwaren uzwiren",
"Import Prompt Suggestions": "Kter isumar n uneftaɣ",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "Taktert tella-d akken iwata", "Import successful": "Taktert tella-d akken iwata",
"Import Tools": "", "Import Tools": "",
@ -1011,6 +1028,9 @@
"MCP": "MCP", "MCP": "MCP",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Medium": "", "Medium": "",
"Member removed successfully": "",
"Members": "",
"Members added successfully": "",
"Memories accessible by LLMs will be shown here.": "Da ara d-banent teḥkayin ara yaweḍ yiwen ɣer LLMs.", "Memories accessible by LLMs will be shown here.": "Da ara d-banent teḥkayin ara yaweḍ yiwen ɣer LLMs.",
"Memory": "Takatut", "Memory": "Takatut",
"Memory added successfully": "Asmekti yettwarna akken iwata", "Memory added successfully": "Asmekti yettwarna akken iwata",
@ -1110,6 +1130,7 @@
"No models selected": "Ulac timudmin yettwafernen", "No models selected": "Ulac timudmin yettwafernen",
"No Notes": "Ulac tizmilin", "No Notes": "Ulac tizmilin",
"No notes found": "Ulac tizmilin yettwafen", "No notes found": "Ulac tizmilin yettwafen",
"No pinned messages": "",
"No prompts found": "", "No prompts found": "",
"No results": "Ulac igmaḍ yettwafen", "No results": "Ulac igmaḍ yettwafen",
"No results found": "Ulac igmaḍ yettwafen", "No results found": "Ulac igmaḍ yettwafen",
@ -1157,6 +1178,7 @@
"Only alphanumeric characters and hyphens are allowed in the command string.": "Ala iwudam ifenyanen d tfendiwin i yettusirgen deg uzrar n ukman.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Ala iwudam ifenyanen d tfendiwin i yettusirgen deg uzrar n ukman.",
"Only can be triggered when the chat input is in focus.": "", "Only can be triggered when the chat input is in focus.": "",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Ala tigrummiwin i izemren ad ttwabeddlent, ad d-snulfunt azadur amaynut n tmussni i ubeddel/ad arraten.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Ala tigrummiwin i izemren ad ttwabeddlent, ad d-snulfunt azadur amaynut n tmussni i ubeddel/ad arraten.",
"Only invited users can access": "",
"Only markdown files are allowed": "Ala ifuyla n tuccar i yettusirgen", "Only markdown files are allowed": "Ala ifuyla n tuccar i yettusirgen",
"Only select users and groups with permission can access": "Ala iseqdacen akked yegrawen yesɛan tisirag i izemren ad kecmen", "Only select users and groups with permission can access": "Ala iseqdacen akked yegrawen yesɛan tisirag i izemren ad kecmen",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "Ayhuh! Yettban-d dakken URL-nni ur tṣeḥḥa ara. Ttxil-k, ssefqed snat n tikkal yernu ɛreḍ tikkelt niḍen.", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Ayhuh! Yettban-d dakken URL-nni ur tṣeḥḥa ara. Ttxil-k, ssefqed snat n tikkal yernu ɛreḍ tikkelt niḍen.",
@ -1219,6 +1241,7 @@
"Personalization": "Asagen", "Personalization": "Asagen",
"Pin": "Senteḍ", "Pin": "Senteḍ",
"Pinned": "Yettwasenteḍ", "Pinned": "Yettwasenteḍ",
"Pinned Messages": "",
"Pioneer insights": "", "Pioneer insights": "",
"Pipe": "Aselda", "Pipe": "Aselda",
"Pipeline deleted successfully": "Aselda yettwakkes akken iwata", "Pipeline deleted successfully": "Aselda yettwakkes akken iwata",
@ -1261,9 +1284,9 @@
"Previous 7 days": "7 n wussan yezrin", "Previous 7 days": "7 n wussan yezrin",
"Previous message": "Izen udfir", "Previous message": "Izen udfir",
"Private": "Uslig", "Private": "Uslig",
"Private conversation between selected users": "",
"Profile": "Amaɣnu", "Profile": "Amaɣnu",
"Prompt": "Aneftaɣ", "Prompt": "Aneftaɣ",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Aneftaɣ (amedya. Ini-yi-d kra yessedhayen ɣef Temnekda Tarumanit)",
"Prompt Autocompletion": "Asmad awurman n uneftaɣ", "Prompt Autocompletion": "Asmad awurman n uneftaɣ",
"Prompt Content": "Agbur n uneftaɣ", "Prompt Content": "Agbur n uneftaɣ",
"Prompt created successfully": "Aneftaɣ yettwarna akken iwata", "Prompt created successfully": "Aneftaɣ yettwarna akken iwata",
@ -1449,6 +1472,7 @@
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Sbadu amḍan n tnelli n yixeddamen yettwasqedcen i umṣada. Tifrat-a teḥkem acḥal n tnelli i yennumen ttḥerriken issutren i d-iteddun akka tura. Asenqes n wazal-a yezmer ad yesnerni aswir deg usali n yisali n umahil n uḥezzeb meqqren maca yezmer daɣen ad yečč ugar n teɣbula CPU.", "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Sbadu amḍan n tnelli n yixeddamen yettwasqedcen i umṣada. Tifrat-a teḥkem acḥal n tnelli i yennumen ttḥerriken issutren i d-iteddun akka tura. Asenqes n wazal-a yezmer ad yesnerni aswir deg usali n yisali n umahil n uḥezzeb meqqren maca yezmer daɣen ad yečč ugar n teɣbula CPU.",
"Set Voice": "Fren taɣect", "Set Voice": "Fren taɣect",
"Set whisper model": "Fren tamudemt Whisper", "Set whisper model": "Fren tamudemt Whisper",
"Set your status": "",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "", "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "", "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets how far back for the model to look back to prevent repetition.": "", "Sets how far back for the model to look back to prevent repetition.": "",
@ -1501,6 +1525,9 @@
"Start a new conversation": "", "Start a new conversation": "",
"Start of the channel": "Tazwara n ubadu", "Start of the channel": "Tazwara n ubadu",
"Start Tag": "", "Start Tag": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Steps": "", "Steps": "",
@ -1516,7 +1543,7 @@
"STT Model": "Tamudemt n uɛqal n taɣect", "STT Model": "Tamudemt n uɛqal n taɣect",
"STT Settings": "Iɣewwaren n uɛqal n tavect", "STT Settings": "Iɣewwaren n uɛqal n tavect",
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Addad amaruz (amedya ɣef tgelda Tarumanit)", "Subtitle": "",
"Success": "Yedda", "Success": "Yedda",
"Successfully imported {{userCount}} users.": "", "Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Yettwaleqqem akken iwata.", "Successfully updated.": "Yettwaleqqem akken iwata.",
@ -1599,7 +1626,6 @@
"Tika Server URL required.": "Tansa URL n Tika Server tettwasra.", "Tika Server URL required.": "Tansa URL n Tika Server tettwasra.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Title": "Azwel", "Title": "Azwel",
"Title (e.g. Tell me a fun fact)": "Azwel (amedya. Ini-yi-d ayen yessedhayen)",
"Title Auto-Generation": "Asirew awurman n izwilen", "Title Auto-Generation": "Asirew awurman n izwilen",
"Title cannot be an empty string.": "Azwel ur yettili ara d azrir ilem.", "Title cannot be an empty string.": "Azwel ur yettili ara d azrir ilem.",
"Title Generation": "Asirew n uzwel", "Title Generation": "Asirew n uzwel",
@ -1668,6 +1694,7 @@
"Update and Copy Link": "Leqqem aseɣwen", "Update and Copy Link": "Leqqem aseɣwen",
"Update for the latest features and improvements.": "Leqqem tiɣawsiwin tineggura d usnerni.", "Update for the latest features and improvements.": "Leqqem tiɣawsiwin tineggura d usnerni.",
"Update password": "Leqqem awal n uɛeddi", "Update password": "Leqqem awal n uɛeddi",
"Update your status": "",
"Updated": "Yettuleqqmen", "Updated": "Yettuleqqmen",
"Updated at": "Yettwaleqqem", "Updated at": "Yettwaleqqem",
"Updated At": "Yettwaleqqem", "Updated At": "Yettwaleqqem",
@ -1721,6 +1748,7 @@
"View Replies": "Sken-d tiririyin", "View Replies": "Sken-d tiririyin",
"View Result from **{{NAME}}**": "Tamuɣli i d-yettuɣalen seg tazwara **{NAME}}**", "View Result from **{{NAME}}**": "Tamuɣli i d-yettuɣalen seg tazwara **{NAME}}**",
"Visibility": "Tametwalant", "Visibility": "Tametwalant",
"Visible to all users": "",
"Vision": "Vision", "Vision": "Vision",
"Voice": "Taɣect", "Voice": "Taɣect",
"Voice Input": "Anekcam s taɣect", "Voice Input": "Anekcam s taɣect",
@ -1748,6 +1776,7 @@
"What are you trying to achieve?": "Sanda ay tettarmed ad tessiwḍed?", "What are you trying to achieve?": "Sanda ay tettarmed ad tessiwḍed?",
"What are you working on?": "Ɣef wacu ay la tettmahaled?", "What are you working on?": "Ɣef wacu ay la tettmahaled?",
"What's New in": "D acu d amaynut deg", "What's New in": "D acu d amaynut deg",
"What's on your mind?": "",
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "", "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
"wherever you are": "anda yebɣu tiliḍ", "wherever you are": "anda yebɣu tiliḍ",
"Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Ma tebɣiḍ ad d-tessugneḍ tuffɣa. Yal asebter ad yebḍu s ulugen igli d wuṭṭun n usebter. Imezwura ɣer False.", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Ma tebɣiḍ ad d-tessugneḍ tuffɣa. Yal asebter ad yebḍu s ulugen igli d wuṭṭun n usebter. Imezwura ɣer False.",

View file

@ -18,11 +18,15 @@
"{{COUNT}} words": "{{COUNT}} 단어", "{{COUNT}} words": "{{COUNT}} 단어",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
"{{model}} download has been canceled": "{{model}} 다운로드가 취소되었습니다.", "{{model}} download has been canceled": "{{model}} 다운로드가 취소되었습니다.",
"{{NAMES}} reacted with {{REACTION}}": "",
"{{user}}'s Chats": "{{user}}의 채팅", "{{user}}'s Chats": "{{user}}의 채팅",
"{{webUIName}} Backend Required": "{{webUIName}} 백엔드가 필요합니다.", "{{webUIName}} Backend Required": "{{webUIName}} 백엔드가 필요합니다.",
"*Prompt node ID(s) are required for image generation": "이미지 생성에는 프롬프트 노드 ID가 필요합니다.", "*Prompt node ID(s) are required for image generation": "이미지 생성에는 프롬프트 노드 ID가 필요합니다.",
"1 Source": "소스1", "1 Source": "소스1",
"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}})을 사용할 수 있습니다.", "A new version (v{{LATEST_VERSION}}) is now available.": "새로운 버전 (v{{LATEST_VERSION}})을 사용할 수 있습니다.",
"A private conversation between you and selected users": "",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "작업 모델은 채팅 및 웹 검색 쿼리에 대한 제목 생성 등의 작업 수행 시 사용됩니다.", "A task model is used when performing tasks such as generating titles for chats and web search queries": "작업 모델은 채팅 및 웹 검색 쿼리에 대한 제목 생성 등의 작업 수행 시 사용됩니다.",
"a user": "사용자", "a user": "사용자",
"About": "정보", "About": "정보",
@ -53,7 +57,8 @@
"Add Custom Prompt": "", "Add Custom Prompt": "",
"Add Details": "디테일 추가", "Add Details": "디테일 추가",
"Add Files": "파일 추가", "Add Files": "파일 추가",
"Add Group": "그룹 추가", "Add Member": "",
"Add Members": "",
"Add Memory": "메모리 추가", "Add Memory": "메모리 추가",
"Add Model": "모델 추가", "Add Model": "모델 추가",
"Add Reaction": "리액션 추가", "Add Reaction": "리액션 추가",
@ -252,6 +257,7 @@
"Citations": "인용", "Citations": "인용",
"Clear memory": "메모리 초기화", "Clear memory": "메모리 초기화",
"Clear Memory": "메모리 지우기", "Clear Memory": "메모리 지우기",
"Clear status": "",
"click here": "여기를 클릭하세요", "click here": "여기를 클릭하세요",
"Click here for filter guides.": "필터 가이드를 보려면 여기를 클릭하세요.", "Click here for filter guides.": "필터 가이드를 보려면 여기를 클릭하세요.",
"Click here for help.": "도움말을 보려면 여기를 클릭하세요.", "Click here for help.": "도움말을 보려면 여기를 클릭하세요.",
@ -288,6 +294,7 @@
"Code Interpreter": "코드 인터프리터", "Code Interpreter": "코드 인터프리터",
"Code Interpreter Engine": "코드 인터프리터 엔진", "Code Interpreter Engine": "코드 인터프리터 엔진",
"Code Interpreter Prompt Template": "코드 인터프리터 프롬프트 템플릿", "Code Interpreter Prompt Template": "코드 인터프리터 프롬프트 템플릿",
"Collaboration channel where people join as members": "",
"Collapse": "접기", "Collapse": "접기",
"Collection": "컬렉션", "Collection": "컬렉션",
"Color": "색상", "Color": "색상",
@ -447,6 +454,7 @@
"Discover, download, and explore custom prompts": "사용자 정의 프롬프트 검색, 다운로드 및 탐색", "Discover, download, and explore custom prompts": "사용자 정의 프롬프트 검색, 다운로드 및 탐색",
"Discover, download, and explore custom tools": "사용자 정의 도구 검색, 다운로드 및 탐색", "Discover, download, and explore custom tools": "사용자 정의 도구 검색, 다운로드 및 탐색",
"Discover, download, and explore model presets": "모델 사전 설정 검색, 다운로드 및 탐색", "Discover, download, and explore model presets": "모델 사전 설정 검색, 다운로드 및 탐색",
"Discussion channel where access is based on groups and permissions": "",
"Display": "표시", "Display": "표시",
"Display chat title in tab": "탭에 채팅 목록 표시", "Display chat title in tab": "탭에 채팅 목록 표시",
"Display Emoji in Call": "음성기능에서 이모지 표시", "Display Emoji in Call": "음성기능에서 이모지 표시",
@ -463,6 +471,7 @@
"Document": "문서", "Document": "문서",
"Document Intelligence": "", "Document Intelligence": "",
"Document Intelligence endpoint required.": "", "Document Intelligence endpoint required.": "",
"Document Intelligence Model": "",
"Documentation": "문서", "Documentation": "문서",
"Documents": "문서", "Documents": "문서",
"does not make any external connections, and your data stays securely on your locally hosted server.": "외부와 어떠한 연결도 하지 않으며, 데이터는 로컬에서 호스팅되는 서버에 안전하게 유지됩니다.", "does not make any external connections, and your data stays securely on your locally hosted server.": "외부와 어떠한 연결도 하지 않으며, 데이터는 로컬에서 호스팅되는 서버에 안전하게 유지됩니다.",
@ -485,12 +494,15 @@
"e.g. \"json\" or a JSON schema": "예: \\\"json\\\" 또는 JSON 스키마", "e.g. \"json\" or a JSON schema": "예: \\\"json\\\" 또는 JSON 스키마",
"e.g. 60": "예: 60", "e.g. 60": "예: 60",
"e.g. A filter to remove profanity from text": "예: 텍스트에서 비속어를 제거하는 필터", "e.g. A filter to remove profanity from text": "예: 텍스트에서 비속어를 제거하는 필터",
"e.g. about the Roman Empire": "",
"e.g. en": "예: en", "e.g. en": "예: en",
"e.g. My Filter": "예: 내 필터", "e.g. My Filter": "예: 내 필터",
"e.g. My Tools": "예: 내 도구", "e.g. My Tools": "예: 내 도구",
"e.g. my_filter": "예: my_filter", "e.g. my_filter": "예: my_filter",
"e.g. my_tools": "예: my_tools", "e.g. my_tools": "예: my_tools",
"e.g. pdf, docx, txt": "예: pdf, docx, txt", "e.g. pdf, docx, txt": "예: pdf, docx, txt",
"e.g. Tell me a fun fact": "",
"e.g. Tell me a fun fact about the Roman Empire": "",
"e.g. Tools for performing various operations": "예: 다양한 작업을 수행하는 도구", "e.g. Tools for performing various operations": "예: 다양한 작업을 수행하는 도구",
"e.g., 3, 4, 5 (leave blank for default)": "예: 3, 4, 5 (기본값을 위해 비워 두세요)", "e.g., 3, 4, 5 (leave blank for default)": "예: 3, 4, 5 (기본값을 위해 비워 두세요)",
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "예: audio/wav,audio/mpeg,video/* (기본값은 빈칸)", "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "예: audio/wav,audio/mpeg,video/* (기본값은 빈칸)",
@ -564,6 +576,7 @@
"Enter Docling Server URL": "Docling 서버 URL 입력", "Enter Docling Server URL": "Docling 서버 URL 입력",
"Enter Document Intelligence Endpoint": "Document Intelligence 엔드포인트 입력", "Enter Document Intelligence Endpoint": "Document Intelligence 엔드포인트 입력",
"Enter Document Intelligence Key": "Document Intelligence 키 입력", "Enter Document Intelligence Key": "Document Intelligence 키 입력",
"Enter Document Intelligence Model": "",
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "", "Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
"Enter Exa API Key": "Exa API 키 입력", "Enter Exa API Key": "Exa API 키 입력",
"Enter External Document Loader API Key": "외부 문서 로더 API 키 입력", "Enter External Document Loader API Key": "외부 문서 로더 API 키 입력",
@ -689,7 +702,6 @@
"Export Config to JSON File": "Config를 JSON 파일로 내보내기", "Export Config to JSON File": "Config를 JSON 파일로 내보내기",
"Export Models": "", "Export Models": "",
"Export Presets": "프리셋 내보내기", "Export Presets": "프리셋 내보내기",
"Export Prompt Suggestions": "프롬프트 제안 내보내기",
"Export Prompts": "", "Export Prompts": "",
"Export to CSV": "CSV로 내보내기", "Export to CSV": "CSV로 내보내기",
"Export Tools": "", "Export Tools": "",
@ -704,6 +716,8 @@
"External Web Search URL": "외부 웹 검색 URL", "External Web Search URL": "외부 웹 검색 URL",
"Fade Effect for Streaming Text": "스트리밍 텍스트에 대한 페이드 효과", "Fade Effect for Streaming Text": "스트리밍 텍스트에 대한 페이드 효과",
"Failed to add file.": "파일추가에 실패했습니다", "Failed to add file.": "파일추가에 실패했습니다",
"Failed to add members": "",
"Failed to clear status": "",
"Failed to connect to {{URL}} OpenAPI tool server": "{{URL}} OpenAPI 도구 서버 연결 실패", "Failed to connect to {{URL}} OpenAPI tool server": "{{URL}} OpenAPI 도구 서버 연결 실패",
"Failed to copy link": "링크 복사 실패", "Failed to copy link": "링크 복사 실패",
"Failed to create API Key.": "API 키 생성에 실패했습니다.", "Failed to create API Key.": "API 키 생성에 실패했습니다.",
@ -717,12 +731,14 @@
"Failed to load file content.": "파일 내용 로드 실패.", "Failed to load file content.": "파일 내용 로드 실패.",
"Failed to move chat": "채팅 이동 실패", "Failed to move chat": "채팅 이동 실패",
"Failed to read clipboard contents": "클립보드 내용 가져오기를 실패하였습니다", "Failed to read clipboard contents": "클립보드 내용 가져오기를 실패하였습니다",
"Failed to remove member": "",
"Failed to render diagram": "다이어그램을 표시할 수 없습니다", "Failed to render diagram": "다이어그램을 표시할 수 없습니다",
"Failed to render visualization": "", "Failed to render visualization": "",
"Failed to save connections": "연결 저장 실패", "Failed to save connections": "연결 저장 실패",
"Failed to save conversation": "대화 저장 실패", "Failed to save conversation": "대화 저장 실패",
"Failed to save models configuration": "모델 구성 저장 실패", "Failed to save models configuration": "모델 구성 저장 실패",
"Failed to update settings": "설정 업데이트에 실패하였습니다.", "Failed to update settings": "설정 업데이트에 실패하였습니다.",
"Failed to update status": "",
"Failed to upload file.": "파일 업로드에 실패했습니다", "Failed to upload file.": "파일 업로드에 실패했습니다",
"Features": "기능", "Features": "기능",
"Features Permissions": "기능 권한", "Features Permissions": "기능 권한",
@ -816,11 +832,13 @@
"Google PSE Engine Id": "Google PSE 엔진 ID", "Google PSE Engine Id": "Google PSE 엔진 ID",
"Gravatar": "", "Gravatar": "",
"Group": "그룹", "Group": "그룹",
"Group Channel": "",
"Group created successfully": "성공적으로 그룹을 생성했습니다", "Group created successfully": "성공적으로 그룹을 생성했습니다",
"Group deleted successfully": "성공적으로 그룹을 삭제했습니다", "Group deleted successfully": "성공적으로 그룹을 삭제했습니다",
"Group Description": "그룹 설명", "Group Description": "그룹 설명",
"Group Name": "그룹 명", "Group Name": "그룹 명",
"Group updated successfully": "성공적으로 그룹을 수정했습니다", "Group updated successfully": "성공적으로 그룹을 수정했습니다",
"groups": "",
"Groups": "그룹", "Groups": "그룹",
"H1": "제목 1", "H1": "제목 1",
"H2": "제목 2", "H2": "제목 2",
@ -875,7 +893,6 @@
"Import Models": "", "Import Models": "",
"Import Notes": "노트 가져오기", "Import Notes": "노트 가져오기",
"Import Presets": "프리셋 가져오기", "Import Presets": "프리셋 가져오기",
"Import Prompt Suggestions": "프롬프트 제안 가져오기",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
"Import Tools": "", "Import Tools": "",
@ -1011,6 +1028,9 @@
"MCP": "", "MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "MCP 지원은 실험적이며 명세가 자주 변경되므로, 호환성 문제가 발생할 수 있습니다. Open WebUI 팀이 OpenAPI 명세 지원을 직접 유지·관리하고 있어, 호환성 측면에서는 더 신뢰할 수 있는 선택입니다.", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "MCP 지원은 실험적이며 명세가 자주 변경되므로, 호환성 문제가 발생할 수 있습니다. Open WebUI 팀이 OpenAPI 명세 지원을 직접 유지·관리하고 있어, 호환성 측면에서는 더 신뢰할 수 있는 선택입니다.",
"Medium": "", "Medium": "",
"Member removed successfully": "",
"Members": "",
"Members added successfully": "",
"Memories accessible by LLMs will be shown here.": "LLM에서 접근할 수 있는 메모리는 여기에 표시됩니다.", "Memories accessible by LLMs will be shown here.": "LLM에서 접근할 수 있는 메모리는 여기에 표시됩니다.",
"Memory": "메모리", "Memory": "메모리",
"Memory added successfully": "성공적으로 메모리가 추가되었습니다", "Memory added successfully": "성공적으로 메모리가 추가되었습니다",
@ -1110,6 +1130,7 @@
"No models selected": "모델이 선택되지 않았습니다", "No models selected": "모델이 선택되지 않았습니다",
"No Notes": "노트가 없습니다", "No Notes": "노트가 없습니다",
"No notes found": "노트를 찾을 수 없습니다", "No notes found": "노트를 찾을 수 없습니다",
"No pinned messages": "",
"No prompts found": "프롬프트를 찾을 수 없습니다", "No prompts found": "프롬프트를 찾을 수 없습니다",
"No results": "결과가 없습니다", "No results": "결과가 없습니다",
"No results found": "결과를 찾을 수 없습니다", "No results found": "결과를 찾을 수 없습니다",
@ -1157,6 +1178,7 @@
"Only alphanumeric characters and hyphens are allowed in the command string.": "명령어 문자열에는 영문자, 숫자 및 하이픈(-)만 허용됩니다.", "Only alphanumeric characters and hyphens are allowed in the command string.": "명령어 문자열에는 영문자, 숫자 및 하이픈(-)만 허용됩니다.",
"Only can be triggered when the chat input is in focus.": "", "Only can be triggered when the chat input is in focus.": "",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "가지고 있는 컬렉션만 수정 가능합니다, 새 지식 기반을 생성하여 문서를 수정 혹은 추가하십시오.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "가지고 있는 컬렉션만 수정 가능합니다, 새 지식 기반을 생성하여 문서를 수정 혹은 추가하십시오.",
"Only invited users can access": "",
"Only markdown files are allowed": "마크다운 파일만 허용됩니다", "Only markdown files are allowed": "마크다운 파일만 허용됩니다",
"Only select users and groups with permission can access": "권한이 있는 사용자와 그룹만 접근 가능합니다.", "Only select users and groups with permission can access": "권한이 있는 사용자와 그룹만 접근 가능합니다.",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "이런! URL이 잘못된 것 같습니다. 다시 한번 확인하고 다시 시도해주세요.", "Oops! Looks like the URL is invalid. Please double-check and try again.": "이런! URL이 잘못된 것 같습니다. 다시 한번 확인하고 다시 시도해주세요.",
@ -1219,6 +1241,7 @@
"Personalization": "개인화", "Personalization": "개인화",
"Pin": "고정", "Pin": "고정",
"Pinned": "고정됨", "Pinned": "고정됨",
"Pinned Messages": "",
"Pioneer insights": "혁신적인 발견", "Pioneer insights": "혁신적인 발견",
"Pipe": "파이프", "Pipe": "파이프",
"Pipeline deleted successfully": "성공적으로 파이프라인이 삭제되었습니다.", "Pipeline deleted successfully": "성공적으로 파이프라인이 삭제되었습니다.",
@ -1261,9 +1284,9 @@
"Previous 7 days": "이전 7일", "Previous 7 days": "이전 7일",
"Previous message": "이전 메시지", "Previous message": "이전 메시지",
"Private": "비공개", "Private": "비공개",
"Private conversation between selected users": "",
"Profile": "프로필", "Profile": "프로필",
"Prompt": "프롬프트", "Prompt": "프롬프트",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "프롬프트 (예: 로마 황제에 대해 재미있는 사실을 알려주세요)",
"Prompt Autocompletion": "프롬프트 자동 완성", "Prompt Autocompletion": "프롬프트 자동 완성",
"Prompt Content": "프롬프트 내용", "Prompt Content": "프롬프트 내용",
"Prompt created successfully": "성공적으로 프롬프트를 생성했습니다", "Prompt created successfully": "성공적으로 프롬프트를 생성했습니다",
@ -1448,6 +1471,7 @@
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "계산에 사용되는 작업자 스레드 수를 설정합니다. 이 옵션은 들어오는 요청을 동시에 처리하는 데 사용되는 스레드 수를 제어합니다. 이 값을 높이면 동시성이 높은 워크로드에서 성능을 향상시킬 수 있지만 더 많은 CPU 리소스를 소비할 수도 있습니다.", "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "계산에 사용되는 작업자 스레드 수를 설정합니다. 이 옵션은 들어오는 요청을 동시에 처리하는 데 사용되는 스레드 수를 제어합니다. 이 값을 높이면 동시성이 높은 워크로드에서 성능을 향상시킬 수 있지만 더 많은 CPU 리소스를 소비할 수도 있습니다.",
"Set Voice": "음성 설정", "Set Voice": "음성 설정",
"Set whisper model": "자막 생성기 모델 설정", "Set whisper model": "자막 생성기 모델 설정",
"Set your status": "",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "적어도 한 번 이상 나타난 토큰에 대해 평평한 편향을 설정합니다. 값이 높을수록 반복에 더 강력한 불이익을 주는 반면, 값이 낮을수록(예: 0.9) 더 관대해집니다. 0에서는 비활성화됩니다.", "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "적어도 한 번 이상 나타난 토큰에 대해 평평한 편향을 설정합니다. 값이 높을수록 반복에 더 강력한 불이익을 주는 반면, 값이 낮을수록(예: 0.9) 더 관대해집니다. 0에서는 비활성화됩니다.",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "토큰에 대한 스케일링 편향을 설정하여 반복 횟수에 따라 반복 횟수에 불이익을 줍니다. 값이 높을수록(예: 1.5) 반복 횟수에 더 강하게 불이익을 주는 반면, 값이 낮을수록(예: 0.9) 더 관대해집니다. 0에서는 반복 횟수가 비활성화됩니다.", "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "토큰에 대한 스케일링 편향을 설정하여 반복 횟수에 따라 반복 횟수에 불이익을 줍니다. 값이 높을수록(예: 1.5) 반복 횟수에 더 강하게 불이익을 주는 반면, 값이 낮을수록(예: 0.9) 더 관대해집니다. 0에서는 반복 횟수가 비활성화됩니다.",
"Sets how far back for the model to look back to prevent repetition.": "모델이 반복을 방지하기 위해 되돌아볼 수 있는 거리를 설정합니다.", "Sets how far back for the model to look back to prevent repetition.": "모델이 반복을 방지하기 위해 되돌아볼 수 있는 거리를 설정합니다.",
@ -1500,6 +1524,9 @@
"Start a new conversation": "새 대화 시작", "Start a new conversation": "새 대화 시작",
"Start of the channel": "채널 시작", "Start of the channel": "채널 시작",
"Start Tag": "시작 태그", "Start Tag": "시작 태그",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
"Status Updates": "상태 업데이트", "Status Updates": "상태 업데이트",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Steps": "", "Steps": "",
@ -1515,7 +1542,7 @@
"STT Model": "STT 모델", "STT Model": "STT 모델",
"STT Settings": "STT 설정", "STT Settings": "STT 설정",
"Stylized PDF Export": "서식이 적용된 PDF 내보내기", "Stylized PDF Export": "서식이 적용된 PDF 내보내기",
"Subtitle (e.g. about the Roman Empire)": "자막 (예: 로마 제국에 대하여)", "Subtitle": "",
"Success": "성공", "Success": "성공",
"Successfully imported {{userCount}} users.": "성공적으로 {{userCount}}명의 사용자를 가져왔습니다.", "Successfully imported {{userCount}} users.": "성공적으로 {{userCount}}명의 사용자를 가져왔습니다.",
"Successfully updated.": "성공적으로 업데이트되었습니다.", "Successfully updated.": "성공적으로 업데이트되었습니다.",
@ -1598,7 +1625,6 @@
"Tika Server URL required.": "Tika 서버 URL이 필요합니다.", "Tika Server URL required.": "Tika 서버 URL이 필요합니다.",
"Tiktoken": "틱토큰 (Tiktoken)", "Tiktoken": "틱토큰 (Tiktoken)",
"Title": "제목", "Title": "제목",
"Title (e.g. Tell me a fun fact)": "제목 (예: 재미있는 사실을 알려주세요.)",
"Title Auto-Generation": "제목 자동 생성", "Title Auto-Generation": "제목 자동 생성",
"Title cannot be an empty string.": "제목은 빈 문자열일 수 없습니다.", "Title cannot be an empty string.": "제목은 빈 문자열일 수 없습니다.",
"Title Generation": "제목 생성", "Title Generation": "제목 생성",
@ -1667,6 +1693,7 @@
"Update and Copy Link": "링크 업데이트 및 복사", "Update and Copy Link": "링크 업데이트 및 복사",
"Update for the latest features and improvements.": "이번 업데이트의 새로운 기능과 개선", "Update for the latest features and improvements.": "이번 업데이트의 새로운 기능과 개선",
"Update password": "비밀번호 업데이트", "Update password": "비밀번호 업데이트",
"Update your status": "",
"Updated": "업데이트됨", "Updated": "업데이트됨",
"Updated at": "업데이트 일시", "Updated at": "업데이트 일시",
"Updated At": "업데이트 일시", "Updated At": "업데이트 일시",
@ -1720,6 +1747,7 @@
"View Replies": "답글 보기", "View Replies": "답글 보기",
"View Result from **{{NAME}}**": "**{{NAME}}**의 결과 보기", "View Result from **{{NAME}}**": "**{{NAME}}**의 결과 보기",
"Visibility": "공개 범위", "Visibility": "공개 범위",
"Visible to all users": "",
"Vision": "비전", "Vision": "비전",
"Voice": "음성", "Voice": "음성",
"Voice Input": "음성 입력", "Voice Input": "음성 입력",
@ -1747,6 +1775,7 @@
"What are you trying to achieve?": "무엇을 성취하고 싶으신가요?", "What are you trying to achieve?": "무엇을 성취하고 싶으신가요?",
"What are you working on?": "어떤 작업을 하고 계신가요?", "What are you working on?": "어떤 작업을 하고 계신가요?",
"What's New in": "새로운 기능:", "What's New in": "새로운 기능:",
"What's on your mind?": "",
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "활성화하면 모델이 각 채팅 메시지에 실시간으로 응답하여 사용자가 메시지를 보내는 즉시 응답을 생성합니다. 이 모드는 실시간 채팅 애플리케이션에 유용하지만, 느린 하드웨어에서는 성능에 영향을 미칠 수 있습니다.", "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "활성화하면 모델이 각 채팅 메시지에 실시간으로 응답하여 사용자가 메시지를 보내는 즉시 응답을 생성합니다. 이 모드는 실시간 채팅 애플리케이션에 유용하지만, 느린 하드웨어에서는 성능에 영향을 미칠 수 있습니다.",
"wherever you are": "당신이 어디에 있든", "wherever you are": "당신이 어디에 있든",
"Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "출력을 페이지로 나눌지 여부입니다. 각 페이지는 구분선과 페이지 번호로 구분됩니다. 기본값은 False입니다.", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "출력을 페이지로 나눌지 여부입니다. 각 페이지는 구분선과 페이지 번호로 구분됩니다. 기본값은 False입니다.",

View file

@ -18,11 +18,15 @@
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
"{{model}} download has been canceled": "", "{{model}} download has been canceled": "",
"{{NAMES}} reacted with {{REACTION}}": "",
"{{user}}'s Chats": "{{user}} susirašinėjimai", "{{user}}'s Chats": "{{user}} susirašinėjimai",
"{{webUIName}} Backend Required": "{{webUIName}} būtinas serveris", "{{webUIName}} Backend Required": "{{webUIName}} būtinas serveris",
"*Prompt node ID(s) are required for image generation": "", "*Prompt node ID(s) are required for image generation": "",
"1 Source": "", "1 Source": "",
"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.": "", "A new version (v{{LATEST_VERSION}}) is now available.": "",
"A private conversation between you and selected users": "",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Užduočių modelis naudojamas pokalbių pavadinimų ir paieškos užklausų generavimui.", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Užduočių modelis naudojamas pokalbių pavadinimų ir paieškos užklausų generavimui.",
"a user": "naudotojas", "a user": "naudotojas",
"About": "Apie", "About": "Apie",
@ -53,7 +57,8 @@
"Add Custom Prompt": "", "Add Custom Prompt": "",
"Add Details": "", "Add Details": "",
"Add Files": "Pridėti failus", "Add Files": "Pridėti failus",
"Add Group": "", "Add Member": "",
"Add Members": "",
"Add Memory": "Pridėti atminį", "Add Memory": "Pridėti atminį",
"Add Model": "Pridėti modelį", "Add Model": "Pridėti modelį",
"Add Reaction": "", "Add Reaction": "",
@ -252,6 +257,7 @@
"Citations": "", "Citations": "",
"Clear memory": "Ištrinti atmintį", "Clear memory": "Ištrinti atmintį",
"Clear Memory": "", "Clear Memory": "",
"Clear status": "",
"click here": "", "click here": "",
"Click here for filter guides.": "", "Click here for filter guides.": "",
"Click here for help.": "Paspauskite čia dėl pagalbos.", "Click here for help.": "Paspauskite čia dėl pagalbos.",
@ -288,6 +294,7 @@
"Code Interpreter": "", "Code Interpreter": "",
"Code Interpreter Engine": "", "Code Interpreter Engine": "",
"Code Interpreter Prompt Template": "", "Code Interpreter Prompt Template": "",
"Collaboration channel where people join as members": "",
"Collapse": "", "Collapse": "",
"Collection": "Kolekcija", "Collection": "Kolekcija",
"Color": "", "Color": "",
@ -447,6 +454,7 @@
"Discover, download, and explore custom prompts": "Atrasti ir parsisiųsti užklausas", "Discover, download, and explore custom prompts": "Atrasti ir parsisiųsti užklausas",
"Discover, download, and explore custom tools": "Atrasti, atsisiųsti arba rasti naujų įrankių", "Discover, download, and explore custom tools": "Atrasti, atsisiųsti arba rasti naujų įrankių",
"Discover, download, and explore model presets": "Atrasti ir parsisiųsti modelių konfigūracija", "Discover, download, and explore model presets": "Atrasti ir parsisiųsti modelių konfigūracija",
"Discussion channel where access is based on groups and permissions": "",
"Display": "", "Display": "",
"Display chat title in tab": "", "Display chat title in tab": "",
"Display Emoji in Call": "Rodyti emoji pokalbiuose", "Display Emoji in Call": "Rodyti emoji pokalbiuose",
@ -463,6 +471,7 @@
"Document": "Dokumentas", "Document": "Dokumentas",
"Document Intelligence": "", "Document Intelligence": "",
"Document Intelligence endpoint required.": "", "Document Intelligence endpoint required.": "",
"Document Intelligence Model": "",
"Documentation": "Dokumentacija", "Documentation": "Dokumentacija",
"Documents": "Dokumentai", "Documents": "Dokumentai",
"does not make any external connections, and your data stays securely on your locally hosted server.": "neturi jokių išorinių ryšių ir duomenys lieka serveryje.", "does not make any external connections, and your data stays securely on your locally hosted server.": "neturi jokių išorinių ryšių ir duomenys lieka serveryje.",
@ -485,12 +494,15 @@
"e.g. \"json\" or a JSON schema": "", "e.g. \"json\" or a JSON schema": "",
"e.g. 60": "", "e.g. 60": "",
"e.g. A filter to remove profanity from text": "", "e.g. A filter to remove profanity from text": "",
"e.g. about the Roman Empire": "",
"e.g. en": "", "e.g. en": "",
"e.g. My Filter": "", "e.g. My Filter": "",
"e.g. My Tools": "", "e.g. My Tools": "",
"e.g. my_filter": "", "e.g. my_filter": "",
"e.g. my_tools": "", "e.g. my_tools": "",
"e.g. pdf, docx, txt": "", "e.g. pdf, docx, txt": "",
"e.g. Tell me a fun fact": "",
"e.g. Tell me a fun fact about the Roman Empire": "",
"e.g. Tools for performing various operations": "", "e.g. Tools for performing various operations": "",
"e.g., 3, 4, 5 (leave blank for default)": "", "e.g., 3, 4, 5 (leave blank for default)": "",
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "", "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
@ -564,6 +576,7 @@
"Enter Docling Server URL": "", "Enter Docling Server URL": "",
"Enter Document Intelligence Endpoint": "", "Enter Document Intelligence Endpoint": "",
"Enter Document Intelligence Key": "", "Enter Document Intelligence Key": "",
"Enter Document Intelligence Model": "",
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "", "Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
"Enter Exa API Key": "", "Enter Exa API Key": "",
"Enter External Document Loader API Key": "", "Enter External Document Loader API Key": "",
@ -689,7 +702,6 @@
"Export Config to JSON File": "", "Export Config to JSON File": "",
"Export Models": "", "Export Models": "",
"Export Presets": "", "Export Presets": "",
"Export Prompt Suggestions": "",
"Export Prompts": "", "Export Prompts": "",
"Export to CSV": "", "Export to CSV": "",
"Export Tools": "", "Export Tools": "",
@ -704,6 +716,8 @@
"External Web Search URL": "", "External Web Search URL": "",
"Fade Effect for Streaming Text": "", "Fade Effect for Streaming Text": "",
"Failed to add file.": "", "Failed to add file.": "",
"Failed to add members": "",
"Failed to clear status": "",
"Failed to connect to {{URL}} OpenAPI tool server": "", "Failed to connect to {{URL}} OpenAPI tool server": "",
"Failed to copy link": "", "Failed to copy link": "",
"Failed to create API Key.": "Nepavyko sukurti API rakto", "Failed to create API Key.": "Nepavyko sukurti API rakto",
@ -717,12 +731,14 @@
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to read clipboard contents": "Nepavyko perskaityti kopijuoklės", "Failed to read clipboard contents": "Nepavyko perskaityti kopijuoklės",
"Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
"Failed to render visualization": "", "Failed to render visualization": "",
"Failed to save connections": "", "Failed to save connections": "",
"Failed to save conversation": "Nepavyko išsaugoti pokalbio", "Failed to save conversation": "Nepavyko išsaugoti pokalbio",
"Failed to save models configuration": "", "Failed to save models configuration": "",
"Failed to update settings": "Nepavyko atnaujinti nustatymų", "Failed to update settings": "Nepavyko atnaujinti nustatymų",
"Failed to update status": "",
"Failed to upload file.": "", "Failed to upload file.": "",
"Features": "", "Features": "",
"Features Permissions": "", "Features Permissions": "",
@ -816,11 +832,13 @@
"Google PSE Engine Id": "Google PSE variklio ID", "Google PSE Engine Id": "Google PSE variklio ID",
"Gravatar": "", "Gravatar": "",
"Group": "Grupė", "Group": "Grupė",
"Group Channel": "",
"Group created successfully": "", "Group created successfully": "",
"Group deleted successfully": "", "Group deleted successfully": "",
"Group Description": "", "Group Description": "",
"Group Name": "", "Group Name": "",
"Group updated successfully": "", "Group updated successfully": "",
"groups": "",
"Groups": "", "Groups": "",
"H1": "", "H1": "",
"H2": "", "H2": "",
@ -875,7 +893,6 @@
"Import Models": "", "Import Models": "",
"Import Notes": "", "Import Notes": "",
"Import Presets": "", "Import Presets": "",
"Import Prompt Suggestions": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
"Import Tools": "", "Import Tools": "",
@ -1011,6 +1028,9 @@
"MCP": "", "MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Medium": "", "Medium": "",
"Member removed successfully": "",
"Members": "",
"Members added successfully": "",
"Memories accessible by LLMs will be shown here.": "Atminitis prieinama kalbos modelio bus rodoma čia.", "Memories accessible by LLMs will be shown here.": "Atminitis prieinama kalbos modelio bus rodoma čia.",
"Memory": "Atmintis", "Memory": "Atmintis",
"Memory added successfully": "Atmintis pridėta sėkmingai", "Memory added successfully": "Atmintis pridėta sėkmingai",
@ -1110,6 +1130,7 @@
"No models selected": "", "No models selected": "",
"No Notes": "", "No Notes": "",
"No notes found": "", "No notes found": "",
"No pinned messages": "",
"No prompts found": "", "No prompts found": "",
"No results": "Rezultatų nerasta", "No results": "Rezultatų nerasta",
"No results found": "Rezultatų nerasta", "No results found": "Rezultatų nerasta",
@ -1157,6 +1178,7 @@
"Only alphanumeric characters and hyphens are allowed in the command string.": "Leistinos tik raidės, skaičiai ir brūkšneliai.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Leistinos tik raidės, skaičiai ir brūkšneliai.",
"Only can be triggered when the chat input is in focus.": "", "Only can be triggered when the chat input is in focus.": "",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "", "Only collections can be edited, create a new knowledge base to edit/add documents.": "",
"Only invited users can access": "",
"Only markdown files are allowed": "", "Only markdown files are allowed": "",
"Only select users and groups with permission can access": "", "Only select users and groups with permission can access": "",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "Regis nuoroda nevalidi. Prašau patikrtinkite ir pabandykite iš naujo.", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Regis nuoroda nevalidi. Prašau patikrtinkite ir pabandykite iš naujo.",
@ -1219,6 +1241,7 @@
"Personalization": "Personalizacija", "Personalization": "Personalizacija",
"Pin": "Smeigtukas", "Pin": "Smeigtukas",
"Pinned": "Įsmeigta", "Pinned": "Įsmeigta",
"Pinned Messages": "",
"Pioneer insights": "", "Pioneer insights": "",
"Pipe": "", "Pipe": "",
"Pipeline deleted successfully": "Procesas ištrintas sėkmingai", "Pipeline deleted successfully": "Procesas ištrintas sėkmingai",
@ -1261,9 +1284,9 @@
"Previous 7 days": "Paskutinės 7 dienos", "Previous 7 days": "Paskutinės 7 dienos",
"Previous message": "", "Previous message": "",
"Private": "", "Private": "",
"Private conversation between selected users": "",
"Profile": "Profilis", "Profile": "Profilis",
"Prompt": "", "Prompt": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Užklausa (pvz. supaprastink šį laišką)",
"Prompt Autocompletion": "", "Prompt Autocompletion": "",
"Prompt Content": "Užklausos turinys", "Prompt Content": "Užklausos turinys",
"Prompt created successfully": "", "Prompt created successfully": "",
@ -1451,6 +1474,7 @@
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "", "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
"Set Voice": "Numatyti balsą", "Set Voice": "Numatyti balsą",
"Set whisper model": "", "Set whisper model": "",
"Set your status": "",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "", "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "", "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets how far back for the model to look back to prevent repetition.": "", "Sets how far back for the model to look back to prevent repetition.": "",
@ -1503,6 +1527,9 @@
"Start a new conversation": "", "Start a new conversation": "",
"Start of the channel": "Kanalo pradžia", "Start of the channel": "Kanalo pradžia",
"Start Tag": "", "Start Tag": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Steps": "", "Steps": "",
@ -1518,7 +1545,7 @@
"STT Model": "STT modelis", "STT Model": "STT modelis",
"STT Settings": "STT nustatymai", "STT Settings": "STT nustatymai",
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Subtitras", "Subtitle": "",
"Success": "Sėkmingai", "Success": "Sėkmingai",
"Successfully imported {{userCount}} users.": "", "Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Sėkmingai atnaujinta.", "Successfully updated.": "Sėkmingai atnaujinta.",
@ -1601,7 +1628,6 @@
"Tika Server URL required.": "Reiklainga Tika serverio nuorodą", "Tika Server URL required.": "Reiklainga Tika serverio nuorodą",
"Tiktoken": "", "Tiktoken": "",
"Title": "Pavadinimas", "Title": "Pavadinimas",
"Title (e.g. Tell me a fun fact)": "Pavadinimas",
"Title Auto-Generation": "Automatinis pavadinimų generavimas", "Title Auto-Generation": "Automatinis pavadinimų generavimas",
"Title cannot be an empty string.": "Pavadinimas negali būti tuščias", "Title cannot be an empty string.": "Pavadinimas negali būti tuščias",
"Title Generation": "", "Title Generation": "",
@ -1670,6 +1696,7 @@
"Update and Copy Link": "Atnaujinti ir kopijuoti nuorodą", "Update and Copy Link": "Atnaujinti ir kopijuoti nuorodą",
"Update for the latest features and improvements.": "", "Update for the latest features and improvements.": "",
"Update password": "Atnaujinti slaptažodį", "Update password": "Atnaujinti slaptažodį",
"Update your status": "",
"Updated": "", "Updated": "",
"Updated at": "Atnaujinta", "Updated at": "Atnaujinta",
"Updated At": "", "Updated At": "",
@ -1723,6 +1750,7 @@
"View Replies": "", "View Replies": "",
"View Result from **{{NAME}}**": "", "View Result from **{{NAME}}**": "",
"Visibility": "", "Visibility": "",
"Visible to all users": "",
"Vision": "", "Vision": "",
"Voice": "Balsas", "Voice": "Balsas",
"Voice Input": "", "Voice Input": "",
@ -1750,6 +1778,7 @@
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"What's New in": "Kas naujo", "What's New in": "Kas naujo",
"What's on your mind?": "",
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "", "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
"wherever you are": "", "wherever you are": "",
"Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "",

View file

@ -18,11 +18,15 @@
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
"{{model}} download has been canceled": "", "{{model}} download has been canceled": "",
"{{NAMES}} reacted with {{REACTION}}": "",
"{{user}}'s Chats": "Perbualan {{user}}", "{{user}}'s Chats": "Perbualan {{user}}",
"{{webUIName}} Backend Required": "{{webUIName}} Backend diperlukan", "{{webUIName}} Backend Required": "{{webUIName}} Backend diperlukan",
"*Prompt node ID(s) are required for image generation": "", "*Prompt node ID(s) are required for image generation": "",
"1 Source": "", "1 Source": "",
"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.": "", "A new version (v{{LATEST_VERSION}}) is now available.": "",
"A private conversation between you and selected users": "",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Model tugas digunakan semasa melaksanakan tugas seperti menjana tajuk untuk perbualan dan pertanyaan carian web.", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Model tugas digunakan semasa melaksanakan tugas seperti menjana tajuk untuk perbualan dan pertanyaan carian web.",
"a user": "seorang pengguna", "a user": "seorang pengguna",
"About": "Mengenai", "About": "Mengenai",
@ -53,7 +57,8 @@
"Add Custom Prompt": "", "Add Custom Prompt": "",
"Add Details": "", "Add Details": "",
"Add Files": "Tambah Fail", "Add Files": "Tambah Fail",
"Add Group": "", "Add Member": "",
"Add Members": "",
"Add Memory": "Tambah Memori", "Add Memory": "Tambah Memori",
"Add Model": "Tambah Model", "Add Model": "Tambah Model",
"Add Reaction": "", "Add Reaction": "",
@ -252,6 +257,7 @@
"Citations": "", "Citations": "",
"Clear memory": "Kosongkan memori", "Clear memory": "Kosongkan memori",
"Clear Memory": "", "Clear Memory": "",
"Clear status": "",
"click here": "", "click here": "",
"Click here for filter guides.": "", "Click here for filter guides.": "",
"Click here for help.": "Klik disini untuk mendapatkan bantuan", "Click here for help.": "Klik disini untuk mendapatkan bantuan",
@ -288,6 +294,7 @@
"Code Interpreter": "", "Code Interpreter": "",
"Code Interpreter Engine": "", "Code Interpreter Engine": "",
"Code Interpreter Prompt Template": "", "Code Interpreter Prompt Template": "",
"Collaboration channel where people join as members": "",
"Collapse": "", "Collapse": "",
"Collection": "Koleksi", "Collection": "Koleksi",
"Color": "", "Color": "",
@ -447,6 +454,7 @@
"Discover, download, and explore custom prompts": "Temui, muat turun dan teroka gesaan tersuai", "Discover, download, and explore custom prompts": "Temui, muat turun dan teroka gesaan tersuai",
"Discover, download, and explore custom tools": "Temui, muat turun dan teroka alat tersuai", "Discover, download, and explore custom tools": "Temui, muat turun dan teroka alat tersuai",
"Discover, download, and explore model presets": "Temui, muat turun dan teroka model pratetap", "Discover, download, and explore model presets": "Temui, muat turun dan teroka model pratetap",
"Discussion channel where access is based on groups and permissions": "",
"Display": "", "Display": "",
"Display chat title in tab": "", "Display chat title in tab": "",
"Display Emoji in Call": "Paparkan Emoji dalam Panggilan", "Display Emoji in Call": "Paparkan Emoji dalam Panggilan",
@ -463,6 +471,7 @@
"Document": "Dokumen", "Document": "Dokumen",
"Document Intelligence": "", "Document Intelligence": "",
"Document Intelligence endpoint required.": "", "Document Intelligence endpoint required.": "",
"Document Intelligence Model": "",
"Documentation": "Dokumentasi", "Documentation": "Dokumentasi",
"Documents": "Dokumen", "Documents": "Dokumen",
"does not make any external connections, and your data stays securely on your locally hosted server.": "tidak membuat sebarang sambungan luaran, dan data anda kekal selamat pada pelayan yang dihoskan ditempat anda", "does not make any external connections, and your data stays securely on your locally hosted server.": "tidak membuat sebarang sambungan luaran, dan data anda kekal selamat pada pelayan yang dihoskan ditempat anda",
@ -485,12 +494,15 @@
"e.g. \"json\" or a JSON schema": "", "e.g. \"json\" or a JSON schema": "",
"e.g. 60": "", "e.g. 60": "",
"e.g. A filter to remove profanity from text": "", "e.g. A filter to remove profanity from text": "",
"e.g. about the Roman Empire": "",
"e.g. en": "", "e.g. en": "",
"e.g. My Filter": "", "e.g. My Filter": "",
"e.g. My Tools": "", "e.g. My Tools": "",
"e.g. my_filter": "", "e.g. my_filter": "",
"e.g. my_tools": "", "e.g. my_tools": "",
"e.g. pdf, docx, txt": "", "e.g. pdf, docx, txt": "",
"e.g. Tell me a fun fact": "",
"e.g. Tell me a fun fact about the Roman Empire": "",
"e.g. Tools for performing various operations": "", "e.g. Tools for performing various operations": "",
"e.g., 3, 4, 5 (leave blank for default)": "", "e.g., 3, 4, 5 (leave blank for default)": "",
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "", "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
@ -564,6 +576,7 @@
"Enter Docling Server URL": "", "Enter Docling Server URL": "",
"Enter Document Intelligence Endpoint": "", "Enter Document Intelligence Endpoint": "",
"Enter Document Intelligence Key": "", "Enter Document Intelligence Key": "",
"Enter Document Intelligence Model": "",
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "", "Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
"Enter Exa API Key": "", "Enter Exa API Key": "",
"Enter External Document Loader API Key": "", "Enter External Document Loader API Key": "",
@ -689,7 +702,6 @@
"Export Config to JSON File": "", "Export Config to JSON File": "",
"Export Models": "", "Export Models": "",
"Export Presets": "", "Export Presets": "",
"Export Prompt Suggestions": "",
"Export Prompts": "", "Export Prompts": "",
"Export to CSV": "", "Export to CSV": "",
"Export Tools": "", "Export Tools": "",
@ -704,6 +716,8 @@
"External Web Search URL": "", "External Web Search URL": "",
"Fade Effect for Streaming Text": "", "Fade Effect for Streaming Text": "",
"Failed to add file.": "", "Failed to add file.": "",
"Failed to add members": "",
"Failed to clear status": "",
"Failed to connect to {{URL}} OpenAPI tool server": "", "Failed to connect to {{URL}} OpenAPI tool server": "",
"Failed to copy link": "", "Failed to copy link": "",
"Failed to create API Key.": "Gagal mencipta kekunci API", "Failed to create API Key.": "Gagal mencipta kekunci API",
@ -717,12 +731,14 @@
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to read clipboard contents": "Gagal membaca konten papan klip", "Failed to read clipboard contents": "Gagal membaca konten papan klip",
"Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
"Failed to render visualization": "", "Failed to render visualization": "",
"Failed to save connections": "", "Failed to save connections": "",
"Failed to save conversation": "Gagal menyimpan perbualan", "Failed to save conversation": "Gagal menyimpan perbualan",
"Failed to save models configuration": "", "Failed to save models configuration": "",
"Failed to update settings": "Gagal mengemaskini tetapan", "Failed to update settings": "Gagal mengemaskini tetapan",
"Failed to update status": "",
"Failed to upload file.": "", "Failed to upload file.": "",
"Features": "", "Features": "",
"Features Permissions": "", "Features Permissions": "",
@ -816,11 +832,13 @@
"Google PSE Engine Id": "ID Enjin Google PSE", "Google PSE Engine Id": "ID Enjin Google PSE",
"Gravatar": "", "Gravatar": "",
"Group": "Kumpulan", "Group": "Kumpulan",
"Group Channel": "",
"Group created successfully": "", "Group created successfully": "",
"Group deleted successfully": "", "Group deleted successfully": "",
"Group Description": "", "Group Description": "",
"Group Name": "", "Group Name": "",
"Group updated successfully": "", "Group updated successfully": "",
"groups": "",
"Groups": "", "Groups": "",
"H1": "", "H1": "",
"H2": "", "H2": "",
@ -875,7 +893,6 @@
"Import Models": "", "Import Models": "",
"Import Notes": "", "Import Notes": "",
"Import Presets": "", "Import Presets": "",
"Import Prompt Suggestions": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
"Import Tools": "", "Import Tools": "",
@ -1011,6 +1028,9 @@
"MCP": "", "MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Medium": "", "Medium": "",
"Member removed successfully": "",
"Members": "",
"Members added successfully": "",
"Memories accessible by LLMs will be shown here.": "Memori yang boleh diakses oleh LLM akan ditunjukkan di sini.", "Memories accessible by LLMs will be shown here.": "Memori yang boleh diakses oleh LLM akan ditunjukkan di sini.",
"Memory": "Memori", "Memory": "Memori",
"Memory added successfully": "Memori berjaya ditambah", "Memory added successfully": "Memori berjaya ditambah",
@ -1110,6 +1130,7 @@
"No models selected": "", "No models selected": "",
"No Notes": "", "No Notes": "",
"No notes found": "", "No notes found": "",
"No pinned messages": "",
"No prompts found": "", "No prompts found": "",
"No results": "Tiada keputusan dijumpai", "No results": "Tiada keputusan dijumpai",
"No results found": "Tiada keputusan dijumpai", "No results found": "Tiada keputusan dijumpai",
@ -1157,6 +1178,7 @@
"Only alphanumeric characters and hyphens are allowed in the command string.": "Hanya aksara alfanumerik dan sempang dibenarkan dalam rentetan arahan.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Hanya aksara alfanumerik dan sempang dibenarkan dalam rentetan arahan.",
"Only can be triggered when the chat input is in focus.": "", "Only can be triggered when the chat input is in focus.": "",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "", "Only collections can be edited, create a new knowledge base to edit/add documents.": "",
"Only invited users can access": "",
"Only markdown files are allowed": "", "Only markdown files are allowed": "",
"Only select users and groups with permission can access": "", "Only select users and groups with permission can access": "",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "Maaf, didapati URL tidak sah. Sila semak semula dan cuba lagi.", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Maaf, didapati URL tidak sah. Sila semak semula dan cuba lagi.",
@ -1219,6 +1241,7 @@
"Personalization": "Personalisasi", "Personalization": "Personalisasi",
"Pin": "Pin", "Pin": "Pin",
"Pinned": "Disemat", "Pinned": "Disemat",
"Pinned Messages": "",
"Pioneer insights": "", "Pioneer insights": "",
"Pipe": "", "Pipe": "",
"Pipeline deleted successfully": "'Pipeline' berjaya dipadam", "Pipeline deleted successfully": "'Pipeline' berjaya dipadam",
@ -1261,9 +1284,9 @@
"Previous 7 days": "7 hari sebelumnya", "Previous 7 days": "7 hari sebelumnya",
"Previous message": "", "Previous message": "",
"Private": "", "Private": "",
"Private conversation between selected users": "",
"Profile": "Profil", "Profile": "Profil",
"Prompt": "", "Prompt": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Gesaan (cth Beritahu saya fakta yang menyeronokkan tentang Kesultanan Melaka)",
"Prompt Autocompletion": "", "Prompt Autocompletion": "",
"Prompt Content": "Kandungan Gesaan", "Prompt Content": "Kandungan Gesaan",
"Prompt created successfully": "", "Prompt created successfully": "",
@ -1448,6 +1471,7 @@
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "", "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
"Set Voice": "Tetapan Suara", "Set Voice": "Tetapan Suara",
"Set whisper model": "", "Set whisper model": "",
"Set your status": "",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "", "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "", "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets how far back for the model to look back to prevent repetition.": "", "Sets how far back for the model to look back to prevent repetition.": "",
@ -1500,6 +1524,9 @@
"Start a new conversation": "", "Start a new conversation": "",
"Start of the channel": "Permulaan saluran", "Start of the channel": "Permulaan saluran",
"Start Tag": "", "Start Tag": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Steps": "", "Steps": "",
@ -1515,7 +1542,7 @@
"STT Model": "Model STT", "STT Model": "Model STT",
"STT Settings": "Tetapan STT", "STT Settings": "Tetapan STT",
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Sari kata (cth tentang Kesultanan Melaka)", "Subtitle": "",
"Success": "Berjaya", "Success": "Berjaya",
"Successfully imported {{userCount}} users.": "", "Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Berjaya Dikemaskini", "Successfully updated.": "Berjaya Dikemaskini",
@ -1598,7 +1625,6 @@
"Tika Server URL required.": "URL Pelayan Tika diperlukan.", "Tika Server URL required.": "URL Pelayan Tika diperlukan.",
"Tiktoken": "", "Tiktoken": "",
"Title": "Tajuk", "Title": "Tajuk",
"Title (e.g. Tell me a fun fact)": "Tajuk (cth Beritahu saya fakta yang menyeronokkan)",
"Title Auto-Generation": "Penjanaan Auto Tajuk", "Title Auto-Generation": "Penjanaan Auto Tajuk",
"Title cannot be an empty string.": "Tajuk tidak boleh menjadi rentetan kosong", "Title cannot be an empty string.": "Tajuk tidak boleh menjadi rentetan kosong",
"Title Generation": "", "Title Generation": "",
@ -1667,6 +1693,7 @@
"Update and Copy Link": "Kemaskini dan salin pautan", "Update and Copy Link": "Kemaskini dan salin pautan",
"Update for the latest features and improvements.": "", "Update for the latest features and improvements.": "",
"Update password": "Kemaskini Kata Laluan", "Update password": "Kemaskini Kata Laluan",
"Update your status": "",
"Updated": "", "Updated": "",
"Updated at": "Dikemaskini pada", "Updated at": "Dikemaskini pada",
"Updated At": "", "Updated At": "",
@ -1720,6 +1747,7 @@
"View Replies": "", "View Replies": "",
"View Result from **{{NAME}}**": "", "View Result from **{{NAME}}**": "",
"Visibility": "", "Visibility": "",
"Visible to all users": "",
"Vision": "", "Vision": "",
"Voice": "Suara", "Voice": "Suara",
"Voice Input": "", "Voice Input": "",
@ -1747,6 +1775,7 @@
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"What's New in": "Apakah yang terbaru dalam", "What's New in": "Apakah yang terbaru dalam",
"What's on your mind?": "",
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "", "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
"wherever you are": "", "wherever you are": "",
"Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "",

View file

@ -18,11 +18,15 @@
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
"{{model}} download has been canceled": "", "{{model}} download has been canceled": "",
"{{NAMES}} reacted with {{REACTION}}": "",
"{{user}}'s Chats": "{{user}} sine samtaler", "{{user}}'s Chats": "{{user}} sine samtaler",
"{{webUIName}} Backend Required": "Backend til {{webUIName}} kreves", "{{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", "*Prompt node ID(s) are required for image generation": "Node-ID-er for ledetekst kreves for generering av bilder",
"1 Source": "", "1 Source": "",
"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.", "A new version (v{{LATEST_VERSION}}) is now available.": "En ny versjon (v{{LATEST_VERSION}}) er nå tilgjengelig.",
"A private conversation between you and selected users": "",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "En oppgavemodell brukes når du utfører oppgaver som å generere titler for samtaler eller utfører søkeforespørsler på nettet", "A task model is used when performing tasks such as generating titles for chats and web search queries": "En oppgavemodell brukes når du utfører oppgaver som å generere titler for samtaler eller utfører søkeforespørsler på nettet",
"a user": "en bruker", "a user": "en bruker",
"About": "Om", "About": "Om",
@ -53,7 +57,8 @@
"Add Custom Prompt": "", "Add Custom Prompt": "",
"Add Details": "", "Add Details": "",
"Add Files": "Legg til filer", "Add Files": "Legg til filer",
"Add Group": "Legg til gruppe", "Add Member": "",
"Add Members": "",
"Add Memory": "Legg til minne", "Add Memory": "Legg til minne",
"Add Model": "Legg til modell", "Add Model": "Legg til modell",
"Add Reaction": "Legg til reaksjon", "Add Reaction": "Legg til reaksjon",
@ -252,6 +257,7 @@
"Citations": "", "Citations": "",
"Clear memory": "Tøm minnet", "Clear memory": "Tøm minnet",
"Clear Memory": "", "Clear Memory": "",
"Clear status": "",
"click here": "Klikk her", "click here": "Klikk her",
"Click here for filter guides.": "Klikk her for å få veiledning om filtre", "Click here for filter guides.": "Klikk her for å få veiledning om filtre",
"Click here for help.": "Klikk her for å få hjelp.", "Click here for help.": "Klikk her for å få hjelp.",
@ -288,6 +294,7 @@
"Code Interpreter": "Kodetolker", "Code Interpreter": "Kodetolker",
"Code Interpreter Engine": "Motor for kodetolking", "Code Interpreter Engine": "Motor for kodetolking",
"Code Interpreter Prompt Template": "Mal for ledetekst for kodetolker", "Code Interpreter Prompt Template": "Mal for ledetekst for kodetolker",
"Collaboration channel where people join as members": "",
"Collapse": "", "Collapse": "",
"Collection": "Samling", "Collection": "Samling",
"Color": "Farge", "Color": "Farge",
@ -447,6 +454,7 @@
"Discover, download, and explore custom prompts": "Oppdag, last ned og utforsk tilpassede ledetekster", "Discover, download, and explore custom prompts": "Oppdag, last ned og utforsk tilpassede ledetekster",
"Discover, download, and explore custom tools": "Oppdag, last ned og utforsk tilpassede verktøy", "Discover, download, and explore custom tools": "Oppdag, last ned og utforsk tilpassede verktøy",
"Discover, download, and explore model presets": "Oppdag, last ned og utforsk forhåndsinnstillinger for modeller", "Discover, download, and explore model presets": "Oppdag, last ned og utforsk forhåndsinnstillinger for modeller",
"Discussion channel where access is based on groups and permissions": "",
"Display": "Visning", "Display": "Visning",
"Display chat title in tab": "", "Display chat title in tab": "",
"Display Emoji in Call": "Vis emoji i samtale", "Display Emoji in Call": "Vis emoji i samtale",
@ -463,6 +471,7 @@
"Document": "Dokument", "Document": "Dokument",
"Document Intelligence": "Intelligens i dokumenter", "Document Intelligence": "Intelligens i dokumenter",
"Document Intelligence endpoint required.": "", "Document Intelligence endpoint required.": "",
"Document Intelligence Model": "",
"Documentation": "Dokumentasjon", "Documentation": "Dokumentasjon",
"Documents": "Dokumenter", "Documents": "Dokumenter",
"does not make any external connections, and your data stays securely on your locally hosted server.": "ikke ingen tilkobling til eksterne tjenester. Dataene dine forblir sikkert på den lokale serveren.", "does not make any external connections, and your data stays securely on your locally hosted server.": "ikke ingen tilkobling til eksterne tjenester. Dataene dine forblir sikkert på den lokale serveren.",
@ -485,12 +494,15 @@
"e.g. \"json\" or a JSON schema": "", "e.g. \"json\" or a JSON schema": "",
"e.g. 60": "f.eks. 60", "e.g. 60": "f.eks. 60",
"e.g. A filter to remove profanity from text": "f.eks. et filter for å fjerne banning fra tekst", "e.g. A filter to remove profanity from text": "f.eks. et filter for å fjerne banning fra tekst",
"e.g. about the Roman Empire": "",
"e.g. en": "", "e.g. en": "",
"e.g. My Filter": "f.eks. Mitt filter", "e.g. My Filter": "f.eks. Mitt filter",
"e.g. My Tools": "f.eks. Mine verktøy", "e.g. My Tools": "f.eks. Mine verktøy",
"e.g. my_filter": "f.eks. mitt_filter", "e.g. my_filter": "f.eks. mitt_filter",
"e.g. my_tools": "f.eks. mine_verktøy", "e.g. my_tools": "f.eks. mine_verktøy",
"e.g. pdf, docx, txt": "", "e.g. pdf, docx, txt": "",
"e.g. Tell me a fun fact": "",
"e.g. Tell me a fun fact about the Roman Empire": "",
"e.g. Tools for performing various operations": "f.eks. Verktøy for å gjøre ulike handlinger", "e.g. Tools for performing various operations": "f.eks. Verktøy for å gjøre ulike handlinger",
"e.g., 3, 4, 5 (leave blank for default)": "", "e.g., 3, 4, 5 (leave blank for default)": "",
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "", "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
@ -564,6 +576,7 @@
"Enter Docling Server URL": "", "Enter Docling Server URL": "",
"Enter Document Intelligence Endpoint": "Angi endepunkt for Intelligens i dokumenter", "Enter Document Intelligence Endpoint": "Angi endepunkt for Intelligens i dokumenter",
"Enter Document Intelligence Key": "Angi nøkkel for Intelligens i dokumenter", "Enter Document Intelligence Key": "Angi nøkkel for Intelligens i dokumenter",
"Enter Document Intelligence Model": "",
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "", "Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
"Enter Exa API Key": "Angi API-nøkkel for Exa", "Enter Exa API Key": "Angi API-nøkkel for Exa",
"Enter External Document Loader API Key": "", "Enter External Document Loader API Key": "",
@ -689,7 +702,6 @@
"Export Config to JSON File": "Ekporter konfigurasjon til en JSON-fil", "Export Config to JSON File": "Ekporter konfigurasjon til en JSON-fil",
"Export Models": "", "Export Models": "",
"Export Presets": "Eksporter forhåndsinnstillinger", "Export Presets": "Eksporter forhåndsinnstillinger",
"Export Prompt Suggestions": "",
"Export Prompts": "", "Export Prompts": "",
"Export to CSV": "Eksporter til CSV", "Export to CSV": "Eksporter til CSV",
"Export Tools": "", "Export Tools": "",
@ -704,6 +716,8 @@
"External Web Search URL": "", "External Web Search URL": "",
"Fade Effect for Streaming Text": "", "Fade Effect for Streaming Text": "",
"Failed to add file.": "Kan ikke legge til filen.", "Failed to add file.": "Kan ikke legge til filen.",
"Failed to add members": "",
"Failed to clear status": "",
"Failed to connect to {{URL}} OpenAPI tool server": "", "Failed to connect to {{URL}} OpenAPI tool server": "",
"Failed to copy link": "", "Failed to copy link": "",
"Failed to create API Key.": "Kan ikke opprette en API-nøkkel.", "Failed to create API Key.": "Kan ikke opprette en API-nøkkel.",
@ -717,12 +731,14 @@
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to read clipboard contents": "Kan ikke lese utklippstavlens innhold", "Failed to read clipboard contents": "Kan ikke lese utklippstavlens innhold",
"Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
"Failed to render visualization": "", "Failed to render visualization": "",
"Failed to save connections": "", "Failed to save connections": "",
"Failed to save conversation": "Kan ikke lagre samtalen", "Failed to save conversation": "Kan ikke lagre samtalen",
"Failed to save models configuration": "Kan ikke lagre konfigurasjonen av modeller", "Failed to save models configuration": "Kan ikke lagre konfigurasjonen av modeller",
"Failed to update settings": "Kan ikke oppdatere innstillinger", "Failed to update settings": "Kan ikke oppdatere innstillinger",
"Failed to update status": "",
"Failed to upload file.": "Kan ikke laste opp filen.", "Failed to upload file.": "Kan ikke laste opp filen.",
"Features": "Funksjoner", "Features": "Funksjoner",
"Features Permissions": "Tillatelser for funksjoner", "Features Permissions": "Tillatelser for funksjoner",
@ -816,11 +832,13 @@
"Google PSE Engine Id": "Motor-ID for Google PSE", "Google PSE Engine Id": "Motor-ID for Google PSE",
"Gravatar": "", "Gravatar": "",
"Group": "Gruppe", "Group": "Gruppe",
"Group Channel": "",
"Group created successfully": "Gruppe opprettet", "Group created successfully": "Gruppe opprettet",
"Group deleted successfully": "Gruppe slettet", "Group deleted successfully": "Gruppe slettet",
"Group Description": "Beskrivelse av gruppe", "Group Description": "Beskrivelse av gruppe",
"Group Name": "Navn på gruppe", "Group Name": "Navn på gruppe",
"Group updated successfully": "Gruppe oppdatert", "Group updated successfully": "Gruppe oppdatert",
"groups": "",
"Groups": "Grupper", "Groups": "Grupper",
"H1": "", "H1": "",
"H2": "", "H2": "",
@ -875,7 +893,6 @@
"Import Models": "", "Import Models": "",
"Import Notes": "", "Import Notes": "",
"Import Presets": "Importer forhåndsinnstillinger", "Import Presets": "Importer forhåndsinnstillinger",
"Import Prompt Suggestions": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
"Import Tools": "", "Import Tools": "",
@ -1011,6 +1028,9 @@
"MCP": "", "MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Medium": "", "Medium": "",
"Member removed successfully": "",
"Members": "",
"Members added successfully": "",
"Memories accessible by LLMs will be shown here.": "Språkmodellers tilgjengelige minner vises her.", "Memories accessible by LLMs will be shown here.": "Språkmodellers tilgjengelige minner vises her.",
"Memory": "Minne", "Memory": "Minne",
"Memory added successfully": "Minne lagt til", "Memory added successfully": "Minne lagt til",
@ -1110,6 +1130,7 @@
"No models selected": "Ingen modeller er valgt", "No models selected": "Ingen modeller er valgt",
"No Notes": "", "No Notes": "",
"No notes found": "", "No notes found": "",
"No pinned messages": "",
"No prompts found": "", "No prompts found": "",
"No results": "Finner ingen resultater", "No results": "Finner ingen resultater",
"No results found": "Finner ingen resultater", "No results found": "Finner ingen resultater",
@ -1157,6 +1178,7 @@
"Only alphanumeric characters and hyphens are allowed in the command string.": "Bare alfanumeriske tegn og bindestreker er tillatt i kommandostrengen.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Bare alfanumeriske tegn og bindestreker er tillatt i kommandostrengen.",
"Only can be triggered when the chat input is in focus.": "", "Only can be triggered when the chat input is in focus.": "",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Bare samlinger kan redigeres, eller lag en ny kunnskapsbase for å kunne redigere / legge til dokumenter.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Bare samlinger kan redigeres, eller lag en ny kunnskapsbase for å kunne redigere / legge til dokumenter.",
"Only invited users can access": "",
"Only markdown files are allowed": "", "Only markdown files are allowed": "",
"Only select users and groups with permission can access": "Bare utvalgte brukere og grupper med tillatelse kan få tilgang", "Only select users and groups with permission can access": "Bare utvalgte brukere og grupper med tillatelse kan få tilgang",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "Oi! Det ser ut som URL-en er ugyldig. Dobbeltsjekk, og prøv på nytt.", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Oi! Det ser ut som URL-en er ugyldig. Dobbeltsjekk, og prøv på nytt.",
@ -1219,6 +1241,7 @@
"Personalization": "Tilpassing", "Personalization": "Tilpassing",
"Pin": "Fest", "Pin": "Fest",
"Pinned": "Festet", "Pinned": "Festet",
"Pinned Messages": "",
"Pioneer insights": "Nyskapende innsikt", "Pioneer insights": "Nyskapende innsikt",
"Pipe": "", "Pipe": "",
"Pipeline deleted successfully": "Pipeline slettet", "Pipeline deleted successfully": "Pipeline slettet",
@ -1261,9 +1284,9 @@
"Previous 7 days": "Siste 7 dager", "Previous 7 days": "Siste 7 dager",
"Previous message": "", "Previous message": "",
"Private": "", "Private": "",
"Private conversation between selected users": "",
"Profile": "Profil", "Profile": "Profil",
"Prompt": "Ledetekst", "Prompt": "Ledetekst",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Ledetekst (f.eks. Fortell meg noe morsomt om romerriket)",
"Prompt Autocompletion": "", "Prompt Autocompletion": "",
"Prompt Content": "Ledetekstinnhold", "Prompt Content": "Ledetekstinnhold",
"Prompt created successfully": "Ledetekst opprettet", "Prompt created successfully": "Ledetekst opprettet",
@ -1449,6 +1472,7 @@
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Angi antall arbeidstråder som skal brukes til beregning. Dette alternativet kontrollerer hvor mange tråder som brukes til å behandle innkommende forespørsler samtidig. Hvis du øker denne verdien, kan det forbedre ytelsen under arbeidsbelastninger med høy samtidighet, men det kan også føre til økt forbruk av CPU-ressurser.", "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Angi antall arbeidstråder som skal brukes til beregning. Dette alternativet kontrollerer hvor mange tråder som brukes til å behandle innkommende forespørsler samtidig. Hvis du øker denne verdien, kan det forbedre ytelsen under arbeidsbelastninger med høy samtidighet, men det kan også føre til økt forbruk av CPU-ressurser.",
"Set Voice": "Angi stemme", "Set Voice": "Angi stemme",
"Set whisper model": "Angi whisper-modell", "Set whisper model": "Angi whisper-modell",
"Set your status": "",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "", "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "", "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets how far back for the model to look back to prevent repetition.": "", "Sets how far back for the model to look back to prevent repetition.": "",
@ -1501,6 +1525,9 @@
"Start a new conversation": "", "Start a new conversation": "",
"Start of the channel": "Starten av kanalen", "Start of the channel": "Starten av kanalen",
"Start Tag": "", "Start Tag": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Steps": "", "Steps": "",
@ -1516,7 +1543,7 @@
"STT Model": "STT-modell", "STT Model": "STT-modell",
"STT Settings": "STT-innstillinger", "STT Settings": "STT-innstillinger",
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Undertittel (f.eks. om romerriket)", "Subtitle": "",
"Success": "Suksess", "Success": "Suksess",
"Successfully imported {{userCount}} users.": "", "Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Oppdatert.", "Successfully updated.": "Oppdatert.",
@ -1599,7 +1626,6 @@
"Tika Server URL required.": "Server-URL for Tika kreves.", "Tika Server URL required.": "Server-URL for Tika kreves.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Title": "Tittel", "Title": "Tittel",
"Title (e.g. Tell me a fun fact)": "Tittel (f.eks. Fortell meg noe morsomt)",
"Title Auto-Generation": "Automatisk tittelgenerering", "Title Auto-Generation": "Automatisk tittelgenerering",
"Title cannot be an empty string.": "Tittel kan ikke være en tom streng.", "Title cannot be an empty string.": "Tittel kan ikke være en tom streng.",
"Title Generation": "Genering av tittel", "Title Generation": "Genering av tittel",
@ -1668,6 +1694,7 @@
"Update and Copy Link": "Oppdater og kopier lenke", "Update and Copy Link": "Oppdater og kopier lenke",
"Update for the latest features and improvements.": "Oppdater for å få siste funksjoner og forbedringer.", "Update for the latest features and improvements.": "Oppdater for å få siste funksjoner og forbedringer.",
"Update password": "Oppdater passord", "Update password": "Oppdater passord",
"Update your status": "",
"Updated": "Oppdatert", "Updated": "Oppdatert",
"Updated at": "Oppdatert", "Updated at": "Oppdatert",
"Updated At": "Oppdatert", "Updated At": "Oppdatert",
@ -1721,6 +1748,7 @@
"View Replies": "Vis svar", "View Replies": "Vis svar",
"View Result from **{{NAME}}**": "", "View Result from **{{NAME}}**": "",
"Visibility": "Synlighet", "Visibility": "Synlighet",
"Visible to all users": "",
"Vision": "", "Vision": "",
"Voice": "Stemme", "Voice": "Stemme",
"Voice Input": "Taleinndata", "Voice Input": "Taleinndata",
@ -1748,6 +1776,7 @@
"What are you trying to achieve?": "Hva prøver du å oppnå?", "What are you trying to achieve?": "Hva prøver du å oppnå?",
"What are you working on?": "Hva jobber du på nå?", "What are you working on?": "Hva jobber du på nå?",
"What's New in": "Hva er nytt i", "What's New in": "Hva er nytt i",
"What's on your mind?": "",
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Hvis denne modusen er aktivert, svarer modellen på alle chattemeldinger i sanntid, og genererer et svar så snart brukeren sender en melding. Denne modusen er nyttig for live chat-applikasjoner, men kan påvirke ytelsen på tregere maskinvare.", "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Hvis denne modusen er aktivert, svarer modellen på alle chattemeldinger i sanntid, og genererer et svar så snart brukeren sender en melding. Denne modusen er nyttig for live chat-applikasjoner, men kan påvirke ytelsen på tregere maskinvare.",
"wherever you are": "uansett hvor du er", "wherever you are": "uansett hvor du er",
"Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "",

View file

@ -18,11 +18,15 @@
"{{COUNT}} words": "{{COUNT}} woorden", "{{COUNT}} words": "{{COUNT}} woorden",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
"{{model}} download has been canceled": "", "{{model}} download has been canceled": "",
"{{NAMES}} reacted with {{REACTION}}": "",
"{{user}}'s Chats": "{{user}}'s chats", "{{user}}'s Chats": "{{user}}'s chats",
"{{webUIName}} Backend Required": "{{webUIName}} Backend verplicht", "{{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", "*Prompt node ID(s) are required for image generation": "*Prompt node ID('s) zijn vereist voor het genereren van afbeeldingen",
"1 Source": "", "1 Source": "",
"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", "A new version (v{{LATEST_VERSION}}) is now available.": "Een nieuwe versie (v{{LATEST_VERSION}}) is nu beschikbaar",
"A private conversation between you and selected users": "",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Een taakmodel wordt gebruikt bij het uitvoeren van taken zoals het genereren van titels voor chats en zoekopdrachten op het internet", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Een taakmodel wordt gebruikt bij het uitvoeren van taken zoals het genereren van titels voor chats en zoekopdrachten op het internet",
"a user": "een gebruiker", "a user": "een gebruiker",
"About": "Over", "About": "Over",
@ -53,7 +57,8 @@
"Add Custom Prompt": "", "Add Custom Prompt": "",
"Add Details": "", "Add Details": "",
"Add Files": "Voeg bestanden toe", "Add Files": "Voeg bestanden toe",
"Add Group": "Voeg groep toe", "Add Member": "",
"Add Members": "",
"Add Memory": "Voeg geheugen toe", "Add Memory": "Voeg geheugen toe",
"Add Model": "Voeg model toe", "Add Model": "Voeg model toe",
"Add Reaction": "Voeg reactie toe", "Add Reaction": "Voeg reactie toe",
@ -252,6 +257,7 @@
"Citations": "Citaten", "Citations": "Citaten",
"Clear memory": "Geheugen wissen", "Clear memory": "Geheugen wissen",
"Clear Memory": "Geheugen wissen", "Clear Memory": "Geheugen wissen",
"Clear status": "",
"click here": "klik hier", "click here": "klik hier",
"Click here for filter guides.": "Klik hier voor filterhulp.", "Click here for filter guides.": "Klik hier voor filterhulp.",
"Click here for help.": "Klik hier voor hulp.", "Click here for help.": "Klik hier voor hulp.",
@ -288,6 +294,7 @@
"Code Interpreter": "Code-interpretatie", "Code Interpreter": "Code-interpretatie",
"Code Interpreter Engine": "Code-interpretatie engine", "Code Interpreter Engine": "Code-interpretatie engine",
"Code Interpreter Prompt Template": "Code-interpretatie promptsjabloon", "Code Interpreter Prompt Template": "Code-interpretatie promptsjabloon",
"Collaboration channel where people join as members": "",
"Collapse": "Inklappen", "Collapse": "Inklappen",
"Collection": "Verzameling", "Collection": "Verzameling",
"Color": "Kleur", "Color": "Kleur",
@ -447,6 +454,7 @@
"Discover, download, and explore custom prompts": "Ontdek, download en verken aangepaste prompts", "Discover, download, and explore custom prompts": "Ontdek, download en verken aangepaste prompts",
"Discover, download, and explore custom tools": "Ontdek, download en verken aangepaste gereedschappen", "Discover, download, and explore custom tools": "Ontdek, download en verken aangepaste gereedschappen",
"Discover, download, and explore model presets": "Ontdek, download en verken model presets", "Discover, download, and explore model presets": "Ontdek, download en verken model presets",
"Discussion channel where access is based on groups and permissions": "",
"Display": "Toon", "Display": "Toon",
"Display chat title in tab": "", "Display chat title in tab": "",
"Display Emoji in Call": "Emoji tonen tijdens gesprek", "Display Emoji in Call": "Emoji tonen tijdens gesprek",
@ -463,6 +471,7 @@
"Document": "Document", "Document": "Document",
"Document Intelligence": "Document Intelligence", "Document Intelligence": "Document Intelligence",
"Document Intelligence endpoint required.": "", "Document Intelligence endpoint required.": "",
"Document Intelligence Model": "",
"Documentation": "Documentatie", "Documentation": "Documentatie",
"Documents": "Documenten", "Documents": "Documenten",
"does not make any external connections, and your data stays securely on your locally hosted server.": "maakt geen externe verbindingen, en je gegevens blijven veilig op je lokaal gehoste server.", "does not make any external connections, and your data stays securely on your locally hosted server.": "maakt geen externe verbindingen, en je gegevens blijven veilig op je lokaal gehoste server.",
@ -485,12 +494,15 @@
"e.g. \"json\" or a JSON schema": "bijv. \"json\" of een JSON-schema", "e.g. \"json\" or a JSON schema": "bijv. \"json\" of een JSON-schema",
"e.g. 60": "bijv. 60", "e.g. 60": "bijv. 60",
"e.g. A filter to remove profanity from text": "bijv. Een filter om gevloek uit tekst te verwijderen", "e.g. A filter to remove profanity from text": "bijv. Een filter om gevloek uit tekst te verwijderen",
"e.g. about the Roman Empire": "",
"e.g. en": "", "e.g. en": "",
"e.g. My Filter": "bijv. Mijn filter", "e.g. My Filter": "bijv. Mijn filter",
"e.g. My Tools": "bijv. Mijn gereedschappen", "e.g. My Tools": "bijv. Mijn gereedschappen",
"e.g. my_filter": "bijv. mijn_filter", "e.g. my_filter": "bijv. mijn_filter",
"e.g. my_tools": "bijv. mijn_gereedschappen", "e.g. my_tools": "bijv. mijn_gereedschappen",
"e.g. pdf, docx, txt": "", "e.g. pdf, docx, txt": "",
"e.g. Tell me a fun fact": "",
"e.g. Tell me a fun fact about the Roman Empire": "",
"e.g. Tools for performing various operations": "Gereedschappen om verschillende bewerkingen uit te voeren", "e.g. Tools for performing various operations": "Gereedschappen om verschillende bewerkingen uit te voeren",
"e.g., 3, 4, 5 (leave blank for default)": "", "e.g., 3, 4, 5 (leave blank for default)": "",
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "", "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
@ -564,6 +576,7 @@
"Enter Docling Server URL": "Voer Docling Server-URL in", "Enter Docling Server URL": "Voer Docling Server-URL in",
"Enter Document Intelligence Endpoint": "Voer Document Intelligence endpoint in", "Enter Document Intelligence Endpoint": "Voer Document Intelligence endpoint in",
"Enter Document Intelligence Key": "Voer Document Intelligence sleutel in", "Enter Document Intelligence Key": "Voer Document Intelligence sleutel in",
"Enter Document Intelligence Model": "",
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "", "Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
"Enter Exa API Key": "Voer Exa API-sleutel in", "Enter Exa API Key": "Voer Exa API-sleutel in",
"Enter External Document Loader API Key": "", "Enter External Document Loader API Key": "",
@ -689,7 +702,6 @@
"Export Config to JSON File": "Exporteer configuratie naar JSON-bestand", "Export Config to JSON File": "Exporteer configuratie naar JSON-bestand",
"Export Models": "", "Export Models": "",
"Export Presets": "Exporteer voorinstellingen", "Export Presets": "Exporteer voorinstellingen",
"Export Prompt Suggestions": "",
"Export Prompts": "", "Export Prompts": "",
"Export to CSV": "Exporteer naar CSV", "Export to CSV": "Exporteer naar CSV",
"Export Tools": "", "Export Tools": "",
@ -704,6 +716,8 @@
"External Web Search URL": "", "External Web Search URL": "",
"Fade Effect for Streaming Text": "", "Fade Effect for Streaming Text": "",
"Failed to add file.": "Het is niet gelukt om het bestand toe te voegen.", "Failed to add file.": "Het is niet gelukt om het bestand toe te voegen.",
"Failed to add members": "",
"Failed to clear status": "",
"Failed to connect to {{URL}} OpenAPI tool server": "Kan geen verbinding maken met {{URL}} OpenAPI gereedschapserver", "Failed to connect to {{URL}} OpenAPI tool server": "Kan geen verbinding maken met {{URL}} OpenAPI gereedschapserver",
"Failed to copy link": "", "Failed to copy link": "",
"Failed to create API Key.": "Kan API Key niet aanmaken.", "Failed to create API Key.": "Kan API Key niet aanmaken.",
@ -717,12 +731,14 @@
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to read clipboard contents": "Kan klembord inhoud niet lezen", "Failed to read clipboard contents": "Kan klembord inhoud niet lezen",
"Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
"Failed to render visualization": "", "Failed to render visualization": "",
"Failed to save connections": "", "Failed to save connections": "",
"Failed to save conversation": "Het is niet gelukt om het gesprek op te slaan", "Failed to save conversation": "Het is niet gelukt om het gesprek op te slaan",
"Failed to save models configuration": "Het is niet gelukt om de modelconfiguratie op te slaan", "Failed to save models configuration": "Het is niet gelukt om de modelconfiguratie op te slaan",
"Failed to update settings": "Instellingen konden niet worden bijgewerkt.", "Failed to update settings": "Instellingen konden niet worden bijgewerkt.",
"Failed to update status": "",
"Failed to upload file.": "Bestand kon niet worden geüpload.", "Failed to upload file.": "Bestand kon niet worden geüpload.",
"Features": "Functies", "Features": "Functies",
"Features Permissions": "Functietoestemmingen", "Features Permissions": "Functietoestemmingen",
@ -816,11 +832,13 @@
"Google PSE Engine Id": "Google PSE-engine-ID", "Google PSE Engine Id": "Google PSE-engine-ID",
"Gravatar": "", "Gravatar": "",
"Group": "Groep", "Group": "Groep",
"Group Channel": "",
"Group created successfully": "Groep succesvol aangemaakt", "Group created successfully": "Groep succesvol aangemaakt",
"Group deleted successfully": "Groep succesvol verwijderd", "Group deleted successfully": "Groep succesvol verwijderd",
"Group Description": "Groepsbeschrijving", "Group Description": "Groepsbeschrijving",
"Group Name": "Groepsnaam", "Group Name": "Groepsnaam",
"Group updated successfully": "Groep succesvol bijgewerkt", "Group updated successfully": "Groep succesvol bijgewerkt",
"groups": "",
"Groups": "Groepen", "Groups": "Groepen",
"H1": "", "H1": "",
"H2": "", "H2": "",
@ -875,7 +893,6 @@
"Import Models": "", "Import Models": "",
"Import Notes": "", "Import Notes": "",
"Import Presets": "Importeer voorinstellingen", "Import Presets": "Importeer voorinstellingen",
"Import Prompt Suggestions": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
"Import Tools": "", "Import Tools": "",
@ -1011,6 +1028,9 @@
"MCP": "", "MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Medium": "", "Medium": "",
"Member removed successfully": "",
"Members": "",
"Members added successfully": "",
"Memories accessible by LLMs will be shown here.": "Geheugen toegankelijk voor LLMs wordt hier getoond.", "Memories accessible by LLMs will be shown here.": "Geheugen toegankelijk voor LLMs wordt hier getoond.",
"Memory": "Geheugen", "Memory": "Geheugen",
"Memory added successfully": "Geheugen succesvol toegevoegd", "Memory added successfully": "Geheugen succesvol toegevoegd",
@ -1110,6 +1130,7 @@
"No models selected": "Geen modellen geselecteerd", "No models selected": "Geen modellen geselecteerd",
"No Notes": "", "No Notes": "",
"No notes found": "", "No notes found": "",
"No pinned messages": "",
"No prompts found": "", "No prompts found": "",
"No results": "Geen resultaten gevonden", "No results": "Geen resultaten gevonden",
"No results found": "Geen resultaten gevonden", "No results found": "Geen resultaten gevonden",
@ -1157,6 +1178,7 @@
"Only alphanumeric characters and hyphens are allowed in the command string.": "Alleen alfanumerieke karakters en streepjes zijn toegestaan in de commando string.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Alleen alfanumerieke karakters en streepjes zijn toegestaan in de commando string.",
"Only can be triggered when the chat input is in focus.": "", "Only can be triggered when the chat input is in focus.": "",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Alleen verzamelinge kunnen gewijzigd worden, maak een nieuwe kennisbank aan om bestanden aan te passen/toe te voegen", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Alleen verzamelinge kunnen gewijzigd worden, maak een nieuwe kennisbank aan om bestanden aan te passen/toe te voegen",
"Only invited users can access": "",
"Only markdown files are allowed": "", "Only markdown files are allowed": "",
"Only select users and groups with permission can access": "Alleen geselecteerde gebruikers en groepen met toestemming hebben toegang", "Only select users and groups with permission can access": "Alleen geselecteerde gebruikers en groepen met toestemming hebben toegang",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "Oeps! Het lijkt erop dat de URL ongeldig is. Controleer het nogmaals en probeer opnieuw.", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Oeps! Het lijkt erop dat de URL ongeldig is. Controleer het nogmaals en probeer opnieuw.",
@ -1219,6 +1241,7 @@
"Personalization": "Personalisatie", "Personalization": "Personalisatie",
"Pin": "Zet vast", "Pin": "Zet vast",
"Pinned": "Vastgezet", "Pinned": "Vastgezet",
"Pinned Messages": "",
"Pioneer insights": "Verken inzichten", "Pioneer insights": "Verken inzichten",
"Pipe": "", "Pipe": "",
"Pipeline deleted successfully": "Pijpleiding succesvol verwijderd", "Pipeline deleted successfully": "Pijpleiding succesvol verwijderd",
@ -1261,9 +1284,9 @@
"Previous 7 days": "Afgelopen 7 dagen", "Previous 7 days": "Afgelopen 7 dagen",
"Previous message": "", "Previous message": "",
"Private": "Privé", "Private": "Privé",
"Private conversation between selected users": "",
"Profile": "Profiel", "Profile": "Profiel",
"Prompt": "Prompt", "Prompt": "Prompt",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (bv. Vertel me een leuke gebeurtenis over het Romeinse Rijk)",
"Prompt Autocompletion": "Automatische promptaanvulling", "Prompt Autocompletion": "Automatische promptaanvulling",
"Prompt Content": "Promptinhoud", "Prompt Content": "Promptinhoud",
"Prompt created successfully": "Prompt succesvol aangemaakt", "Prompt created successfully": "Prompt succesvol aangemaakt",
@ -1449,6 +1472,7 @@
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Stel het aantal threads in dat wordt gebruikt voor berekeningen. Deze optie bepaalt hoeveel threads worden gebruikt om gelijktijdig binnenkomende verzoeken te verwerken. Het verhogen van deze waarde kan de prestaties verbeteren onder hoge concurrency werklasten, maar kan ook meer CPU-bronnen verbruiken.", "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Stel het aantal threads in dat wordt gebruikt voor berekeningen. Deze optie bepaalt hoeveel threads worden gebruikt om gelijktijdig binnenkomende verzoeken te verwerken. Het verhogen van deze waarde kan de prestaties verbeteren onder hoge concurrency werklasten, maar kan ook meer CPU-bronnen verbruiken.",
"Set Voice": "Stel stem in", "Set Voice": "Stel stem in",
"Set whisper model": "Stel Whisper-model in", "Set whisper model": "Stel Whisper-model in",
"Set your status": "",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Stelt een vlakke bias in tegen tokens die minstens één keer zijn voorgekomen. Een hogere waarde (bijv. 1,5) straft herhalingen sterker af, terwijl een lagere waarde (bijv. 0,9) toegeeflijker is. Bij 0 is het uitgeschakeld.", "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Stelt een vlakke bias in tegen tokens die minstens één keer zijn voorgekomen. Een hogere waarde (bijv. 1,5) straft herhalingen sterker af, terwijl een lagere waarde (bijv. 0,9) toegeeflijker is. Bij 0 is het uitgeschakeld.",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Stelt een schaalvooroordeel in tegen tokens om herhalingen te bestraffen, gebaseerd op hoe vaak ze zijn voorgekomen. Een hogere waarde (bijv. 1,5) straft herhalingen sterker af, terwijl een lagere waarde (bijv. 0,9) toegeeflijker is. Bij 0 is het uitgeschakeld.", "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Stelt een schaalvooroordeel in tegen tokens om herhalingen te bestraffen, gebaseerd op hoe vaak ze zijn voorgekomen. Een hogere waarde (bijv. 1,5) straft herhalingen sterker af, terwijl een lagere waarde (bijv. 0,9) toegeeflijker is. Bij 0 is het uitgeschakeld.",
"Sets how far back for the model to look back to prevent repetition.": "Stelt in hoe ver het model terug moet kijken om herhaling te voorkomen.", "Sets how far back for the model to look back to prevent repetition.": "Stelt in hoe ver het model terug moet kijken om herhaling te voorkomen.",
@ -1501,6 +1525,9 @@
"Start a new conversation": "", "Start a new conversation": "",
"Start of the channel": "Begin van het kanaal", "Start of the channel": "Begin van het kanaal",
"Start Tag": "", "Start Tag": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Steps": "", "Steps": "",
@ -1516,7 +1543,7 @@
"STT Model": "STT Model", "STT Model": "STT Model",
"STT Settings": "STT Instellingen", "STT Settings": "STT Instellingen",
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Ondertitel (bijv. over de Romeinse Empire)", "Subtitle": "",
"Success": "Succes", "Success": "Succes",
"Successfully imported {{userCount}} users.": "", "Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Succesvol bijgewerkt.", "Successfully updated.": "Succesvol bijgewerkt.",
@ -1599,7 +1626,6 @@
"Tika Server URL required.": "Tika Server-URL vereist", "Tika Server URL required.": "Tika Server-URL vereist",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Title": "Titel", "Title": "Titel",
"Title (e.g. Tell me a fun fact)": "Titel (bv. Vertel me een leuke gebeurtenis)",
"Title Auto-Generation": "Titel Auto-Generatie", "Title Auto-Generation": "Titel Auto-Generatie",
"Title cannot be an empty string.": "Titel kan niet leeg zijn.", "Title cannot be an empty string.": "Titel kan niet leeg zijn.",
"Title Generation": "Titelgeneratie", "Title Generation": "Titelgeneratie",
@ -1668,6 +1694,7 @@
"Update and Copy Link": "Bijwerken en kopieer link", "Update and Copy Link": "Bijwerken en kopieer link",
"Update for the latest features and improvements.": "Bijwerken voor de nieuwste functies en verbeteringen", "Update for the latest features and improvements.": "Bijwerken voor de nieuwste functies en verbeteringen",
"Update password": "Wijzig wachtwoord", "Update password": "Wijzig wachtwoord",
"Update your status": "",
"Updated": "Bijgewerkt", "Updated": "Bijgewerkt",
"Updated at": "Bijgewerkt om", "Updated at": "Bijgewerkt om",
"Updated At": "Bijgewerkt om", "Updated At": "Bijgewerkt om",
@ -1721,6 +1748,7 @@
"View Replies": "Bekijke resultaten", "View Replies": "Bekijke resultaten",
"View Result from **{{NAME}}**": "", "View Result from **{{NAME}}**": "",
"Visibility": "Zichtbaarheid", "Visibility": "Zichtbaarheid",
"Visible to all users": "",
"Vision": "", "Vision": "",
"Voice": "Stem", "Voice": "Stem",
"Voice Input": "Steminvoer", "Voice Input": "Steminvoer",
@ -1748,6 +1776,7 @@
"What are you trying to achieve?": "Wat probeer je te bereiken?", "What are you trying to achieve?": "Wat probeer je te bereiken?",
"What are you working on?": "Waar werk je aan?", "What are you working on?": "Waar werk je aan?",
"What's New in": "Wat is nieuw in", "What's New in": "Wat is nieuw in",
"What's on your mind?": "",
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Als dit is ingeschakeld, reageert het model op elk chatbericht in real-time, waarbij een reactie wordt gegenereerd zodra de gebruiker een bericht stuurt. Deze modus is handig voor live chat-toepassingen, maar kan de prestaties op langzamere hardware beïnvloeden.", "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Als dit is ingeschakeld, reageert het model op elk chatbericht in real-time, waarbij een reactie wordt gegenereerd zodra de gebruiker een bericht stuurt. Deze modus is handig voor live chat-toepassingen, maar kan de prestaties op langzamere hardware beïnvloeden.",
"wherever you are": "waar je ook bent", "wherever you are": "waar je ook bent",
"Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "",

View file

@ -18,11 +18,15 @@
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
"{{model}} download has been canceled": "", "{{model}} download has been canceled": "",
"{{NAMES}} reacted with {{REACTION}}": "",
"{{user}}'s Chats": "{{user}} ਦੀਆਂ ਗੱਲਾਂ", "{{user}}'s Chats": "{{user}} ਦੀਆਂ ਗੱਲਾਂ",
"{{webUIName}} Backend Required": "{{webUIName}} ਬੈਕਐਂਡ ਲੋੜੀਂਦਾ ਹੈ", "{{webUIName}} Backend Required": "{{webUIName}} ਬੈਕਐਂਡ ਲੋੜੀਂਦਾ ਹੈ",
"*Prompt node ID(s) are required for image generation": "", "*Prompt node ID(s) are required for image generation": "",
"1 Source": "", "1 Source": "",
"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.": "", "A new version (v{{LATEST_VERSION}}) is now available.": "",
"A private conversation between you and selected users": "",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "ਚੈਟਾਂ ਅਤੇ ਵੈੱਬ ਖੋਜ ਪੁੱਛਗਿੱਛਾਂ ਵਾਸਤੇ ਸਿਰਲੇਖ ਤਿਆਰ ਕਰਨ ਵਰਗੇ ਕਾਰਜ ਾਂ ਨੂੰ ਕਰਦੇ ਸਮੇਂ ਇੱਕ ਕਾਰਜ ਮਾਡਲ ਦੀ ਵਰਤੋਂ ਕੀਤੀ ਜਾਂਦੀ ਹੈ", "A task model is used when performing tasks such as generating titles for chats and web search queries": "ਚੈਟਾਂ ਅਤੇ ਵੈੱਬ ਖੋਜ ਪੁੱਛਗਿੱਛਾਂ ਵਾਸਤੇ ਸਿਰਲੇਖ ਤਿਆਰ ਕਰਨ ਵਰਗੇ ਕਾਰਜ ਾਂ ਨੂੰ ਕਰਦੇ ਸਮੇਂ ਇੱਕ ਕਾਰਜ ਮਾਡਲ ਦੀ ਵਰਤੋਂ ਕੀਤੀ ਜਾਂਦੀ ਹੈ",
"a user": "ਇੱਕ ਉਪਭੋਗਤਾ", "a user": "ਇੱਕ ਉਪਭੋਗਤਾ",
"About": "ਬਾਰੇ", "About": "ਬਾਰੇ",
@ -53,7 +57,8 @@
"Add Custom Prompt": "", "Add Custom Prompt": "",
"Add Details": "", "Add Details": "",
"Add Files": "ਫਾਈਲਾਂ ਸ਼ਾਮਲ ਕਰੋ", "Add Files": "ਫਾਈਲਾਂ ਸ਼ਾਮਲ ਕਰੋ",
"Add Group": "", "Add Member": "",
"Add Members": "",
"Add Memory": "ਮਿਹਾਨ ਸ਼ਾਮਲ ਕਰੋ", "Add Memory": "ਮਿਹਾਨ ਸ਼ਾਮਲ ਕਰੋ",
"Add Model": "ਮਾਡਲ ਸ਼ਾਮਲ ਕਰੋ", "Add Model": "ਮਾਡਲ ਸ਼ਾਮਲ ਕਰੋ",
"Add Reaction": "", "Add Reaction": "",
@ -252,6 +257,7 @@
"Citations": "", "Citations": "",
"Clear memory": "", "Clear memory": "",
"Clear Memory": "", "Clear Memory": "",
"Clear status": "",
"click here": "", "click here": "",
"Click here for filter guides.": "", "Click here for filter guides.": "",
"Click here for help.": "ਮਦਦ ਲਈ ਇੱਥੇ ਕਲਿੱਕ ਕਰੋ।", "Click here for help.": "ਮਦਦ ਲਈ ਇੱਥੇ ਕਲਿੱਕ ਕਰੋ।",
@ -288,6 +294,7 @@
"Code Interpreter": "", "Code Interpreter": "",
"Code Interpreter Engine": "", "Code Interpreter Engine": "",
"Code Interpreter Prompt Template": "", "Code Interpreter Prompt Template": "",
"Collaboration channel where people join as members": "",
"Collapse": "", "Collapse": "",
"Collection": "ਸੰਗ੍ਰਹਿ", "Collection": "ਸੰਗ੍ਰਹਿ",
"Color": "", "Color": "",
@ -447,6 +454,7 @@
"Discover, download, and explore custom prompts": "ਕਸਟਮ ਪ੍ਰੰਪਟਾਂ ਨੂੰ ਖੋਜੋ, ਡਾਊਨਲੋਡ ਕਰੋ ਅਤੇ ਪੜਚੋਲ ਕਰੋ", "Discover, download, and explore custom prompts": "ਕਸਟਮ ਪ੍ਰੰਪਟਾਂ ਨੂੰ ਖੋਜੋ, ਡਾਊਨਲੋਡ ਕਰੋ ਅਤੇ ਪੜਚੋਲ ਕਰੋ",
"Discover, download, and explore custom tools": "", "Discover, download, and explore custom tools": "",
"Discover, download, and explore model presets": "ਮਾਡਲ ਪ੍ਰੀਸੈਟਾਂ ਨੂੰ ਖੋਜੋ, ਡਾਊਨਲੋਡ ਕਰੋ ਅਤੇ ਪੜਚੋਲ ਕਰੋ", "Discover, download, and explore model presets": "ਮਾਡਲ ਪ੍ਰੀਸੈਟਾਂ ਨੂੰ ਖੋਜੋ, ਡਾਊਨਲੋਡ ਕਰੋ ਅਤੇ ਪੜਚੋਲ ਕਰੋ",
"Discussion channel where access is based on groups and permissions": "",
"Display": "", "Display": "",
"Display chat title in tab": "", "Display chat title in tab": "",
"Display Emoji in Call": "", "Display Emoji in Call": "",
@ -463,6 +471,7 @@
"Document": "ਡਾਕੂਮੈਂਟ", "Document": "ਡਾਕੂਮੈਂਟ",
"Document Intelligence": "", "Document Intelligence": "",
"Document Intelligence endpoint required.": "", "Document Intelligence endpoint required.": "",
"Document Intelligence Model": "",
"Documentation": "", "Documentation": "",
"Documents": "ਡਾਕੂਮੈਂਟ", "Documents": "ਡਾਕੂਮੈਂਟ",
"does not make any external connections, and your data stays securely on your locally hosted server.": "ਕੋਈ ਬਾਹਰੀ ਕਨੈਕਸ਼ਨ ਨਹੀਂ ਬਣਾਉਂਦਾ, ਅਤੇ ਤੁਹਾਡਾ ਡਾਟਾ ਤੁਹਾਡੇ ਸਥਾਨਕ ਸਰਵਰ 'ਤੇ ਸੁਰੱਖਿਅਤ ਰਹਿੰਦਾ ਹੈ।", "does not make any external connections, and your data stays securely on your locally hosted server.": "ਕੋਈ ਬਾਹਰੀ ਕਨੈਕਸ਼ਨ ਨਹੀਂ ਬਣਾਉਂਦਾ, ਅਤੇ ਤੁਹਾਡਾ ਡਾਟਾ ਤੁਹਾਡੇ ਸਥਾਨਕ ਸਰਵਰ 'ਤੇ ਸੁਰੱਖਿਅਤ ਰਹਿੰਦਾ ਹੈ।",
@ -485,12 +494,15 @@
"e.g. \"json\" or a JSON schema": "", "e.g. \"json\" or a JSON schema": "",
"e.g. 60": "", "e.g. 60": "",
"e.g. A filter to remove profanity from text": "", "e.g. A filter to remove profanity from text": "",
"e.g. about the Roman Empire": "",
"e.g. en": "", "e.g. en": "",
"e.g. My Filter": "", "e.g. My Filter": "",
"e.g. My Tools": "", "e.g. My Tools": "",
"e.g. my_filter": "", "e.g. my_filter": "",
"e.g. my_tools": "", "e.g. my_tools": "",
"e.g. pdf, docx, txt": "", "e.g. pdf, docx, txt": "",
"e.g. Tell me a fun fact": "",
"e.g. Tell me a fun fact about the Roman Empire": "",
"e.g. Tools for performing various operations": "", "e.g. Tools for performing various operations": "",
"e.g., 3, 4, 5 (leave blank for default)": "", "e.g., 3, 4, 5 (leave blank for default)": "",
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "", "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
@ -564,6 +576,7 @@
"Enter Docling Server URL": "", "Enter Docling Server URL": "",
"Enter Document Intelligence Endpoint": "", "Enter Document Intelligence Endpoint": "",
"Enter Document Intelligence Key": "", "Enter Document Intelligence Key": "",
"Enter Document Intelligence Model": "",
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "", "Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
"Enter Exa API Key": "", "Enter Exa API Key": "",
"Enter External Document Loader API Key": "", "Enter External Document Loader API Key": "",
@ -689,7 +702,6 @@
"Export Config to JSON File": "", "Export Config to JSON File": "",
"Export Models": "", "Export Models": "",
"Export Presets": "", "Export Presets": "",
"Export Prompt Suggestions": "",
"Export Prompts": "", "Export Prompts": "",
"Export to CSV": "", "Export to CSV": "",
"Export Tools": "", "Export Tools": "",
@ -704,6 +716,8 @@
"External Web Search URL": "", "External Web Search URL": "",
"Fade Effect for Streaming Text": "", "Fade Effect for Streaming Text": "",
"Failed to add file.": "", "Failed to add file.": "",
"Failed to add members": "",
"Failed to clear status": "",
"Failed to connect to {{URL}} OpenAPI tool server": "", "Failed to connect to {{URL}} OpenAPI tool server": "",
"Failed to copy link": "", "Failed to copy link": "",
"Failed to create API Key.": "API ਕੁੰਜੀ ਬਣਾਉਣ ਵਿੱਚ ਅਸਫਲ।", "Failed to create API Key.": "API ਕੁੰਜੀ ਬਣਾਉਣ ਵਿੱਚ ਅਸਫਲ।",
@ -717,12 +731,14 @@
"Failed to load file content.": "", "Failed to load file content.": "",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to read clipboard contents": "ਕਲਿੱਪਬੋਰਡ ਸਮੱਗਰੀ ਪੜ੍ਹਣ ਵਿੱਚ ਅਸਫਲ", "Failed to read clipboard contents": "ਕਲਿੱਪਬੋਰਡ ਸਮੱਗਰੀ ਪੜ੍ਹਣ ਵਿੱਚ ਅਸਫਲ",
"Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
"Failed to render visualization": "", "Failed to render visualization": "",
"Failed to save connections": "", "Failed to save connections": "",
"Failed to save conversation": "ਗੱਲਬਾਤ ਸੰਭਾਲਣ ਵਿੱਚ ਅਸਫਲ", "Failed to save conversation": "ਗੱਲਬਾਤ ਸੰਭਾਲਣ ਵਿੱਚ ਅਸਫਲ",
"Failed to save models configuration": "", "Failed to save models configuration": "",
"Failed to update settings": "", "Failed to update settings": "",
"Failed to update status": "",
"Failed to upload file.": "", "Failed to upload file.": "",
"Features": "", "Features": "",
"Features Permissions": "", "Features Permissions": "",
@ -816,11 +832,13 @@
"Google PSE Engine Id": "ਗੂਗਲ PSE ਇੰਜਣ ID", "Google PSE Engine Id": "ਗੂਗਲ PSE ਇੰਜਣ ID",
"Gravatar": "", "Gravatar": "",
"Group": "ਗਰੁੱਪ", "Group": "ਗਰੁੱਪ",
"Group Channel": "",
"Group created successfully": "", "Group created successfully": "",
"Group deleted successfully": "", "Group deleted successfully": "",
"Group Description": "", "Group Description": "",
"Group Name": "", "Group Name": "",
"Group updated successfully": "", "Group updated successfully": "",
"groups": "",
"Groups": "", "Groups": "",
"H1": "", "H1": "",
"H2": "", "H2": "",
@ -875,7 +893,6 @@
"Import Models": "", "Import Models": "",
"Import Notes": "", "Import Notes": "",
"Import Presets": "", "Import Presets": "",
"Import Prompt Suggestions": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
"Import Tools": "", "Import Tools": "",
@ -1011,6 +1028,9 @@
"MCP": "", "MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Medium": "", "Medium": "",
"Member removed successfully": "",
"Members": "",
"Members added successfully": "",
"Memories accessible by LLMs will be shown here.": "LLMs ਲਈ ਸਮਰੱਥ ਕਾਰਨ ਇੱਕ ਸੂਚਨਾ ਨੂੰ ਸ਼ਾਮਲ ਕੀਤਾ ਗਿਆ ਹੈ।", "Memories accessible by LLMs will be shown here.": "LLMs ਲਈ ਸਮਰੱਥ ਕਾਰਨ ਇੱਕ ਸੂਚਨਾ ਨੂੰ ਸ਼ਾਮਲ ਕੀਤਾ ਗਿਆ ਹੈ।",
"Memory": "ਮੀਮਰ", "Memory": "ਮੀਮਰ",
"Memory added successfully": "", "Memory added successfully": "",
@ -1110,6 +1130,7 @@
"No models selected": "", "No models selected": "",
"No Notes": "", "No Notes": "",
"No notes found": "", "No notes found": "",
"No pinned messages": "",
"No prompts found": "", "No prompts found": "",
"No results": "ਕੋਈ ਨਤੀਜੇ ਨਹੀਂ ਮਿਲੇ", "No results": "ਕੋਈ ਨਤੀਜੇ ਨਹੀਂ ਮਿਲੇ",
"No results found": "ਕੋਈ ਨਤੀਜੇ ਨਹੀਂ ਮਿਲੇ", "No results found": "ਕੋਈ ਨਤੀਜੇ ਨਹੀਂ ਮਿਲੇ",
@ -1157,6 +1178,7 @@
"Only alphanumeric characters and hyphens are allowed in the command string.": "ਕਮਾਂਡ ਸਤਰ ਵਿੱਚ ਸਿਰਫ਼ ਅਲਫ਼ਾਨਯੂਮੈਰਿਕ ਅੱਖਰ ਅਤੇ ਹਾਈਫਨ ਦੀ ਆਗਿਆ ਹੈ।", "Only alphanumeric characters and hyphens are allowed in the command string.": "ਕਮਾਂਡ ਸਤਰ ਵਿੱਚ ਸਿਰਫ਼ ਅਲਫ਼ਾਨਯੂਮੈਰਿਕ ਅੱਖਰ ਅਤੇ ਹਾਈਫਨ ਦੀ ਆਗਿਆ ਹੈ।",
"Only can be triggered when the chat input is in focus.": "", "Only can be triggered when the chat input is in focus.": "",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "", "Only collections can be edited, create a new knowledge base to edit/add documents.": "",
"Only invited users can access": "",
"Only markdown files are allowed": "", "Only markdown files are allowed": "",
"Only select users and groups with permission can access": "", "Only select users and groups with permission can access": "",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "ਓਹੋ! ਲੱਗਦਾ ਹੈ ਕਿ URL ਗਲਤ ਹੈ। ਕਿਰਪਾ ਕਰਕੇ ਦੁਬਾਰਾ ਜਾਂਚ ਕਰੋ ਅਤੇ ਮੁੜ ਕੋਸ਼ਿਸ਼ ਕਰੋ।", "Oops! Looks like the URL is invalid. Please double-check and try again.": "ਓਹੋ! ਲੱਗਦਾ ਹੈ ਕਿ URL ਗਲਤ ਹੈ। ਕਿਰਪਾ ਕਰਕੇ ਦੁਬਾਰਾ ਜਾਂਚ ਕਰੋ ਅਤੇ ਮੁੜ ਕੋਸ਼ਿਸ਼ ਕਰੋ।",
@ -1219,6 +1241,7 @@
"Personalization": "ਪਰਸੋਨਲਿਸ਼ਮ", "Personalization": "ਪਰਸੋਨਲਿਸ਼ਮ",
"Pin": "", "Pin": "",
"Pinned": "", "Pinned": "",
"Pinned Messages": "",
"Pioneer insights": "", "Pioneer insights": "",
"Pipe": "", "Pipe": "",
"Pipeline deleted successfully": "", "Pipeline deleted successfully": "",
@ -1261,9 +1284,9 @@
"Previous 7 days": "ਪਿਛਲੇ 7 ਦਿਨ", "Previous 7 days": "ਪਿਛਲੇ 7 ਦਿਨ",
"Previous message": "", "Previous message": "",
"Private": "", "Private": "",
"Private conversation between selected users": "",
"Profile": "ਪ੍ਰੋਫ਼ਾਈਲ", "Profile": "ਪ੍ਰੋਫ਼ਾਈਲ",
"Prompt": "", "Prompt": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "ਪ੍ਰੰਪਟ (ਉਦਾਹਰਣ ਲਈ ਮੈਨੂੰ ਰੋਮਨ ਸਾਮਰਾਜ ਬਾਰੇ ਇੱਕ ਮਜ਼ੇਦਾਰ ਤੱਥ ਦੱਸੋ)",
"Prompt Autocompletion": "", "Prompt Autocompletion": "",
"Prompt Content": "ਪ੍ਰੰਪਟ ਸਮੱਗਰੀ", "Prompt Content": "ਪ੍ਰੰਪਟ ਸਮੱਗਰੀ",
"Prompt created successfully": "", "Prompt created successfully": "",
@ -1449,6 +1472,7 @@
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "", "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
"Set Voice": "ਆਵਾਜ਼ ਸੈੱਟ ਕਰੋ", "Set Voice": "ਆਵਾਜ਼ ਸੈੱਟ ਕਰੋ",
"Set whisper model": "", "Set whisper model": "",
"Set your status": "",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "", "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "", "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets how far back for the model to look back to prevent repetition.": "", "Sets how far back for the model to look back to prevent repetition.": "",
@ -1501,6 +1525,9 @@
"Start a new conversation": "", "Start a new conversation": "",
"Start of the channel": "ਚੈਨਲ ਦੀ ਸ਼ੁਰੂਆਤ", "Start of the channel": "ਚੈਨਲ ਦੀ ਸ਼ੁਰੂਆਤ",
"Start Tag": "", "Start Tag": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Steps": "", "Steps": "",
@ -1516,7 +1543,7 @@
"STT Model": "", "STT Model": "",
"STT Settings": "STT ਸੈਟਿੰਗਾਂ", "STT Settings": "STT ਸੈਟਿੰਗਾਂ",
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "ਉਪਸਿਰਲੇਖ (ਉਦਾਹਰਣ ਲਈ ਰੋਮਨ ਸਾਮਰਾਜ ਬਾਰੇ)", "Subtitle": "",
"Success": "ਸਫਲਤਾ", "Success": "ਸਫਲਤਾ",
"Successfully imported {{userCount}} users.": "", "Successfully imported {{userCount}} users.": "",
"Successfully updated.": "ਸਫਲਤਾਪੂਰਵਕ ਅੱਪਡੇਟ ਕੀਤਾ ਗਿਆ।", "Successfully updated.": "ਸਫਲਤਾਪੂਰਵਕ ਅੱਪਡੇਟ ਕੀਤਾ ਗਿਆ।",
@ -1599,7 +1626,6 @@
"Tika Server URL required.": "", "Tika Server URL required.": "",
"Tiktoken": "", "Tiktoken": "",
"Title": "ਸਿਰਲੇਖ", "Title": "ਸਿਰਲੇਖ",
"Title (e.g. Tell me a fun fact)": "ਸਿਰਲੇਖ (ਉਦਾਹਰਣ ਲਈ ਮੈਨੂੰ ਇੱਕ ਮਜ਼ੇਦਾਰ ਤੱਥ ਦੱਸੋ)",
"Title Auto-Generation": "ਸਿਰਲੇਖ ਆਟੋ-ਜਨਰੇਸ਼ਨ", "Title Auto-Generation": "ਸਿਰਲੇਖ ਆਟੋ-ਜਨਰੇਸ਼ਨ",
"Title cannot be an empty string.": "ਸਿਰਲੇਖ ਖਾਲੀ ਸਤਰ ਨਹੀਂ ਹੋ ਸਕਦਾ।", "Title cannot be an empty string.": "ਸਿਰਲੇਖ ਖਾਲੀ ਸਤਰ ਨਹੀਂ ਹੋ ਸਕਦਾ।",
"Title Generation": "", "Title Generation": "",
@ -1668,6 +1694,7 @@
"Update and Copy Link": "ਅੱਪਡੇਟ ਕਰੋ ਅਤੇ ਲਿੰਕ ਕਾਪੀ ਕਰੋ", "Update and Copy Link": "ਅੱਪਡੇਟ ਕਰੋ ਅਤੇ ਲਿੰਕ ਕਾਪੀ ਕਰੋ",
"Update for the latest features and improvements.": "", "Update for the latest features and improvements.": "",
"Update password": "ਪਾਸਵਰਡ ਅੱਪਡੇਟ ਕਰੋ", "Update password": "ਪਾਸਵਰਡ ਅੱਪਡੇਟ ਕਰੋ",
"Update your status": "",
"Updated": "", "Updated": "",
"Updated at": "", "Updated at": "",
"Updated At": "", "Updated At": "",
@ -1721,6 +1748,7 @@
"View Replies": "", "View Replies": "",
"View Result from **{{NAME}}**": "", "View Result from **{{NAME}}**": "",
"Visibility": "", "Visibility": "",
"Visible to all users": "",
"Vision": "", "Vision": "",
"Voice": "", "Voice": "",
"Voice Input": "", "Voice Input": "",
@ -1748,6 +1776,7 @@
"What are you trying to achieve?": "", "What are you trying to achieve?": "",
"What are you working on?": "", "What are you working on?": "",
"What's New in": "ਨਵਾਂ ਕੀ ਹੈ", "What's New in": "ਨਵਾਂ ਕੀ ਹੈ",
"What's on your mind?": "",
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "", "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
"wherever you are": "", "wherever you are": "",
"Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "",

View file

@ -18,11 +18,15 @@
"{{COUNT}} words": "{{COUNT}} słów", "{{COUNT}} words": "{{COUNT}} słów",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "",
"{{model}} download has been canceled": "", "{{model}} download has been canceled": "",
"{{NAMES}} reacted with {{REACTION}}": "",
"{{user}}'s Chats": "Czaty użytkownika {{user}}", "{{user}}'s Chats": "Czaty użytkownika {{user}}",
"{{webUIName}} Backend Required": "Backend dla {{webUIName}} jest wymagany", "{{webUIName}} Backend Required": "Backend dla {{webUIName}} jest wymagany",
"*Prompt node ID(s) are required for image generation": "Wymagane są identyfikatory węzłów wyzwalających do generowania obrazów.", "*Prompt node ID(s) are required for image generation": "Wymagane są identyfikatory węzłów wyzwalających do generowania obrazów.",
"1 Source": "", "1 Source": "",
"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.": "Dostępna jest nowa wersja (v{{LATEST_VERSION}}).", "A new version (v{{LATEST_VERSION}}) is now available.": "Dostępna jest nowa wersja (v{{LATEST_VERSION}}).",
"A private conversation between you and selected users": "",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Model zadań jest wykorzystywany podczas realizacji zadań, takich jak generowanie tytułów rozmów i zapytań wyszukiwania internetowego.", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Model zadań jest wykorzystywany podczas realizacji zadań, takich jak generowanie tytułów rozmów i zapytań wyszukiwania internetowego.",
"a user": "użytkownik", "a user": "użytkownik",
"About": "O nas", "About": "O nas",
@ -53,7 +57,8 @@
"Add Custom Prompt": "", "Add Custom Prompt": "",
"Add Details": "", "Add Details": "",
"Add Files": "Dodaj pliki", "Add Files": "Dodaj pliki",
"Add Group": "Dodaj grupę", "Add Member": "",
"Add Members": "",
"Add Memory": "Dodaj pamięć", "Add Memory": "Dodaj pamięć",
"Add Model": "Dodaj model", "Add Model": "Dodaj model",
"Add Reaction": "Dodaj reakcję", "Add Reaction": "Dodaj reakcję",
@ -252,6 +257,7 @@
"Citations": "Cytaty", "Citations": "Cytaty",
"Clear memory": "Wyczyść pamięć", "Clear memory": "Wyczyść pamięć",
"Clear Memory": "Wyczyść pamięć", "Clear Memory": "Wyczyść pamięć",
"Clear status": "",
"click here": "kliknij tutaj", "click here": "kliknij tutaj",
"Click here for filter guides.": "Kliknij tutaj, aby uzyskać podpowiedź do filtrów.", "Click here for filter guides.": "Kliknij tutaj, aby uzyskać podpowiedź do filtrów.",
"Click here for help.": "Kliknij tutaj, aby uzyskać pomoc.", "Click here for help.": "Kliknij tutaj, aby uzyskać pomoc.",
@ -288,6 +294,7 @@
"Code Interpreter": "Interpreter kodu", "Code Interpreter": "Interpreter kodu",
"Code Interpreter Engine": "Silnik interpretatora kodu", "Code Interpreter Engine": "Silnik interpretatora kodu",
"Code Interpreter Prompt Template": "Szablon promptu interpretera kodu", "Code Interpreter Prompt Template": "Szablon promptu interpretera kodu",
"Collaboration channel where people join as members": "",
"Collapse": "", "Collapse": "",
"Collection": "Kolekcja", "Collection": "Kolekcja",
"Color": "Kolor", "Color": "Kolor",
@ -447,6 +454,7 @@
"Discover, download, and explore custom prompts": "Odkryj, pobierz i eksploruj niestandardowe prompty", "Discover, download, and explore custom prompts": "Odkryj, pobierz i eksploruj niestandardowe prompty",
"Discover, download, and explore custom tools": "Odkryj, pobierz i eksploruj niestandardowe narzędzia", "Discover, download, and explore custom tools": "Odkryj, pobierz i eksploruj niestandardowe narzędzia",
"Discover, download, and explore model presets": "Odkryj, pobierz i badaj ustawienia modeli", "Discover, download, and explore model presets": "Odkryj, pobierz i badaj ustawienia modeli",
"Discussion channel where access is based on groups and permissions": "",
"Display": "Wyświetl", "Display": "Wyświetl",
"Display chat title in tab": "", "Display chat title in tab": "",
"Display Emoji in Call": "Wyświetl emoji w połączeniu", "Display Emoji in Call": "Wyświetl emoji w połączeniu",
@ -463,6 +471,7 @@
"Document": "Dokument", "Document": "Dokument",
"Document Intelligence": "", "Document Intelligence": "",
"Document Intelligence endpoint required.": "", "Document Intelligence endpoint required.": "",
"Document Intelligence Model": "",
"Documentation": "Dokumentacja", "Documentation": "Dokumentacja",
"Documents": "Dokumenty", "Documents": "Dokumenty",
"does not make any external connections, and your data stays securely on your locally hosted server.": "nie nawiązuje żadnych zewnętrznych połączeń, a Twoje dane pozostają bezpiecznie na Twoim lokalnie hostowanym serwerze.", "does not make any external connections, and your data stays securely on your locally hosted server.": "nie nawiązuje żadnych zewnętrznych połączeń, a Twoje dane pozostają bezpiecznie na Twoim lokalnie hostowanym serwerze.",
@ -485,12 +494,15 @@
"e.g. \"json\" or a JSON schema": "", "e.g. \"json\" or a JSON schema": "",
"e.g. 60": "", "e.g. 60": "",
"e.g. A filter to remove profanity from text": "np. Filtr do usuwania wulgaryzmów z tekstu", "e.g. A filter to remove profanity from text": "np. Filtr do usuwania wulgaryzmów z tekstu",
"e.g. about the Roman Empire": "",
"e.g. en": "", "e.g. en": "",
"e.g. My Filter": "np. Mój filtr", "e.g. My Filter": "np. Mój filtr",
"e.g. My Tools": "np. Moje narzędzia", "e.g. My Tools": "np. Moje narzędzia",
"e.g. my_filter": "np. moj_filtr", "e.g. my_filter": "np. moj_filtr",
"e.g. my_tools": "np. moje_narzędzia", "e.g. my_tools": "np. moje_narzędzia",
"e.g. pdf, docx, txt": "", "e.g. pdf, docx, txt": "",
"e.g. Tell me a fun fact": "",
"e.g. Tell me a fun fact about the Roman Empire": "",
"e.g. Tools for performing various operations": "np. Narzędzia do wykonywania różnych operacji", "e.g. Tools for performing various operations": "np. Narzędzia do wykonywania różnych operacji",
"e.g., 3, 4, 5 (leave blank for default)": "np. 3, 4, 5 (zostaw puste dla domyślnego)", "e.g., 3, 4, 5 (leave blank for default)": "np. 3, 4, 5 (zostaw puste dla domyślnego)",
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "", "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
@ -564,6 +576,7 @@
"Enter Docling Server URL": "", "Enter Docling Server URL": "",
"Enter Document Intelligence Endpoint": "", "Enter Document Intelligence Endpoint": "",
"Enter Document Intelligence Key": "", "Enter Document Intelligence Key": "",
"Enter Document Intelligence Model": "",
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "", "Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
"Enter Exa API Key": "Wprowadź klucz API Exa", "Enter Exa API Key": "Wprowadź klucz API Exa",
"Enter External Document Loader API Key": "", "Enter External Document Loader API Key": "",
@ -689,7 +702,6 @@
"Export Config to JSON File": "Eksportuj konfigurację do pliku JSON", "Export Config to JSON File": "Eksportuj konfigurację do pliku JSON",
"Export Models": "", "Export Models": "",
"Export Presets": "Wyeksportuj ustawienia domyślne", "Export Presets": "Wyeksportuj ustawienia domyślne",
"Export Prompt Suggestions": "",
"Export Prompts": "", "Export Prompts": "",
"Export to CSV": "Eksport do CSV", "Export to CSV": "Eksport do CSV",
"Export Tools": "", "Export Tools": "",
@ -704,6 +716,8 @@
"External Web Search URL": "", "External Web Search URL": "",
"Fade Effect for Streaming Text": "", "Fade Effect for Streaming Text": "",
"Failed to add file.": "Nie udało się dodać pliku.", "Failed to add file.": "Nie udało się dodać pliku.",
"Failed to add members": "",
"Failed to clear status": "",
"Failed to connect to {{URL}} OpenAPI tool server": "", "Failed to connect to {{URL}} OpenAPI tool server": "",
"Failed to copy link": "Nie udało się skopiować linku", "Failed to copy link": "Nie udało się skopiować linku",
"Failed to create API Key.": "Nie udało się wygenerować klucza API.", "Failed to create API Key.": "Nie udało się wygenerować klucza API.",
@ -717,12 +731,14 @@
"Failed to load file content.": "Nie udało się załadować zawartości pliku.", "Failed to load file content.": "Nie udało się załadować zawartości pliku.",
"Failed to move chat": "", "Failed to move chat": "",
"Failed to read clipboard contents": "Nie udało się odczytać zawartości schowka", "Failed to read clipboard contents": "Nie udało się odczytać zawartości schowka",
"Failed to remove member": "",
"Failed to render diagram": "", "Failed to render diagram": "",
"Failed to render visualization": "", "Failed to render visualization": "",
"Failed to save connections": "Nie udałio się zapisać połączeń", "Failed to save connections": "Nie udałio się zapisać połączeń",
"Failed to save conversation": "Nie udało się zapisać rozmowy", "Failed to save conversation": "Nie udało się zapisać rozmowy",
"Failed to save models configuration": "Nie udało się zapisać konfiguracji modelu", "Failed to save models configuration": "Nie udało się zapisać konfiguracji modelu",
"Failed to update settings": "Nie udało się zaktualizować ustawień", "Failed to update settings": "Nie udało się zaktualizować ustawień",
"Failed to update status": "",
"Failed to upload file.": "Nie udało się przesłać pliku.", "Failed to upload file.": "Nie udało się przesłać pliku.",
"Features": "Funkcje", "Features": "Funkcje",
"Features Permissions": "Uprawnienia do funkcji", "Features Permissions": "Uprawnienia do funkcji",
@ -816,11 +832,13 @@
"Google PSE Engine Id": "Identyfikator silnika Google PSE", "Google PSE Engine Id": "Identyfikator silnika Google PSE",
"Gravatar": "", "Gravatar": "",
"Group": "Grupa", "Group": "Grupa",
"Group Channel": "",
"Group created successfully": "Grupa utworzona pomyślnie", "Group created successfully": "Grupa utworzona pomyślnie",
"Group deleted successfully": "Grupa została usunięta pomyślnie", "Group deleted successfully": "Grupa została usunięta pomyślnie",
"Group Description": "Opis grupy", "Group Description": "Opis grupy",
"Group Name": "Nazwa grupy", "Group Name": "Nazwa grupy",
"Group updated successfully": "Grupa zaktualizowana pomyślnie", "Group updated successfully": "Grupa zaktualizowana pomyślnie",
"groups": "",
"Groups": "Grupy", "Groups": "Grupy",
"H1": "", "H1": "",
"H2": "", "H2": "",
@ -875,7 +893,6 @@
"Import Models": "", "Import Models": "",
"Import Notes": "Importuj notatki", "Import Notes": "Importuj notatki",
"Import Presets": "Importuj ustawienia", "Import Presets": "Importuj ustawienia",
"Import Prompt Suggestions": "",
"Import Prompts": "", "Import Prompts": "",
"Import successful": "", "Import successful": "",
"Import Tools": "", "Import Tools": "",
@ -1011,6 +1028,9 @@
"MCP": "", "MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "",
"Medium": "", "Medium": "",
"Member removed successfully": "",
"Members": "",
"Members added successfully": "",
"Memories accessible by LLMs will be shown here.": "Wspomnienia dostępne za pomocą LLM zostaną wyświetlone tutaj.", "Memories accessible by LLMs will be shown here.": "Wspomnienia dostępne za pomocą LLM zostaną wyświetlone tutaj.",
"Memory": "Pamięć", "Memory": "Pamięć",
"Memory added successfully": "Pamięć dodana pomyślnie", "Memory added successfully": "Pamięć dodana pomyślnie",
@ -1110,6 +1130,7 @@
"No models selected": "Brak wybranych modeli", "No models selected": "Brak wybranych modeli",
"No Notes": "Brak notatek", "No Notes": "Brak notatek",
"No notes found": "", "No notes found": "",
"No pinned messages": "",
"No prompts found": "", "No prompts found": "",
"No results": "Brak wyników", "No results": "Brak wyników",
"No results found": "Brak wyników", "No results found": "Brak wyników",
@ -1157,6 +1178,7 @@
"Only alphanumeric characters and hyphens are allowed in the command string.": "W komendzie dozwolone są wyłącznie znaki alfanumeryczne i myślniki.", "Only alphanumeric characters and hyphens are allowed in the command string.": "W komendzie dozwolone są wyłącznie znaki alfanumeryczne i myślniki.",
"Only can be triggered when the chat input is in focus.": "", "Only can be triggered when the chat input is in focus.": "",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Tylko kolekcje można edytować, utwórz nową bazę wiedzy, aby edytować/dodawać dokumenty.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Tylko kolekcje można edytować, utwórz nową bazę wiedzy, aby edytować/dodawać dokumenty.",
"Only invited users can access": "",
"Only markdown files are allowed": "", "Only markdown files are allowed": "",
"Only select users and groups with permission can access": "Tylko wybrani użytkownicy i grupy z uprawnieniami mogą uzyskać dostęp.", "Only select users and groups with permission can access": "Tylko wybrani użytkownicy i grupy z uprawnieniami mogą uzyskać dostęp.",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "Oops! Wygląda na to, że podany URL jest nieprawidłowy. Proszę sprawdzić go ponownie i spróbować jeszcze raz.", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Oops! Wygląda na to, że podany URL jest nieprawidłowy. Proszę sprawdzić go ponownie i spróbować jeszcze raz.",
@ -1219,6 +1241,7 @@
"Personalization": "Personalizacja", "Personalization": "Personalizacja",
"Pin": "Przypnij", "Pin": "Przypnij",
"Pinned": "Przypięty", "Pinned": "Przypięty",
"Pinned Messages": "",
"Pioneer insights": "Pionierskie spostrzeżenia", "Pioneer insights": "Pionierskie spostrzeżenia",
"Pipe": "", "Pipe": "",
"Pipeline deleted successfully": "Przepływ usunięty pomyślnie", "Pipeline deleted successfully": "Przepływ usunięty pomyślnie",
@ -1261,9 +1284,9 @@
"Previous 7 days": "Ostatnie 7 dni", "Previous 7 days": "Ostatnie 7 dni",
"Previous message": "Poprzednia wiadomość", "Previous message": "Poprzednia wiadomość",
"Private": "Prywatne", "Private": "Prywatne",
"Private conversation between selected users": "",
"Profile": "Profil", "Profile": "Profil",
"Prompt": "Wprowadź prompt: ", "Prompt": "Wprowadź prompt: ",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (np. podaj ciekawostkę o Imperium Rzymskim)",
"Prompt Autocompletion": "Autouzupełnianie promptu", "Prompt Autocompletion": "Autouzupełnianie promptu",
"Prompt Content": "Treść promptu", "Prompt Content": "Treść promptu",
"Prompt created successfully": "Prompt został utworzony pomyślnie", "Prompt created successfully": "Prompt został utworzony pomyślnie",
@ -1451,6 +1474,7 @@
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Ustaw liczbę wątków pracowników używanych do obliczeń. Ta opcja kontroluje, ile wątków jest używanych do jednoczesnego przetwarzania przychodzących żądań. Zwiększenie tej wartości może poprawić wydajność pod wysokim obciążeniem, ale może również zużywać więcej zasobów CPU.", "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Ustaw liczbę wątków pracowników używanych do obliczeń. Ta opcja kontroluje, ile wątków jest używanych do jednoczesnego przetwarzania przychodzących żądań. Zwiększenie tej wartości może poprawić wydajność pod wysokim obciążeniem, ale może również zużywać więcej zasobów CPU.",
"Set Voice": "Ustaw głos", "Set Voice": "Ustaw głos",
"Set whisper model": "Ustaw model szeptu", "Set whisper model": "Ustaw model szeptu",
"Set your status": "",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "", "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "", "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "",
"Sets how far back for the model to look back to prevent repetition.": "", "Sets how far back for the model to look back to prevent repetition.": "",
@ -1503,6 +1527,9 @@
"Start a new conversation": "", "Start a new conversation": "",
"Start of the channel": "Początek kanału", "Start of the channel": "Początek kanału",
"Start Tag": "", "Start Tag": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
"Status Updates": "", "Status Updates": "",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Steps": "", "Steps": "",
@ -1518,7 +1545,7 @@
"STT Model": "Model STT", "STT Model": "Model STT",
"STT Settings": "Ustawienia STT", "STT Settings": "Ustawienia STT",
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Podtytuł (np. o Imperium Rzymskim)", "Subtitle": "",
"Success": "Sukces", "Success": "Sukces",
"Successfully imported {{userCount}} users.": "", "Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Uaktualniono pomyślnie.", "Successfully updated.": "Uaktualniono pomyślnie.",
@ -1601,7 +1628,6 @@
"Tika Server URL required.": "Wymagany jest adres URL serwera Tika.", "Tika Server URL required.": "Wymagany jest adres URL serwera Tika.",
"Tiktoken": "Tiktoken", "Tiktoken": "Tiktoken",
"Title": "Tytuł", "Title": "Tytuł",
"Title (e.g. Tell me a fun fact)": "Tytuł (na przykład {e.g.} Powiedz mi jakiś zabawny fakt)",
"Title Auto-Generation": "Automatyczne tworzenie tytułu", "Title Auto-Generation": "Automatyczne tworzenie tytułu",
"Title cannot be an empty string.": "Tytuł nie może być pustym stringiem.", "Title cannot be an empty string.": "Tytuł nie może być pustym stringiem.",
"Title Generation": "Generowanie tytułów", "Title Generation": "Generowanie tytułów",
@ -1670,6 +1696,7 @@
"Update and Copy Link": "Aktualizuj i kopiuj link", "Update and Copy Link": "Aktualizuj i kopiuj link",
"Update for the latest features and improvements.": "Aktualizacja do najnowszych funkcji i ulepszeń.", "Update for the latest features and improvements.": "Aktualizacja do najnowszych funkcji i ulepszeń.",
"Update password": "Zmiana hasła", "Update password": "Zmiana hasła",
"Update your status": "",
"Updated": "Zaktualizowano", "Updated": "Zaktualizowano",
"Updated at": "Aktualizacja dnia", "Updated at": "Aktualizacja dnia",
"Updated At": "Czas aktualizacji", "Updated At": "Czas aktualizacji",
@ -1723,6 +1750,7 @@
"View Replies": "Wyświetl odpowiedzi", "View Replies": "Wyświetl odpowiedzi",
"View Result from **{{NAME}}**": "", "View Result from **{{NAME}}**": "",
"Visibility": "Widoczność", "Visibility": "Widoczność",
"Visible to all users": "",
"Vision": "", "Vision": "",
"Voice": "Głos", "Voice": "Głos",
"Voice Input": "Wprowadzanie głosowe", "Voice Input": "Wprowadzanie głosowe",
@ -1750,6 +1778,7 @@
"What are you trying to achieve?": "Do czego dążysz?", "What are you trying to achieve?": "Do czego dążysz?",
"What are you working on?": "Nad czym pracujesz?", "What are you working on?": "Nad czym pracujesz?",
"What's New in": "Co nowego w", "What's New in": "Co nowego w",
"What's on your mind?": "",
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Gdy jest włączony, model będzie reagował na każdą wiadomość czatu w czasie rzeczywistym, generując odpowiedź tak szybko, jak użytkownik wyśle wiadomość. Ten tryb jest przydatny dla aplikacji czatu na żywo, ale może wpływać na wydajność na wolniejszym sprzęcie.", "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Gdy jest włączony, model będzie reagował na każdą wiadomość czatu w czasie rzeczywistym, generując odpowiedź tak szybko, jak użytkownik wyśle wiadomość. Ten tryb jest przydatny dla aplikacji czatu na żywo, ale może wpływać na wydajność na wolniejszym sprzęcie.",
"wherever you are": "gdziekolwiek jesteś", "wherever you are": "gdziekolwiek jesteś",
"Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "",

View file

@ -18,11 +18,15 @@
"{{COUNT}} words": "{{COUNT}} palavras", "{{COUNT}} words": "{{COUNT}} palavras",
"{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} às {{LOCALIZED_TIME}}", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} às {{LOCALIZED_TIME}}",
"{{model}} download has been canceled": "O download do {{model}} foi cancelado", "{{model}} download has been canceled": "O download do {{model}} foi cancelado",
"{{NAMES}} reacted with {{REACTION}}": "{{NAMES}} reagiu com {{REACTION}}",
"{{user}}'s Chats": "Chats de {{user}}", "{{user}}'s Chats": "Chats de {{user}}",
"{{webUIName}} Backend Required": "Backend {{webUIName}} necessário", "{{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", "*Prompt node ID(s) are required for image generation": "*Prompt node ID(s) são obrigatórios para gerar imagens",
"1 Source": "1 Origem", "1 Source": "1 Origem",
"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.": "Um nova versão (v{{LATEST_VERSION}}) está disponível.", "A new version (v{{LATEST_VERSION}}) is now available.": "Um nova versão (v{{LATEST_VERSION}}) está disponível.",
"A private conversation between you and selected users": "Uma conversa privada entre você e usuários selecionados.",
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Um modelo de tarefa é usado ao realizar tarefas como gerar títulos para chats e consultas de pesquisa na web", "A task model is used when performing tasks such as generating titles for chats and web search queries": "Um modelo de tarefa é usado ao realizar tarefas como gerar títulos para chats e consultas de pesquisa na web",
"a user": "um usuário", "a user": "um usuário",
"About": "Sobre", "About": "Sobre",
@ -32,7 +36,6 @@
"Accessible to all users": "Acessível para todos os usuários", "Accessible to all users": "Acessível para todos os usuários",
"Account": "Conta", "Account": "Conta",
"Account Activation Pending": "Ativação da Conta Pendente", "Account Activation Pending": "Ativação da Conta Pendente",
"Accurate information": "Informações precisas", "Accurate information": "Informações precisas",
"Action": "Ação", "Action": "Ação",
"Action not found": "Ação não encontrada", "Action not found": "Ação não encontrada",
@ -54,7 +57,8 @@
"Add Custom Prompt": "Adicionar prompt personalizado", "Add Custom Prompt": "Adicionar prompt personalizado",
"Add Details": "Adicionar detalhes", "Add Details": "Adicionar detalhes",
"Add Files": "Adicionar Arquivos", "Add Files": "Adicionar Arquivos",
"Add Group": "Adicionar Grupo", "Add Member": "Adicionar membro",
"Add Members": "Adicionar membros",
"Add Memory": "Adicionar Memória", "Add Memory": "Adicionar Memória",
"Add Model": "Adicionar Modelo", "Add Model": "Adicionar Modelo",
"Add Reaction": "Adicionar reação", "Add Reaction": "Adicionar reação",
@ -124,10 +128,8 @@
"and {{COUNT}} more": "e mais {{COUNT}}", "and {{COUNT}} more": "e mais {{COUNT}}",
"and create a new shared link.": "e criar um novo link compartilhado.", "and create a new shared link.": "e criar um novo link compartilhado.",
"Android": "Android", "Android": "Android",
"API Base URL": "URL Base da API", "API Base URL": "URL Base da API",
"API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "URL base da API para o serviço Datalab Marker. O padrão é: https://www.datalab.to/api/v1/marker", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "URL base da API para o serviço Datalab Marker. O padrão é: https://www.datalab.to/api/v1/marker",
"API Key": "Chave API", "API Key": "Chave API",
"API Key created.": "Chave API criada.", "API Key created.": "Chave API criada.",
"API Key Endpoint Restrictions": "Restrições de endpoint de chave de API", "API Key Endpoint Restrictions": "Restrições de endpoint de chave de API",
@ -203,7 +205,6 @@
"Bocha Search API Key": "Chave da API de pesquisa Bocha", "Bocha Search API Key": "Chave da API de pesquisa Bocha",
"Bold": "Negrito", "Bold": "Negrito",
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Aumentar ou penalizar tokens específicos para respostas restritas. Os valores de viés serão fixados entre -100 e 100 (inclusive). (Padrão: nenhum)", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Aumentar ou penalizar tokens específicos para respostas restritas. Os valores de viés serão fixados entre -100 e 100 (inclusive). (Padrão: nenhum)",
"Brave Search API Key": "Chave API do Brave Search", "Brave Search API Key": "Chave API do Brave Search",
"Bullet List": "Lista com marcadores", "Bullet List": "Lista com marcadores",
"Button ID": "ID do botão", "Button ID": "ID do botão",
@ -256,6 +257,7 @@
"Citations": "Citações", "Citations": "Citações",
"Clear memory": "Limpar memória", "Clear memory": "Limpar memória",
"Clear Memory": "Limpar Memória", "Clear Memory": "Limpar Memória",
"Clear status": "Limpar status",
"click here": "Clique aqui", "click here": "Clique aqui",
"Click here for filter guides.": "Clique aqui para obter instruções de filtros.", "Click here for filter guides.": "Clique aqui para obter instruções de filtros.",
"Click here for help.": "Clique aqui para obter ajuda.", "Click here for help.": "Clique aqui para obter ajuda.",
@ -292,6 +294,7 @@
"Code Interpreter": "Intérprete de código", "Code Interpreter": "Intérprete de código",
"Code Interpreter Engine": "Motor de interpretação de código", "Code Interpreter Engine": "Motor de interpretação de código",
"Code Interpreter Prompt Template": "Modelo de Prompt do Interpretador de Código", "Code Interpreter Prompt Template": "Modelo de Prompt do Interpretador de Código",
"Collaboration channel where people join as members": "Canal de colaboração onde as pessoas se juntam como membros.",
"Collapse": "Recolher", "Collapse": "Recolher",
"Collection": "Coleção", "Collection": "Coleção",
"Color": "Cor", "Color": "Cor",
@ -426,7 +429,6 @@
"Deleted {{name}}": "Excluído {{name}}", "Deleted {{name}}": "Excluído {{name}}",
"Deleted User": "Usuário Excluído", "Deleted User": "Usuário Excluído",
"Deployment names are required for Azure OpenAI": "Nomes de implantação são necessários para o Azure OpenAI", "Deployment names are required for Azure OpenAI": "Nomes de implantação são necessários para o Azure OpenAI",
"Describe your knowledge base and objectives": "Descreva sua base de conhecimento e objetivos", "Describe your knowledge base and objectives": "Descreva sua base de conhecimento e objetivos",
"Description": "Descrição", "Description": "Descrição",
"Detect Artifacts Automatically": "Detectar artefatos automaticamente", "Detect Artifacts Automatically": "Detectar artefatos automaticamente",
@ -452,6 +454,7 @@
"Discover, download, and explore custom prompts": "Descubra, baixe e explore prompts personalizados", "Discover, download, and explore custom prompts": "Descubra, baixe e explore prompts personalizados",
"Discover, download, and explore custom tools": "Descubra, baixe e explore ferramentas personalizadas", "Discover, download, and explore custom tools": "Descubra, baixe e explore ferramentas personalizadas",
"Discover, download, and explore model presets": "Descubra, baixe e explore predefinições de modelos", "Discover, download, and explore model presets": "Descubra, baixe e explore predefinições de modelos",
"Discussion channel where access is based on groups and permissions": "Canal de discussão onde o acesso é baseado em grupos e permissões.",
"Display": "Exibir", "Display": "Exibir",
"Display chat title in tab": "Exibir título do chat na aba", "Display chat title in tab": "Exibir título do chat na aba",
"Display Emoji in Call": "Exibir Emoji na Chamada", "Display Emoji in Call": "Exibir Emoji na Chamada",
@ -460,9 +463,6 @@
"Displays citations in the response": "Exibir citações na resposta", "Displays citations in the response": "Exibir citações na resposta",
"Displays status updates (e.g., web search progress) in the response": "Exibe atualizações de status (por exemplo, progresso da pesquisa na web) na resposta", "Displays status updates (e.g., web search progress) in the response": "Exibe atualizações de status (por exemplo, progresso da pesquisa na web) na resposta",
"Dive into knowledge": "Explorar base de conhecimento", "Dive into knowledge": "Explorar base de conhecimento",
"Do not install functions from sources you do not fully trust.": "Não instale funções de origens nas quais você não confia totalmente.", "Do not install functions from sources you do not fully trust.": "Não instale funções de origens nas quais você não confia totalmente.",
"Do not install tools from sources you do not fully trust.": "Não instale ferramentas de origens nas quais você não confia totalmente.", "Do not install tools from sources you do not fully trust.": "Não instale ferramentas de origens nas quais você não confia totalmente.",
"Docling": "", "Docling": "",
@ -471,6 +471,7 @@
"Document": "Documento", "Document": "Documento",
"Document Intelligence": "Inteligência de documentos", "Document Intelligence": "Inteligência de documentos",
"Document Intelligence endpoint required.": "É necessário o endpoint do Document Intelligence.", "Document Intelligence endpoint required.": "É necessário o endpoint do Document Intelligence.",
"Document Intelligence Model": "Modelo de Inteligência de Documentos",
"Documentation": "Documentação", "Documentation": "Documentação",
"Documents": "Documentos", "Documents": "Documentos",
"does not make any external connections, and your data stays securely on your locally hosted server.": "não faz nenhuma conexão externa, e seus dados permanecem seguros no seu servidor local.", "does not make any external connections, and your data stays securely on your locally hosted server.": "não faz nenhuma conexão externa, e seus dados permanecem seguros no seu servidor local.",
@ -493,12 +494,15 @@
"e.g. \"json\" or a JSON schema": "por exemplo, \"json\" ou um esquema JSON", "e.g. \"json\" or a JSON schema": "por exemplo, \"json\" ou um esquema JSON",
"e.g. 60": "por exemplo, 60", "e.g. 60": "por exemplo, 60",
"e.g. A filter to remove profanity from text": "Exemplo: Um filtro para remover palavrões do texto", "e.g. A filter to remove profanity from text": "Exemplo: Um filtro para remover palavrões do texto",
"e.g. about the Roman Empire": "Por exemplo, sobre o Império Romano.",
"e.g. en": "por exemplo, en", "e.g. en": "por exemplo, en",
"e.g. My Filter": "Exemplo: Meu Filtro", "e.g. My Filter": "Exemplo: Meu Filtro",
"e.g. My Tools": "Exemplo: Minhas Ferramentas", "e.g. My Tools": "Exemplo: Minhas Ferramentas",
"e.g. my_filter": "Exemplo: my_filter", "e.g. my_filter": "Exemplo: my_filter",
"e.g. my_tools": "Exemplo: my_tools", "e.g. my_tools": "Exemplo: my_tools",
"e.g. pdf, docx, txt": "por exemplo, pdf, docx, txt", "e.g. pdf, docx, txt": "por exemplo, pdf, docx, txt",
"e.g. Tell me a fun fact": "Por exemplo: Conte-me uma curiosidade.",
"e.g. Tell me a fun fact about the Roman Empire": "Por exemplo: Conte-me uma curiosidade sobre o Império Romano.",
"e.g. Tools for performing various operations": "Exemplo: Ferramentas para executar operações diversas", "e.g. Tools for performing various operations": "Exemplo: Ferramentas para executar operações diversas",
"e.g., 3, 4, 5 (leave blank for default)": "por exemplo, 3, 4, 5 (deixe em branco para o padrão)", "e.g., 3, 4, 5 (leave blank for default)": "por exemplo, 3, 4, 5 (deixe em branco para o padrão)",
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "por exemplo, áudio/wav, áudio/mpeg, vídeo/* (deixe em branco para os padrões)", "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "por exemplo, áudio/wav, áudio/mpeg, vídeo/* (deixe em branco para os padrões)",
@ -527,7 +531,6 @@
"Embedding Batch Size": "Tamanho do Lote de Embedding", "Embedding Batch Size": "Tamanho do Lote de Embedding",
"Embedding Model": "Modelo de Embedding", "Embedding Model": "Modelo de Embedding",
"Embedding Model Engine": "Motor do Modelo de Embedding", "Embedding Model Engine": "Motor do Modelo de Embedding",
"Enable API Keys": "Habilitar chave de API", "Enable API Keys": "Habilitar chave de API",
"Enable autocomplete generation for chat messages": "Habilitar geração de preenchimento automático para mensagens do chat", "Enable autocomplete generation for chat messages": "Habilitar geração de preenchimento automático para mensagens do chat",
"Enable Code Execution": "Habilitar execução de código", "Enable Code Execution": "Habilitar execução de código",
@ -564,17 +567,16 @@
"Enter Chunk Overlap": "Digite a Sobreposição de Chunk", "Enter Chunk Overlap": "Digite a Sobreposição de Chunk",
"Enter Chunk Size": "Digite o Tamanho do Chunk", "Enter Chunk Size": "Digite o Tamanho do Chunk",
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Insira pares \"token:bias_value\" separados por vírgulas (exemplo: 5432:100, 413:-100)", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Insira pares \"token:bias_value\" separados por vírgulas (exemplo: 5432:100, 413:-100)",
"Enter content for the pending user info overlay. Leave empty for default.": "Insira o conteúdo para a sobreposição de informações pendentes do usuário. Deixe em branco para o padrão.", "Enter content for the pending user info overlay. Leave empty for default.": "Insira o conteúdo para a sobreposição de informações pendentes do usuário. Deixe em branco para o padrão.",
"Enter coordinates (e.g. 51.505, -0.09)": "Insira as coordenadas (por exemplo, 51,505, -0,09)", "Enter coordinates (e.g. 51.505, -0.09)": "Insira as coordenadas (por exemplo, 51,505, -0,09)",
"Enter Datalab Marker API Base URL": "Insira o URL base da API do marcador do Datalab", "Enter Datalab Marker API Base URL": "Insira o URL base da API do marcador do Datalab",
"Enter Datalab Marker API Key": "Insira a chave da API do marcador do Datalab", "Enter Datalab Marker API Key": "Insira a chave da API do marcador do Datalab",
"Enter description": "Digite a descrição", "Enter description": "Digite a descrição",
"Enter Docling API Key": "Insira a chave da API do Docling", "Enter Docling API Key": "Insira a chave da API do Docling",
"Enter Docling Server URL": "Digite a URL do servidor Docling", "Enter Docling Server URL": "Digite a URL do servidor Docling",
"Enter Document Intelligence Endpoint": "Insira o endpoint do Document Intelligence", "Enter Document Intelligence Endpoint": "Insira o endpoint do Document Intelligence",
"Enter Document Intelligence Key": "Insira a chave de inteligência do documento", "Enter Document Intelligence Key": "Insira a chave de inteligência do documento",
"Enter Document Intelligence Model": "Insira o modelo de inteligência de documentos",
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "Insira os domínios separados por vírgulas (ex.: example.com,site.org,!excludedsite.com)", "Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "Insira os domínios separados por vírgulas (ex.: example.com,site.org,!excludedsite.com)",
"Enter Exa API Key": "Insira a chave da API Exa", "Enter Exa API Key": "Insira a chave da API Exa",
"Enter External Document Loader API Key": "Insira a chave da API do carregador de documentos externo", "Enter External Document Loader API Key": "Insira a chave da API do carregador de documentos externo",
@ -700,7 +702,6 @@
"Export Config to JSON File": "Exportar Configuração para Arquivo JSON", "Export Config to JSON File": "Exportar Configuração para Arquivo JSON",
"Export Models": "Exportar Modelos", "Export Models": "Exportar Modelos",
"Export Presets": "Exportar Presets", "Export Presets": "Exportar Presets",
"Export Prompt Suggestions": "Exportar Sugestões de Prompt",
"Export Prompts": "Exportar Prompts", "Export Prompts": "Exportar Prompts",
"Export to CSV": "Exportar para CSV", "Export to CSV": "Exportar para CSV",
"Export Tools": "Exportar Ferramentas", "Export Tools": "Exportar Ferramentas",
@ -715,6 +716,8 @@
"External Web Search URL": "URL de pesquisa na Web externa", "External Web Search URL": "URL de pesquisa na Web externa",
"Fade Effect for Streaming Text": "Efeito de desbotamento para texto em streaming", "Fade Effect for Streaming Text": "Efeito de desbotamento para texto em streaming",
"Failed to add file.": "Falha ao adicionar arquivo.", "Failed to add file.": "Falha ao adicionar arquivo.",
"Failed to add members": "Falha ao adicionar membros",
"Failed to clear status": "Falha ao limpar o status",
"Failed to connect to {{URL}} OpenAPI tool server": "Falha ao conectar ao servidor da ferramenta OpenAPI {{URL}}", "Failed to connect to {{URL}} OpenAPI tool server": "Falha ao conectar ao servidor da ferramenta OpenAPI {{URL}}",
"Failed to copy link": "Falha ao copiar o link", "Failed to copy link": "Falha ao copiar o link",
"Failed to create API Key.": "Falha ao criar a Chave API.", "Failed to create API Key.": "Falha ao criar a Chave API.",
@ -728,14 +731,15 @@
"Failed to load file content.": "Falha ao carregar o conteúdo do arquivo.", "Failed to load file content.": "Falha ao carregar o conteúdo do arquivo.",
"Failed to move chat": "Falha ao mover o chat", "Failed to move chat": "Falha ao mover o chat",
"Failed to read clipboard contents": "Falha ao ler o conteúdo da área de transferência", "Failed to read clipboard contents": "Falha ao ler o conteúdo da área de transferência",
"Failed to remove member": "Falha ao remover membro",
"Failed to render diagram": "Falha ao renderizar o diagrama", "Failed to render diagram": "Falha ao renderizar o diagrama",
"Failed to render visualization": "Falha ao renderizar a visualização", "Failed to render visualization": "Falha ao renderizar a visualização",
"Failed to save connections": "Falha ao salvar conexões", "Failed to save connections": "Falha ao salvar conexões",
"Failed to save conversation": "Falha ao salvar a conversa", "Failed to save conversation": "Falha ao salvar a conversa",
"Failed to save models configuration": "Falha ao salvar a configuração dos modelos", "Failed to save models configuration": "Falha ao salvar a configuração dos modelos",
"Failed to update settings": "Falha ao atualizar as configurações", "Failed to update settings": "Falha ao atualizar as configurações",
"Failed to update status": "Falha ao atualizar o status",
"Failed to upload file.": "Falha ao carregar o arquivo.", "Failed to upload file.": "Falha ao carregar o arquivo.",
"Features": "Funcionalidades", "Features": "Funcionalidades",
"Features Permissions": "Permissões das Funcionalidades", "Features Permissions": "Permissões das Funcionalidades",
"February": "Fevereiro", "February": "Fevereiro",
@ -828,11 +832,13 @@
"Google PSE Engine Id": "ID do Motor do Google PSE", "Google PSE Engine Id": "ID do Motor do Google PSE",
"Gravatar": "", "Gravatar": "",
"Group": "Grupo", "Group": "Grupo",
"Group Channel": "Canal do grupo",
"Group created successfully": "Grupo criado com sucesso", "Group created successfully": "Grupo criado com sucesso",
"Group deleted successfully": "Grupo excluído com sucesso", "Group deleted successfully": "Grupo excluído com sucesso",
"Group Description": "Descrição do Grupo", "Group Description": "Descrição do Grupo",
"Group Name": "Nome do Grupo", "Group Name": "Nome do Grupo",
"Group updated successfully": "Grupo atualizado com sucesso", "Group updated successfully": "Grupo atualizado com sucesso",
"groups": "grupos",
"Groups": "Grupos", "Groups": "Grupos",
"H1": "Título", "H1": "Título",
"H2": "Subtítulo", "H2": "Subtítulo",
@ -887,12 +893,10 @@
"Import Models": "Importar Modelos", "Import Models": "Importar Modelos",
"Import Notes": "Importar Notas", "Import Notes": "Importar Notas",
"Import Presets": "Importar Presets", "Import Presets": "Importar Presets",
"Import Prompt Suggestions": "Importar Sugestões de Prompt",
"Import Prompts": "Importar Prompts", "Import Prompts": "Importar Prompts",
"Import successful": "Importação bem-sucedida", "Import successful": "Importação bem-sucedida",
"Import Tools": "Importar Ferramentas", "Import Tools": "Importar Ferramentas",
"Important Update": "Atualização importante", "Important Update": "Atualização importante",
"Include": "Incluir", "Include": "Incluir",
"Include `--api-auth` flag when running stable-diffusion-webui": "Incluir a flag `--api-auth` ao executar stable-diffusion-webui", "Include `--api-auth` flag when running stable-diffusion-webui": "Incluir a flag `--api-auth` ao executar stable-diffusion-webui",
"Include `--api` flag when running stable-diffusion-webui": "Incluir a flag `--api` ao executar stable-diffusion-webui", "Include `--api` flag when running stable-diffusion-webui": "Incluir a flag `--api` ao executar stable-diffusion-webui",
@ -1024,6 +1028,9 @@
"MCP": "", "MCP": "",
"MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "O suporte ao MCP é experimental e suas especificações mudam com frequência, o que pode levar a incompatibilidades. O suporte à especificação OpenAPI é mantido diretamente pela equipe do Open WebUI, tornando-o a opção mais confiável para compatibilidade.", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "O suporte ao MCP é experimental e suas especificações mudam com frequência, o que pode levar a incompatibilidades. O suporte à especificação OpenAPI é mantido diretamente pela equipe do Open WebUI, tornando-o a opção mais confiável para compatibilidade.",
"Medium": "Médio", "Medium": "Médio",
"Member removed successfully": "Membro removido com sucesso",
"Members": "Membros",
"Members added successfully": "Membros adicionados com sucesso",
"Memories accessible by LLMs will be shown here.": "Memórias acessíveis por LLMs serão mostradas aqui.", "Memories accessible by LLMs will be shown here.": "Memórias acessíveis por LLMs serão mostradas aqui.",
"Memory": "Memória", "Memory": "Memória",
"Memory added successfully": "Memória adicionada com sucesso", "Memory added successfully": "Memória adicionada com sucesso",
@ -1123,6 +1130,7 @@
"No models selected": "Nenhum modelo selecionado", "No models selected": "Nenhum modelo selecionado",
"No Notes": "Sem Notas", "No Notes": "Sem Notas",
"No notes found": "Notas não encontradas", "No notes found": "Notas não encontradas",
"No pinned messages": "Nenhuma mensagem fixada",
"No prompts found": "Nenhum prompt encontrado", "No prompts found": "Nenhum prompt encontrado",
"No results": "Nenhum resultado encontrado", "No results": "Nenhum resultado encontrado",
"No results found": "Nenhum resultado encontrado", "No results found": "Nenhum resultado encontrado",
@ -1170,6 +1178,7 @@
"Only alphanumeric characters and hyphens are allowed in the command string.": "Apenas caracteres alfanuméricos e hífens são permitidos na string de comando.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Apenas caracteres alfanuméricos e hífens são permitidos na string de comando.",
"Only can be triggered when the chat input is in focus.": "Só pode ser acionado quando o campo de entrada do chat estiver em foco.", "Only can be triggered when the chat input is in focus.": "Só pode ser acionado quando o campo de entrada do chat estiver em foco.",
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Somente coleções podem ser editadas. Crie uma nova base de conhecimento para editar/adicionar documentos.", "Only collections can be edited, create a new knowledge base to edit/add documents.": "Somente coleções podem ser editadas. Crie uma nova base de conhecimento para editar/adicionar documentos.",
"Only invited users can access": "Somente usuários convidados podem acessar.",
"Only markdown files are allowed": "Somente arquivos markdown são permitidos", "Only markdown files are allowed": "Somente arquivos markdown são permitidos",
"Only select users and groups with permission can access": "Somente usuários e grupos selecionados com permissão podem acessar.", "Only select users and groups with permission can access": "Somente usuários e grupos selecionados com permissão podem acessar.",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "Ops! Parece que a URL é inválida. Por favor, verifique novamente e tente de novo.", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Ops! Parece que a URL é inválida. Por favor, verifique novamente e tente de novo.",
@ -1201,7 +1210,6 @@
"OpenAPI Spec": "", "OpenAPI Spec": "",
"openapi.json URL or Path": "", "openapi.json URL or Path": "",
"Optional": "Opcional", "Optional": "Opcional",
"or": "ou", "or": "ou",
"Ordered List": "Lista ordenada", "Ordered List": "Lista ordenada",
"Organize your users": "Organizar seus usuários", "Organize your users": "Organizar seus usuários",
@ -1216,14 +1224,12 @@
"Password": "Senha", "Password": "Senha",
"Passwords do not match.": "As senhas não coincidem.", "Passwords do not match.": "As senhas não coincidem.",
"Paste Large Text as File": "Cole Textos Longos como Arquivo", "Paste Large Text as File": "Cole Textos Longos como Arquivo",
"PDF document (.pdf)": "Documento PDF (.pdf)", "PDF document (.pdf)": "Documento PDF (.pdf)",
"PDF Extract Images (OCR)": "Extrair Imagens do PDF (OCR)", "PDF Extract Images (OCR)": "Extrair Imagens do PDF (OCR)",
"pending": "pendente", "pending": "pendente",
"Pending": "Pendente", "Pending": "Pendente",
"Pending User Overlay Content": "Conteúdo de sobreposição de usuário pendente", "Pending User Overlay Content": "Conteúdo de sobreposição de usuário pendente",
"Pending User Overlay Title": "Título de sobreposição de usuário pendente", "Pending User Overlay Title": "Título de sobreposição de usuário pendente",
"Permission denied when accessing media devices": "Permissão negada ao acessar dispositivos de mídia", "Permission denied when accessing media devices": "Permissão negada ao acessar dispositivos de mídia",
"Permission denied when accessing microphone": "Permissão negada ao acessar o microfone", "Permission denied when accessing microphone": "Permissão negada ao acessar o microfone",
"Permission denied when accessing microphone: {{error}}": "Permissão negada ao acessar o microfone: {{error}}", "Permission denied when accessing microphone: {{error}}": "Permissão negada ao acessar o microfone: {{error}}",
@ -1233,14 +1239,11 @@
"Perplexity Search API URL": "", "Perplexity Search API URL": "",
"Perplexity Search Context Usage": "Uso do contexto de pesquisa do Perplexity", "Perplexity Search Context Usage": "Uso do contexto de pesquisa do Perplexity",
"Personalization": "Personalização", "Personalization": "Personalização",
"Pin": "Fixar", "Pin": "Fixar",
"Pinned": "Fixado", "Pinned": "Fixado",
"Pinned Messages": "Mensagens fixadas",
"Pioneer insights": "Insights pioneiros", "Pioneer insights": "Insights pioneiros",
"Pipe": "", "Pipe": "",
"Pipeline deleted successfully": "Pipeline excluído com sucesso", "Pipeline deleted successfully": "Pipeline excluído com sucesso",
"Pipeline downloaded successfully": "Pipeline baixado com sucesso", "Pipeline downloaded successfully": "Pipeline baixado com sucesso",
"Pipelines": "Pipelines", "Pipelines": "Pipelines",
@ -1281,9 +1284,9 @@
"Previous 7 days": "Últimos 7 dias", "Previous 7 days": "Últimos 7 dias",
"Previous message": "Mensagem anterior", "Previous message": "Mensagem anterior",
"Private": "Privado", "Private": "Privado",
"Private conversation between selected users": "Conversa privada entre usuários selecionados",
"Profile": "Perfil", "Profile": "Perfil",
"Prompt": "", "Prompt": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (por exemplo, Diga-me um fato divertido sobre o Império Romano)",
"Prompt Autocompletion": "Preenchimento automático de prompts", "Prompt Autocompletion": "Preenchimento automático de prompts",
"Prompt Content": "Conteúdo do Prompt", "Prompt Content": "Conteúdo do Prompt",
"Prompt created successfully": "Prompt criado com sucesso", "Prompt created successfully": "Prompt criado com sucesso",
@ -1297,7 +1300,6 @@
"Pull \"{{searchValue}}\" from Ollama.com": "Obter \"{{searchValue}}\" de Ollama.com", "Pull \"{{searchValue}}\" from Ollama.com": "Obter \"{{searchValue}}\" de Ollama.com",
"Pull a model from Ollama.com": "Obter um modelo de Ollama.com", "Pull a model from Ollama.com": "Obter um modelo de Ollama.com",
"Pull Model": "Obter Modelo", "Pull Model": "Obter Modelo",
"Query Generation Prompt": "Prompt de Geração de Consulta", "Query Generation Prompt": "Prompt de Geração de Consulta",
"Querying": "Consultando", "Querying": "Consultando",
"Quick Actions": "Ações rápidas", "Quick Actions": "Ações rápidas",
@ -1471,6 +1473,7 @@
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Defina o número de threads de trabalho usadas para computação. Esta opção controla quantos threads são usados para processar as solicitações recebidas de forma simultânea. Aumentar esse valor pode melhorar o desempenho em cargas de trabalho de alta concorrência, mas também pode consumir mais recursos da CPU.", "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Defina o número de threads de trabalho usadas para computação. Esta opção controla quantos threads são usados para processar as solicitações recebidas de forma simultânea. Aumentar esse valor pode melhorar o desempenho em cargas de trabalho de alta concorrência, mas também pode consumir mais recursos da CPU.",
"Set Voice": "Definir Voz", "Set Voice": "Definir Voz",
"Set whisper model": "Definir modelo Whisper", "Set whisper model": "Definir modelo Whisper",
"Set your status": "Defina seu status",
"Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Define um viés fixo contra tokens que apareceram pelo menos uma vez. Um valor mais alto (por exemplo, 1,5) penalizará as repetições com mais força, enquanto um valor mais baixo (por exemplo, 0,9) será mais tolerante. Em 0, está desabilitado.", "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Define um viés fixo contra tokens que apareceram pelo menos uma vez. Um valor mais alto (por exemplo, 1,5) penalizará as repetições com mais força, enquanto um valor mais baixo (por exemplo, 0,9) será mais tolerante. Em 0, está desabilitado.",
"Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Define um viés de escala contra tokens para penalizar repetições, com base em quantas vezes elas apareceram. Um valor mais alto (por exemplo, 1,5) penalizará as repetições com mais rigor, enquanto um valor mais baixo (por exemplo, 0,9) será mais brando. Em 0, está desabilitado.", "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "Define um viés de escala contra tokens para penalizar repetições, com base em quantas vezes elas apareceram. Um valor mais alto (por exemplo, 1,5) penalizará as repetições com mais rigor, enquanto um valor mais baixo (por exemplo, 0,9) será mais brando. Em 0, está desabilitado.",
"Sets how far back for the model to look back to prevent repetition.": "Define até que ponto o modelo deve olhar para trás para evitar repetições.", "Sets how far back for the model to look back to prevent repetition.": "Define até que ponto o modelo deve olhar para trás para evitar repetições.",
@ -1520,10 +1523,12 @@
"Speech recognition error: {{error}}": "Erro de reconhecimento de fala: {{error}}", "Speech recognition error: {{error}}": "Erro de reconhecimento de fala: {{error}}",
"Speech-to-Text": "Fala-para-Texto", "Speech-to-Text": "Fala-para-Texto",
"Speech-to-Text Engine": "Motor de Transcrição de Fala", "Speech-to-Text Engine": "Motor de Transcrição de Fala",
"Start a new conversation": "Iniciar uma nova conversa", "Start a new conversation": "Iniciar uma nova conversa",
"Start of the channel": "Início do canal", "Start of the channel": "Início do canal",
"Start Tag": "Tag inicial", "Start Tag": "Tag inicial",
"Status": "Status",
"Status cleared successfully": "Status liberado com sucesso",
"Status updated successfully": "Status atualizado com sucesso",
"Status Updates": "Atualizações de status", "Status Updates": "Atualizações de status",
"STDOUT/STDERR": "STDOUT/STDERR", "STDOUT/STDERR": "STDOUT/STDERR",
"Steps": "Passos", "Steps": "Passos",
@ -1539,7 +1544,7 @@
"STT Model": "Modelo STT", "STT Model": "Modelo STT",
"STT Settings": "Configurações STT", "STT Settings": "Configurações STT",
"Stylized PDF Export": "Exportação de PDF estilizado", "Stylized PDF Export": "Exportação de PDF estilizado",
"Subtitle (e.g. about the Roman Empire)": "Subtítulo (por exemplo, sobre o Império Romano)", "Subtitle": "Legenda",
"Success": "Sucesso", "Success": "Sucesso",
"Successfully imported {{userCount}} users.": "{{userCount}} usuários importados com sucesso.", "Successfully imported {{userCount}} users.": "{{userCount}} usuários importados com sucesso.",
"Successfully updated.": "Atualizado com sucesso.", "Successfully updated.": "Atualizado com sucesso.",
@ -1552,7 +1557,6 @@
"System": "Sistema", "System": "Sistema",
"System Instructions": "Instruções do sistema", "System Instructions": "Instruções do sistema",
"System Prompt": "Prompt do Sistema", "System Prompt": "Prompt do Sistema",
"Tag": "", "Tag": "",
"Tags": "", "Tags": "",
"Tags Generation": "Geração de tags", "Tags Generation": "Geração de tags",
@ -1623,7 +1627,6 @@
"Tika Server URL required.": "URL do servidor Tika necessária.", "Tika Server URL required.": "URL do servidor Tika necessária.",
"Tiktoken": "", "Tiktoken": "",
"Title": "Título", "Title": "Título",
"Title (e.g. Tell me a fun fact)": "Título (por exemplo, Conte-me um fato divertido)",
"Title Auto-Generation": "Geração Automática de Título", "Title Auto-Generation": "Geração Automática de Título",
"Title cannot be an empty string.": "O Título não pode ser uma string vazia.", "Title cannot be an empty string.": "O Título não pode ser uma string vazia.",
"Title Generation": "Geração de Títulos", "Title Generation": "Geração de Títulos",
@ -1692,6 +1695,7 @@
"Update and Copy Link": "Atualizar e Copiar Link", "Update and Copy Link": "Atualizar e Copiar Link",
"Update for the latest features and improvements.": "Atualizar para as novas funcionalidades e melhorias.", "Update for the latest features and improvements.": "Atualizar para as novas funcionalidades e melhorias.",
"Update password": "Atualizar senha", "Update password": "Atualizar senha",
"Update your status": "Atualize seu status",
"Updated": "Atualizado", "Updated": "Atualizado",
"Updated at": "Atualizado em", "Updated at": "Atualizado em",
"Updated At": "Atualizado Em", "Updated At": "Atualizado Em",
@ -1745,8 +1749,8 @@
"View Replies": "Ver respostas", "View Replies": "Ver respostas",
"View Result from **{{NAME}}**": "Ver resultado de **{{NAME}}**", "View Result from **{{NAME}}**": "Ver resultado de **{{NAME}}**",
"Visibility": "Visibilidade", "Visibility": "Visibilidade",
"Visible to all users": "Visível para todos os usuários",
"Vision": "Visão", "Vision": "Visão",
"Voice": "Voz", "Voice": "Voz",
"Voice Input": "Entrada de voz", "Voice Input": "Entrada de voz",
"Voice mode": "Modo de voz", "Voice mode": "Modo de voz",
@ -1773,6 +1777,7 @@
"What are you trying to achieve?": "O que está tentando alcançar?", "What are you trying to achieve?": "O que está tentando alcançar?",
"What are you working on?": "No que está trabalhando?", "What are you working on?": "No que está trabalhando?",
"What's New in": "O que há de novo em", "What's New in": "O que há de novo em",
"What's on your mind?": "O que você têm em mente?",
"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Quando habilitado, o modelo responderá a cada mensagem de chat em tempo real, gerando uma resposta assim que o usuário enviar uma mensagem. Este modo é útil para aplicativos de chat ao vivo, mas pode impactar o desempenho em hardware mais lento.", "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Quando habilitado, o modelo responderá a cada mensagem de chat em tempo real, gerando uma resposta assim que o usuário enviar uma mensagem. Este modo é útil para aplicativos de chat ao vivo, mas pode impactar o desempenho em hardware mais lento.",
"wherever you are": "onde quer que você esteja.", "wherever you are": "onde quer que você esteja.",
"Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Se a saída deve ser paginada. Cada página será separada por uma régua horizontal e um número de página. O padrão é Falso.", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Se a saída deve ser paginada. Cada página será separada por uma régua horizontal e um número de página. O padrão é Falso.",

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