diff --git a/CHANGELOG.md b/CHANGELOG.md index 47f6a27199..7d5f34d74f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -214,7 +214,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - 📝 **Writing block parsing reliability.** ":::writing" blocks now parse more reliably when headers or extra inline text are present, preventing malformed rendering and duplicate output artifacts. [#23174](https://github.com/open-webui/open-webui/issues/23174) - 🧾 **Code block line break reliability.** Blank lines in submitted code blocks are now preserved more reliably instead of being collapsed. [Commit](https://github.com/open-webui/open-webui/commit/1be9627dd27ffe75957729a4a0d1682a98684f01), [#20302](https://github.com/open-webui/open-webui/issues/20302), [#23451](https://github.com/open-webui/open-webui/pull/23451) - ✂️ **Citation spacing cleanup.** When citations are disabled for a model, citation markers and their leftover spacing are now removed together so punctuation and copied text remain cleanly formatted. [#23141](https://github.com/open-webui/open-webui/issues/23141) -- 🧰 **Pipe tool access.** Pipe functions now receive built-in and MCP tools in __tools__, so tools like Web Search and code execution are available when enabled. [#23365](https://github.com/open-webui/open-webui/issues/23365) +- 🧰 **Pipe tool access.** Pipe functions now receive built-in and MCP tools in **tools**, so tools like Web Search and code execution are available when enabled. [#23365](https://github.com/open-webui/open-webui/issues/23365) - 📚 **Batch file processing database handling.** Batch knowledge file processing now consistently uses the active database session, preventing failures caused by missing database context during file ownership checks and update writes. [#23137](https://github.com/open-webui/open-webui/issues/23137) - ⚙️ **Default model parameter loading.** The "DEFAULT_MODEL_PARAMS" environment variable is now parsed and applied correctly, so default generation settings are honored reliably without being ignored at startup. [#23223](https://github.com/open-webui/open-webui/pull/23223) - 🔧 **Web search settings save reliability.** Saving web search configuration now works without server errors, so administrators can update "WEB_FETCH_MAX_CONTENT_LENGTH" and related retrieval settings successfully from the admin interface. [Commit](https://github.com/open-webui/open-webui/commit/36d02aa1477aa1b4e7fb59d022f99693ebfa8667), [#23127](https://github.com/open-webui/open-webui/issues/23127) diff --git a/backend/open_webui/internal/db.py b/backend/open_webui/internal/db.py index e3b4a110cd..25aa94591b 100644 --- a/backend/open_webui/internal/db.py +++ b/backend/open_webui/internal/db.py @@ -56,10 +56,7 @@ def extract_ssl_mode_from_url(url: str) -> tuple[str, str | None]: Non-PostgreSQL URLs are returned unchanged with ``ssl_mode=None``. """ - if not url or not any( - url.startswith(prefix) - for prefix in ('postgresql://', 'postgresql+', 'postgres://') - ): + if not url or not any(url.startswith(prefix) for prefix in ('postgresql://', 'postgresql+', 'postgres://')): return url, None parsed = urlparse(url) @@ -126,7 +123,6 @@ def reattach_ssl_mode_to_url(url_without_ssl: str, ssl_mode: str | None) -> str: return f'{url_without_ssl}{separator}sslmode={ssl_mode}' - class JSONField(types.TypeDecorator): impl = types.Text cache_ok = True @@ -188,7 +184,9 @@ if ENABLE_DB_MIGRATIONS: DATABASE_URL_WITHOUT_SSL, DATABASE_SSL_MODE = extract_ssl_mode_from_url(DATABASE_URL) # For psycopg2 (sync engine), re-append sslmode=. -SQLALCHEMY_DATABASE_URL = reattach_ssl_mode_to_url(DATABASE_URL_WITHOUT_SSL, DATABASE_SSL_MODE) if DATABASE_SSL_MODE else DATABASE_URL +SQLALCHEMY_DATABASE_URL = ( + reattach_ssl_mode_to_url(DATABASE_URL_WITHOUT_SSL, DATABASE_SSL_MODE) if DATABASE_SSL_MODE else DATABASE_URL +) def _make_async_url(url: str) -> str: @@ -332,15 +330,13 @@ get_db = contextmanager(get_session) # ============================================================ # Use the SSL-stripped URL for asyncpg — SSL is injected via connect_args. -ASYNC_SQLALCHEMY_DATABASE_URL = _make_async_url(DATABASE_URL_WITHOUT_SSL if DATABASE_SSL_MODE else SQLALCHEMY_DATABASE_URL) +ASYNC_SQLALCHEMY_DATABASE_URL = _make_async_url( + DATABASE_URL_WITHOUT_SSL if DATABASE_SSL_MODE else SQLALCHEMY_DATABASE_URL +) if 'sqlite' in ASYNC_SQLALCHEMY_DATABASE_URL: # Generous default — async coroutines + no session sharing = high connection demand. - _sqlite_pool_size = ( - DATABASE_POOL_SIZE - if isinstance(DATABASE_POOL_SIZE, int) and DATABASE_POOL_SIZE > 0 - else 512 - ) + _sqlite_pool_size = DATABASE_POOL_SIZE if isinstance(DATABASE_POOL_SIZE, int) and DATABASE_POOL_SIZE > 0 else 512 async_engine = create_async_engine( ASYNC_SQLALCHEMY_DATABASE_URL, connect_args={'check_same_thread': False}, diff --git a/backend/open_webui/models/calendar.py b/backend/open_webui/models/calendar.py index dbb070013e..47f0a6f722 100644 --- a/backend/open_webui/models/calendar.py +++ b/backend/open_webui/models/calendar.py @@ -307,8 +307,6 @@ class CalendarTable: cal = result.scalars().first() return await self._to_calendar_model(cal, db=db) if cal else None - - async def insert_new_calendar( self, user_id: str, form_data: CalendarForm, db: Optional[AsyncSession] = None ) -> Optional[CalendarModel]: diff --git a/backend/open_webui/retrieval/utils.py b/backend/open_webui/retrieval/utils.py index cafb8fe4f0..b9bfcc12c8 100644 --- a/backend/open_webui/retrieval/utils.py +++ b/backend/open_webui/retrieval/utils.py @@ -122,9 +122,7 @@ def build_loader_from_config(request): ) -def _extract_text_from_binary_response( - request, response: requests.Response, url: str -) -> tuple[str, list]: +def _extract_text_from_binary_response(request, response: requests.Response, url: str) -> tuple[str, list]: """Download response body to a temp file and extract text using the Loader pipeline.""" import mimetypes import tempfile diff --git a/backend/open_webui/routers/calendar.py b/backend/open_webui/routers/calendar.py index 152b932234..c95888ebfa 100644 --- a/backend/open_webui/routers/calendar.py +++ b/backend/open_webui/routers/calendar.py @@ -55,9 +55,7 @@ async def _user_has_automations(request: Request, user) -> bool: return False if user.role == 'admin': return True - return await has_permission( - user.id, 'features.automations', request.app.state.config.USER_PERMISSIONS - ) + return await has_permission(user.id, 'features.automations', request.app.state.config.USER_PERMISSIONS) async def _check_calendar_access(calendar_id: str, user: UserModel, permission: str = 'write') -> CalendarModel: diff --git a/backend/open_webui/routers/configs.py b/backend/open_webui/routers/configs.py index 68e1d129dc..02b16d8e5b 100644 --- a/backend/open_webui/routers/configs.py +++ b/backend/open_webui/routers/configs.py @@ -293,7 +293,9 @@ async def verify_terminal_server_connection( ) as session: # Orchestrators expose a policies API; plain terminals don't. try: - async with session.get(f'{base_url}/api/v1/policies', headers=headers, ssl=AIOHTTP_CLIENT_SESSION_SSL) as resp: + async with session.get( + f'{base_url}/api/v1/policies', headers=headers, ssl=AIOHTTP_CLIENT_SESSION_SSL + ) as resp: if resp.ok: return {'status': True, 'type': 'orchestrator'} except Exception: @@ -301,7 +303,9 @@ async def verify_terminal_server_connection( # Fall back to open-terminal config endpoint. try: - async with session.get(f'{base_url}/api/config', headers=headers, ssl=AIOHTTP_CLIENT_SESSION_SSL) as resp: + async with session.get( + f'{base_url}/api/config', headers=headers, ssl=AIOHTTP_CLIENT_SESSION_SSL + ) as resp: if resp.ok: return {'status': True, 'type': 'terminal'} except Exception: @@ -342,7 +346,9 @@ async def put_terminal_server_policy( timeout=aiohttp.ClientTimeout(total=AIOHTTP_CLIENT_TIMEOUT), ) as session: policy_url = f'{base_url}/api/v1/policies/{form_data.policy_id}' - async with session.put(policy_url, headers=headers, json=form_data.policy_data, ssl=AIOHTTP_CLIENT_SESSION_SSL) as resp: + async with session.put( + policy_url, headers=headers, json=form_data.policy_data, ssl=AIOHTTP_CLIENT_SESSION_SSL + ) as resp: if resp.ok: return await resp.json() detail = await resp.text() @@ -369,7 +375,9 @@ async def verify_tool_servers_config(request: Request, form_data: ToolServerConn trust_env=True, timeout=aiohttp.ClientTimeout(total=AIOHTTP_CLIENT_TIMEOUT), ) as session: - async with session.get(discovery_url, ssl=AIOHTTP_CLIENT_SESSION_SSL) as oauth_server_metadata_response: + async with session.get( + discovery_url, ssl=AIOHTTP_CLIENT_SESSION_SSL + ) as oauth_server_metadata_response: if oauth_server_metadata_response.status == 200: try: oauth_server_metadata = OAuthMetadata.model_validate( diff --git a/backend/open_webui/routers/functions.py b/backend/open_webui/routers/functions.py index baec1f0870..f40cd1ab82 100644 --- a/backend/open_webui/routers/functions.py +++ b/backend/open_webui/routers/functions.py @@ -117,7 +117,9 @@ async def load_function_from_url(request: Request, form_data: LoadUrlForm, user= async with aiohttp.ClientSession( trust_env=True, timeout=aiohttp.ClientTimeout(total=AIOHTTP_CLIENT_TIMEOUT) ) as session: - async with session.get(url, headers={'Content-Type': 'application/json'}, ssl=AIOHTTP_CLIENT_SESSION_SSL) as resp: + async with session.get( + url, headers={'Content-Type': 'application/json'}, ssl=AIOHTTP_CLIENT_SESSION_SSL + ) as resp: if resp.status != 200: raise HTTPException(status_code=resp.status, detail='Failed to fetch the function') data = await resp.text() diff --git a/backend/open_webui/routers/tools.py b/backend/open_webui/routers/tools.py index 4c3e77e566..04d845c3de 100644 --- a/backend/open_webui/routers/tools.py +++ b/backend/open_webui/routers/tools.py @@ -274,7 +274,9 @@ async def load_tool_from_url(request: Request, form_data: LoadUrlForm, user=Depe async with aiohttp.ClientSession( trust_env=True, timeout=aiohttp.ClientTimeout(total=AIOHTTP_CLIENT_TIMEOUT) ) as session: - async with session.get(url, headers={'Content-Type': 'application/json'}, ssl=AIOHTTP_CLIENT_SESSION_SSL) as resp: + async with session.get( + url, headers={'Content-Type': 'application/json'}, ssl=AIOHTTP_CLIENT_SESSION_SSL + ) as resp: if resp.status != 200: raise HTTPException(status_code=resp.status, detail='Failed to fetch the tool') data = await resp.text() diff --git a/backend/open_webui/utils/files.py b/backend/open_webui/utils/files.py index 7d0d9da2c2..8149987fe4 100644 --- a/backend/open_webui/utils/files.py +++ b/backend/open_webui/utils/files.py @@ -34,19 +34,19 @@ MARKDOWN_IMAGE_URL_PATTERN = re.compile(r'!\[(.*?)\]\((.+?)\)', re.IGNORECASE) # Extension-based MIME fallback, only used when ENABLE_IMAGE_CONTENT_TYPE_EXTENSION_FALLBACK is True. _IMAGE_MIME_FALLBACK = { - ".webp": "image/webp", - ".png": "image/png", - ".jpg": "image/jpeg", - ".jpeg": "image/jpeg", - ".gif": "image/gif", - ".svg": "image/svg+xml", - ".bmp": "image/bmp", - ".tiff": "image/tiff", - ".tif": "image/tiff", - ".ico": "image/x-icon", - ".heic": "image/heic", - ".heif": "image/heif", - ".avif": "image/avif", + '.webp': 'image/webp', + '.png': 'image/png', + '.jpg': 'image/jpeg', + '.jpeg': 'image/jpeg', + '.gif': 'image/gif', + '.svg': 'image/svg+xml', + '.bmp': 'image/bmp', + '.tiff': 'image/tiff', + '.tif': 'image/tiff', + '.ico': 'image/x-icon', + '.heic': 'image/heic', + '.heif': 'image/heif', + '.avif': 'image/avif', } @@ -75,10 +75,7 @@ async def get_image_base64_from_url(url: str) -> Optional[str]: if file_path.is_file(): with open(file_path, 'rb') as image_file: encoded_string = base64.b64encode(image_file.read()).decode('utf-8') - content_type = ( - mimetypes.guess_type(file_path.name)[0] - or (file.meta or {}).get('content_type') - ) + content_type = mimetypes.guess_type(file_path.name)[0] or (file.meta or {}).get('content_type') if not content_type and ENABLE_IMAGE_CONTENT_TYPE_EXTENSION_FALLBACK: content_type = _IMAGE_MIME_FALLBACK.get(file_path.suffix.lower()) if not content_type: @@ -204,10 +201,7 @@ async def get_image_base64_from_file_id(id: str) -> Optional[str]: if file_path.is_file(): with open(file_path, 'rb') as image_file: encoded_string = base64.b64encode(image_file.read()).decode('utf-8') - content_type = ( - mimetypes.guess_type(file_path.name)[0] - or (file.meta or {}).get('content_type') - ) + content_type = mimetypes.guess_type(file_path.name)[0] or (file.meta or {}).get('content_type') if not content_type and ENABLE_IMAGE_CONTENT_TYPE_EXTENSION_FALLBACK: content_type = _IMAGE_MIME_FALLBACK.get(file_path.suffix.lower()) if not content_type: diff --git a/backend/open_webui/utils/tools.py b/backend/open_webui/utils/tools.py index 3f4eac7e91..9f3ab0bce4 100644 --- a/backend/open_webui/utils/tools.py +++ b/backend/open_webui/utils/tools.py @@ -908,7 +908,9 @@ async def get_terminal_cwd( timeout=aiohttp.ClientTimeout(total=5), trust_env=True, ) as session: - async with session.get(cwd_url, headers=headers, cookies=cookies or {}, ssl=AIOHTTP_CLIENT_SESSION_SSL) as resp: + async with session.get( + cwd_url, headers=headers, cookies=cookies or {}, ssl=AIOHTTP_CLIENT_SESSION_SSL + ) as resp: if resp.status == 200: data = await resp.json() return data.get('cwd') @@ -943,7 +945,9 @@ async def get_terminal_system_prompt( return None # 2. Fetch system prompt - async with session.get(f'{base}/system', headers=headers, cookies=cookies or {}, ssl=AIOHTTP_CLIENT_SESSION_SSL) as resp: + async with session.get( + f'{base}/system', headers=headers, cookies=cookies or {}, ssl=AIOHTTP_CLIENT_SESSION_SSL + ) as resp: if resp.status == 200: data = await resp.json() return data.get('prompt') diff --git a/src/lib/components/calendar/CalendarSidebar.svelte b/src/lib/components/calendar/CalendarSidebar.svelte index 76d762760a..d3ea51a472 100644 --- a/src/lib/components/calendar/CalendarSidebar.svelte +++ b/src/lib/components/calendar/CalendarSidebar.svelte @@ -94,7 +94,10 @@ @@ -219,11 +222,7 @@ stroke="currentColor" class="size-3" > - + {/if} diff --git a/src/lib/components/chat/Chat.svelte b/src/lib/components/chat/Chat.svelte index fbd91e512c..03af994a68 100644 --- a/src/lib/components/chat/Chat.svelte +++ b/src/lib/components/chat/Chat.svelte @@ -757,10 +757,7 @@ const selectedFolderSubscribe = selectedFolder.subscribe(async (folder) => { await tick(); - if ( - folder?.data?.model_ids && - !equal(selectedModels, folder.data.model_ids) - ) { + if (folder?.data?.model_ids && !equal(selectedModels, folder.data.model_ids)) { selectedModels = folder.data.model_ids; console.log('Set selectedModels from folder data:', selectedModels); @@ -1836,8 +1833,7 @@ ); chatFiles = chatFiles.filter( // Remove duplicates - (item, index, array) => - array.findIndex((i) => equal(i, item)) === index + (item, index, array) => array.findIndex((i) => equal(i, item)) === index ); // Create user message @@ -2176,10 +2172,7 @@ ) ); // Remove duplicates - files = files.filter( - (item, index, array) => - array.findIndex((i) => equal(i, item)) === index - ); + files = files.filter((item, index, array) => array.findIndex((i) => equal(i, item)) === index); scrollToBottom(); eventTarget.dispatchEvent( diff --git a/src/lib/components/chat/MessageInput.svelte b/src/lib/components/chat/MessageInput.svelte index aeb96af5b0..11cd749987 100644 --- a/src/lib/components/chat/MessageInput.svelte +++ b/src/lib/components/chat/MessageInput.svelte @@ -1941,7 +1941,9 @@ {#if !history?.currentId || history.messages[history.currentId]?.done == true} - {@const hasDirectToolServerAccess = $_user?.role === 'admin' || ($_user?.permissions?.features?.direct_tool_servers ?? true)} + {@const hasDirectToolServerAccess = + $_user?.role === 'admin' || + ($_user?.permissions?.features?.direct_tool_servers ?? true)} {#if terminalCapableModels.length > 0 && (($terminalServers ?? []).some((t) => t.id) || (hasDirectToolServerAccess && (($terminalServers ?? []).some((t) => !t.id) || ($settings?.terminalServers ?? []).some((s) => s.url))))} {/if} diff --git a/src/lib/i18n/locales/ar-BH/translation.json b/src/lib/i18n/locales/ar-BH/translation.json index 1b4ff02105..13e9aed4e9 100644 --- a/src/lib/i18n/locales/ar-BH/translation.json +++ b/src/lib/i18n/locales/ar-BH/translation.json @@ -37,8 +37,13 @@ "{{user}}'s Chats": "دردشات {{user}}", "{{webUIName}} Backend Required": "{{webUIName}} مطلوب", "*Prompt node ID(s) are required for image generation": "", + "1 hour before": "", "1 Source": "", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "", "A discussion channel where access is controlled by groups and permissions": "", "A new version (v{{LATEST_VERSION}}) is now available.": "", @@ -206,6 +211,7 @@ "Ask a question": "", "Assistant": "", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "", "Attach Files": "", "Attach Knowledge": "", @@ -280,6 +286,7 @@ "Bypass Web Loader": "", "Cache Base Model List": "", "Calendar": "", + "Calendar deleted": "", "Calendars": "", "Call": "", "Call feature is not supported when using Web STT engine": "", @@ -417,6 +424,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "", "Connected ({{type}})": "", "Connection failed": "", + "Connection lost. Reconnecting...": "", "Connection successful": "", "Connection Type": "", "Connections": "اتصالات", @@ -529,6 +537,8 @@ "Delete All Chats": "حذف جميع الدردشات", "Delete all contents inside this folder": "", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "حذف المحادثه.", "Delete chat?": "", "Delete Event": "", @@ -890,6 +900,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "", "Failed to create API Key.": "فشل في إنشاء مفتاح API.", + "Failed to delete calendar": "", "Failed to delete note": "", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "", @@ -1629,6 +1640,7 @@ "Reasoning Effort": "", "Reasoning Tags": "", "Recently Used": "", + "Reconnected": "", "Record": "", "Record voice": "سجل صوت", "Redirecting you to Open WebUI Community": "OpenWebUI إعادة توجيهك إلى مجتمع ", @@ -1652,6 +1664,7 @@ "Relevance": "", "Relevance Threshold": "", "Remember Dismissal": "", + "Reminder": "", "Remove": "إزالة", "Remove {{MODELID}} from list.": "", "Remove action": "", @@ -1902,7 +1915,15 @@ "Start a new conversation": "", "Start of the channel": "بداية القناة", "Start Tag": "", + "Starting in {{count}} minutes_zero": "", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_two": "", + "Starting in {{count}} minutes_few": "", + "Starting in {{count}} minutes_many": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "", "Status cleared successfully": "", @@ -2015,6 +2036,7 @@ "This will delete {{NAME}} and all its contents.": "", "This will delete all models including custom models": "", "This will delete all models including custom models and cannot be undone.": "", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "", "Thorough explanation": "شرح شامل", "Thought": "", @@ -2101,6 +2123,7 @@ "Unloads {{FROM_NOW}}": "", "Unlock mysteries": "", "Unpin": "", + "Unpin from Sidebar": "", "Unravel secrets": "", "Unshare Chat": "", "Unsupported file type.": "", diff --git a/src/lib/i18n/locales/ar/translation.json b/src/lib/i18n/locales/ar/translation.json index 49a3c5be10..3eb53e68bd 100644 --- a/src/lib/i18n/locales/ar/translation.json +++ b/src/lib/i18n/locales/ar/translation.json @@ -37,8 +37,13 @@ "{{user}}'s Chats": "محادثات المستخدم {{user}}", "{{webUIName}} Backend Required": "يتطلب الخلفية الخاصة بـ {{webUIName}}", "*Prompt node ID(s) are required for image generation": "*معرّف/معرّفات عقدة الموجه مطلوبة لتوليد الصور", + "1 hour before": "", "1 Source": "", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "", "A discussion channel where access is controlled by groups and permissions": "", "A new version (v{{LATEST_VERSION}}) is now available.": "يتوفر الآن إصدار جديد (v{{LATEST_VERSION}}).", @@ -206,6 +211,7 @@ "Ask a question": "اطرح سؤالاً", "Assistant": "المساعد", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "", "Attach Files": "", "Attach Knowledge": "", @@ -280,6 +286,7 @@ "Bypass Web Loader": "", "Cache Base Model List": "", "Calendar": "التقويم", + "Calendar deleted": "", "Calendars": "", "Call": "مكالمة", "Call feature is not supported when using Web STT engine": "ميزة الاتصال غير مدعومة عند استخدام محرك Web STT", @@ -417,6 +424,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "", "Connected ({{type}})": "", "Connection failed": "", + "Connection lost. Reconnecting...": "", "Connection successful": "", "Connection Type": "", "Connections": "الاتصالات", @@ -529,6 +537,8 @@ "Delete All Chats": "حذف جميع الدردشات", "Delete all contents inside this folder": "", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "حذف المحادثه.", "Delete chat?": "هل تريد حذف المحادثة؟", "Delete Event": "", @@ -890,6 +900,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "", "Failed to create API Key.": "فشل في إنشاء مفتاح API.", + "Failed to delete calendar": "", "Failed to delete note": "", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "", @@ -1629,6 +1640,7 @@ "Reasoning Effort": "جهد الاستدلال", "Reasoning Tags": "", "Recently Used": "", + "Reconnected": "", "Record": "", "Record voice": "سجل صوت", "Redirecting you to Open WebUI Community": "OpenWebUI إعادة توجيهك إلى مجتمع ", @@ -1652,6 +1664,7 @@ "Relevance": "الصلة", "Relevance Threshold": "", "Remember Dismissal": "", + "Reminder": "", "Remove": "إزالة", "Remove {{MODELID}} from list.": "", "Remove action": "", @@ -1902,7 +1915,15 @@ "Start a new conversation": "", "Start of the channel": "بداية القناة", "Start Tag": "", + "Starting in {{count}} minutes_zero": "", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_two": "", + "Starting in {{count}} minutes_few": "", + "Starting in {{count}} minutes_many": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "", "Status cleared successfully": "", @@ -2015,6 +2036,7 @@ "This will delete {{NAME}} and all its contents.": "هذا سيحذف {{NAME}} وكل محتوياته.", "This will delete all models including custom models": "هذا سيحذف جميع النماذج بما في ذلك النماذج المخصصة", "This will delete all models including custom models and cannot be undone.": "هذا سيحذف جميع النماذج بما في ذلك المخصصة ولا يمكن التراجع عن هذا الإجراء.", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "هذا سيؤدي إلى إعادة تعيين قاعدة المعرفة ومزامنة جميع الملفات. هل ترغب في المتابعة؟", "Thorough explanation": "شرح شامل", "Thought": "", @@ -2101,6 +2123,7 @@ "Unloads {{FROM_NOW}}": "", "Unlock mysteries": "اكشف الأسرار", "Unpin": "إزالة التثبيت", + "Unpin from Sidebar": "", "Unravel secrets": "فكّ الأسرار", "Unshare Chat": "", "Unsupported file type.": "", diff --git a/src/lib/i18n/locales/az-AZ/translation.json b/src/lib/i18n/locales/az-AZ/translation.json index 9e316d538d..8eec5e5732 100644 --- a/src/lib/i18n/locales/az-AZ/translation.json +++ b/src/lib/i18n/locales/az-AZ/translation.json @@ -33,8 +33,13 @@ "{{user}}'s Chats": "{{user}} adlı istifadəçinin söhbətləri", "{{webUIName}} Backend Required": "{{webUIName}} üçün Backend tələb olunur", "*Prompt node ID(s) are required for image generation": "*Şəkil yaradılması üçün sorğu (prompt) qovşaq ID-ləri tələb olunur", + "1 hour before": "", "1 Source": "1 Mənbə", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "1 dəq əvvəl", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "İnsanların üzv kimi qoşulduğu əməkdaşlıq kanalı", "A discussion channel where access is controlled by groups and permissions": "Girişin qruplar və icazələrlə idarə olunduğu müzakirə kanalı", "A new version (v{{LATEST_VERSION}}) is now available.": "Yeni versiya (v{{LATEST_VERSION}}) artıq mövcuddur.", @@ -202,6 +207,7 @@ "Ask a question": "Sual verin", "Assistant": "Köməkçi", "Async Embedding Processing": "Asinxron Yerləşdirmə (Embedding) Emalı", + "At time of event": "", "Attach File From Knowledge": "Bilik bazasından fayl əlavə et", "Attach Files": "", "Attach Knowledge": "Bilik əlavə et", @@ -276,6 +282,7 @@ "Bypass Web Loader": "Veb Yükləyicidən Yan Keç", "Cache Base Model List": "Əsas Model Siyahısını Keşlə", "Calendar": "Təqvim", + "Calendar deleted": "", "Calendars": "", "Call": "Zəng", "Call feature is not supported when using Web STT engine": "Veb STT mühərriki istifadə edildikdə zəng funksiyası dəstəklənmir", @@ -413,6 +420,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "Öz OpenAPI uyğun xarici alət serverlərinizə qoşulun.", "Connected ({{type}})": "", "Connection failed": "Bağlantı uğursuz oldu", + "Connection lost. Reconnecting...": "", "Connection successful": "Bağlantı uğurludur", "Connection Type": "Bağlantı növü", "Connections": "Bağlantılar", @@ -525,6 +533,8 @@ "Delete All Chats": "Bütün çatları sil", "Delete all contents inside this folder": "Bu qovluğun daxilindəki bütün məzmunu sil", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "Çatı sil", "Delete chat?": "Çat silinsin?", "Delete Event": "", @@ -886,6 +896,7 @@ "Failed to connect to {{URL}} terminal server": "{{URL}} terminal serverinə qoşulmaq mümkün olmadı", "Failed to copy link": "Link kopyalanmadı", "Failed to create API Key.": "API açarı yaradılmadı.", + "Failed to delete calendar": "", "Failed to delete note": "Qeyd silinmədi", "Failed to download image": "Şəkil yüklənmədi", "Failed to extract content from the file: {{error}}": "Fayldan məzmun çıxarıla bilmədi: {{error}}", @@ -1625,6 +1636,7 @@ "Reasoning Effort": "Mühakimə səyi", "Reasoning Tags": "Mühakimə etiketləri", "Recently Used": "", + "Reconnected": "", "Record": "Yaz (səs)", "Record voice": "Səsi yaz", "Redirecting you to Open WebUI Community": "Open WebUI İcmasına yönləndirilirsiniz", @@ -1648,6 +1660,7 @@ "Relevance": "Uyğunluq", "Relevance Threshold": "Uyğunluq həddi", "Remember Dismissal": "İmtinanı yadda saxla", + "Reminder": "", "Remove": "Çıxar", "Remove {{MODELID}} from list.": "{{MODELID}} siyahıdan çıxarılsın.", "Remove action": "Əməliyyatı çıxar", @@ -1894,7 +1907,11 @@ "Start a new conversation": "Yeni söhbətə başlayın", "Start of the channel": "Kanalın başlanğıcı", "Start Tag": "Start Tag", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "Starting kernel...", + "Starting now": "", "State": "", "Status": "Status", "Status cleared successfully": "Status uğurla təmizləndi", @@ -2007,6 +2024,7 @@ "This will delete {{NAME}} and all its contents.": "Bu, {{NAME}} adlı elementi və onun bütün məzmununu siləcək.", "This will delete all models including custom models": "Bu, fərdi modellər də daxil olmaqla bütün modelləri siləcək", "This will delete all models including custom models and cannot be undone.": "Bu, fərdi modellər də daxil olmaqla bütün modelləri siləcək və geri qaytarıla bilməz.", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "Bu, bilik bazasını sıfırlayacaq və bütün faylları sinxronizasiya edəcək. Davam etmək istəyirsiniz?", "Thorough explanation": "Ətraflı izahat", "Thought": "", @@ -2093,6 +2111,7 @@ "Unloads {{FROM_NOW}}": "{{FROM_NOW}} sonra yaddaşdan silinir", "Unlock mysteries": "Sirrləri açın", "Unpin": "Sabitlənmişdən çıxar", + "Unpin from Sidebar": "", "Unravel secrets": "Gizlinləri üzə çıxarın", "Unshare Chat": "Çatı paylaşımı dayandır", "Unsupported file type.": "Dəstəklənməyən fayl növü.", diff --git a/src/lib/i18n/locales/bg-BG/translation.json b/src/lib/i18n/locales/bg-BG/translation.json index 51dbe73be0..685debf883 100644 --- a/src/lib/i18n/locales/bg-BG/translation.json +++ b/src/lib/i18n/locales/bg-BG/translation.json @@ -33,8 +33,13 @@ "{{user}}'s Chats": "{{user}}'s чатове", "{{webUIName}} Backend Required": "{{webUIName}} Изисква се Бекенд", "*Prompt node ID(s) are required for image generation": "*Идентификатор(ите) на възел-а се изисква(т) за генериране на изображения", + "1 hour before": "", "1 Source": "", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "", "A discussion channel where access is controlled by groups and permissions": "", "A new version (v{{LATEST_VERSION}}) is now available.": "Вече е налична нова версия (v{{LATEST_VERSION}}).", @@ -202,6 +207,7 @@ "Ask a question": "Задайте въпрос", "Assistant": "Асистент", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "", "Attach Files": "", "Attach Knowledge": "", @@ -276,6 +282,7 @@ "Bypass Web Loader": "", "Cache Base Model List": "", "Calendar": "Календар", + "Calendar deleted": "", "Calendars": "", "Call": "Обаждане", "Call feature is not supported when using Web STT engine": "Функцията за обаждане не се поддържа при използването на Web STT двигател", @@ -413,6 +420,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "", "Connected ({{type}})": "", "Connection failed": "", + "Connection lost. Reconnecting...": "", "Connection successful": "", "Connection Type": "", "Connections": "Връзки", @@ -525,6 +533,8 @@ "Delete All Chats": "Изтриване на всички чатове", "Delete all contents inside this folder": "", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "Изтриване на Чат", "Delete chat?": "Изтриване на чата?", "Delete Event": "", @@ -886,6 +896,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "", "Failed to create API Key.": "Неуспешно създаване на API ключ.", + "Failed to delete calendar": "", "Failed to delete note": "", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "", @@ -1625,6 +1636,7 @@ "Reasoning Effort": "Усилие за разсъждение", "Reasoning Tags": "", "Recently Used": "", + "Reconnected": "", "Record": "Запиши", "Record voice": "Записване на глас", "Redirecting you to Open WebUI Community": "Пренасочване към OpenWebUI общността", @@ -1648,6 +1660,7 @@ "Relevance": "Релевантност", "Relevance Threshold": "", "Remember Dismissal": "", + "Reminder": "", "Remove": "Изтриване", "Remove {{MODELID}} from list.": "", "Remove action": "", @@ -1894,7 +1907,11 @@ "Start a new conversation": "", "Start of the channel": "Начало на канала", "Start Tag": "", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "", "Status cleared successfully": "", @@ -2007,6 +2024,7 @@ "This will delete {{NAME}} and all its contents.": "Това ще изтрие {{NAME}} и цялото му съдържание.", "This will delete all models including custom models": "Това ще изтрие всички модели, включително персонализираните модели", "This will delete all models including custom models and cannot be undone.": "Това ще изтрие всички модели, включително персонализираните модели, и не може да бъде отменено.", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "Това ще нулира базата знания и ще синхронизира всички файлове. Желаете ли да продължите?", "Thorough explanation": "Подробно обяснение", "Thought": "", @@ -2093,6 +2111,7 @@ "Unloads {{FROM_NOW}}": "", "Unlock mysteries": "Разкрий мистерии", "Unpin": "Откачи", + "Unpin from Sidebar": "", "Unravel secrets": "Разгадай тайни", "Unshare Chat": "", "Unsupported file type.": "", diff --git a/src/lib/i18n/locales/bn-BD/translation.json b/src/lib/i18n/locales/bn-BD/translation.json index 5a1589d3b4..9437c8a347 100644 --- a/src/lib/i18n/locales/bn-BD/translation.json +++ b/src/lib/i18n/locales/bn-BD/translation.json @@ -33,8 +33,13 @@ "{{user}}'s Chats": "{{user}}র চ্যাটস", "{{webUIName}} Backend Required": "{{webUIName}} ব্যাকএন্ড আবশ্যক", "*Prompt node ID(s) are required for image generation": "", + "1 hour before": "", "1 Source": "", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "", "A discussion channel where access is controlled by groups and permissions": "", "A new version (v{{LATEST_VERSION}}) is now available.": "", @@ -202,6 +207,7 @@ "Ask a question": "", "Assistant": "", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "", "Attach Files": "", "Attach Knowledge": "", @@ -276,6 +282,7 @@ "Bypass Web Loader": "", "Cache Base Model List": "", "Calendar": "", + "Calendar deleted": "", "Calendars": "", "Call": "", "Call feature is not supported when using Web STT engine": "", @@ -413,6 +420,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "", "Connected ({{type}})": "", "Connection failed": "", + "Connection lost. Reconnecting...": "", "Connection successful": "", "Connection Type": "", "Connections": "কানেকশনগুলো", @@ -525,6 +533,8 @@ "Delete All Chats": "সব চ্যাট মুছে ফেলুন", "Delete all contents inside this folder": "", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "চ্যাট মুছে ফেলুন", "Delete chat?": "", "Delete Event": "", @@ -886,6 +896,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "", "Failed to create API Key.": "API Key তৈরি করা যায়নি।", + "Failed to delete calendar": "", "Failed to delete note": "", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "", @@ -1625,6 +1636,7 @@ "Reasoning Effort": "", "Reasoning Tags": "", "Recently Used": "", + "Reconnected": "", "Record": "", "Record voice": "ভয়েস রেকর্ড করুন", "Redirecting you to Open WebUI Community": "আপনাকে OpenWebUI কমিউনিটিতে পাঠানো হচ্ছে", @@ -1648,6 +1660,7 @@ "Relevance": "", "Relevance Threshold": "", "Remember Dismissal": "", + "Reminder": "", "Remove": "রিমুভ করুন", "Remove {{MODELID}} from list.": "", "Remove action": "", @@ -1894,7 +1907,11 @@ "Start a new conversation": "", "Start of the channel": "চ্যানেলের শুরু", "Start Tag": "", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "", "Status cleared successfully": "", @@ -2007,6 +2024,7 @@ "This will delete {{NAME}} and all its contents.": "", "This will delete all models including custom models": "", "This will delete all models including custom models and cannot be undone.": "", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "", "Thorough explanation": "পুঙ্খানুপুঙ্খ ব্যাখ্যা", "Thought": "", @@ -2093,6 +2111,7 @@ "Unloads {{FROM_NOW}}": "", "Unlock mysteries": "", "Unpin": "", + "Unpin from Sidebar": "", "Unravel secrets": "", "Unshare Chat": "", "Unsupported file type.": "", diff --git a/src/lib/i18n/locales/bo-TB/translation.json b/src/lib/i18n/locales/bo-TB/translation.json index c7f3716239..a65771c7b5 100644 --- a/src/lib/i18n/locales/bo-TB/translation.json +++ b/src/lib/i18n/locales/bo-TB/translation.json @@ -32,8 +32,13 @@ "{{user}}'s Chats": "{{user}} ཡི་ཁ་བརྡ།", "{{webUIName}} Backend Required": "{{webUIName}} རྒྱབ་སྣེ་དགོས།", "*Prompt node ID(s) are required for image generation": "*པར་བཟོའི་ཆེད་དུ་འགུལ་སློང་མདུད་ཚེག་གི་ ID(s) དགོས།", + "1 hour before": "", "1 Source": "", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "", "A discussion channel where access is controlled by groups and permissions": "", "A new version (v{{LATEST_VERSION}}) is now available.": "པར་གཞི་གསར་པ། (v{{LATEST_VERSION}}) ད་ལྟ་ཡོད།", @@ -201,6 +206,7 @@ "Ask a question": "དྲི་བ་ཞིག་འདྲི་བ།", "Assistant": "ལག་རོགས་པ།", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "", "Attach Files": "", "Attach Knowledge": "", @@ -275,6 +281,7 @@ "Bypass Web Loader": "", "Cache Base Model List": "", "Calendar": "ལོ་ཐོ།", + "Calendar deleted": "", "Calendars": "", "Call": "སྐད་འབོད།", "Call feature is not supported when using Web STT engine": "Web STT མ་ལག་སྤྱོད་སྐབས་སྐད་འབོད་ཀྱི་ཁྱད་ཆོས་ལ་རྒྱབ་སྐྱོར་མེད།", @@ -412,6 +419,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "ཁྱེད་རང་གི་ OpenAPI དང་མཐུན་པའི་ཕྱི་རོལ་ལག་ཆའི་སར་བར་ལ་སྦྲེལ་བ།", "Connected ({{type}})": "", "Connection failed": "", + "Connection lost. Reconnecting...": "", "Connection successful": "", "Connection Type": "", "Connections": "སྦྲེལ་མཐུད།", @@ -524,6 +532,8 @@ "Delete All Chats": "ཁ་བརྡ་ཡོངས་རྫོགས་བསུབ་པ།", "Delete all contents inside this folder": "", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "ཁ་བརྡ་བསུབ་པ།", "Delete chat?": "ཁ་བརྡ་བསུབ་པ།?", "Delete Event": "", @@ -885,6 +895,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "", "Failed to create API Key.": "API ལྡེ་མིག་བཟོ་མ་ཐུབ།", + "Failed to delete calendar": "", "Failed to delete note": "", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "", @@ -1624,6 +1635,7 @@ "Reasoning Effort": "རྒྱུ་མཚན་འདྲེན་པའི་འབད་བརྩོན།", "Reasoning Tags": "", "Recently Used": "", + "Reconnected": "", "Record": "", "Record voice": "སྐད་སྒྲ་ཕབ་པ།", "Redirecting you to Open WebUI Community": "ཁྱེད་ Open WebUI སྤྱི་ཚོགས་ལ་ཁ་ཕྱོགས་སྒྱུར་བཞིན་པ།", @@ -1647,6 +1659,7 @@ "Relevance": "འབྲེལ་ཡོད་རང་བཞིན།", "Relevance Threshold": "", "Remember Dismissal": "", + "Reminder": "", "Remove": "འདོར་བ།", "Remove {{MODELID}} from list.": "", "Remove action": "", @@ -1892,7 +1905,10 @@ "Start a new conversation": "", "Start of the channel": "རྒྱས་ལམ་འགོ་རིམ་", "Start Tag": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "", "Status cleared successfully": "", @@ -2005,6 +2021,7 @@ "This will delete {{NAME}} and all its contents.": "འདིས་ {{NAME}} དང་ དེའི་ནང་དོན་ཡོངས་རྫོགས་ བསུབ་ངེས།", "This will delete all models including custom models": "འདིས་སྲོལ་བཟོས་དཔེ་དབྱིབས་ཚུད་པའི་དཔེ་དབྱིབས་ཡོངས་རྫོགས་བསུབ་ངེས།", "This will delete all models including custom models and cannot be undone.": "འདིས་སྲོལ་བཟོས་དཔེ་དབྱིབས་ཚུད་པའི་དཔེ་དབྱིབས་ཡོངས་རྫོགས་བསུབ་ངེས་པ་དང་ཕྱིར་ལྡོག་བྱེད་མི་ཐུབ།", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "འདིས་ཤེས་བྱའི་རྟེན་གཞི་སླར་སྒྲིག་བྱས་ནས་ཡིག་ཆ་ཡོངས་རྫོགས་མཉམ་སྡེབ་བྱེད་ངེས། ཁྱེད་མུ་མཐུད་འདོད་ཡོད་དམ།", "Thorough explanation": "འགྲེལ་བཤད་ཞིབ་ཚགས།", "Thought": "", @@ -2091,6 +2108,7 @@ "Unloads {{FROM_NOW}}": "", "Unlock mysteries": "གསང་བ་གྲོལ་བ།", "Unpin": "ཕྱིར་འདོན།", + "Unpin from Sidebar": "", "Unravel secrets": "གསང་བ་གྲོལ་བ།", "Unshare Chat": "", "Unsupported file type.": "", diff --git a/src/lib/i18n/locales/bs-BA/translation.json b/src/lib/i18n/locales/bs-BA/translation.json index 3316f8c4a7..d28abefd59 100644 --- a/src/lib/i18n/locales/bs-BA/translation.json +++ b/src/lib/i18n/locales/bs-BA/translation.json @@ -34,8 +34,13 @@ "{{user}}'s Chats": "Razgovori korisnika {{user}}", "{{webUIName}} Backend Required": "{{webUIName}} Backend je potreban", "*Prompt node ID(s) are required for image generation": "", + "1 hour before": "", "1 Source": "", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "", "A discussion channel where access is controlled by groups and permissions": "", "A new version (v{{LATEST_VERSION}}) is now available.": "", @@ -203,6 +208,7 @@ "Ask a question": "Pitaj pitanje", "Assistant": "Asistent", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "", "Attach Files": "", "Attach Knowledge": "Prikazi znanje", @@ -277,6 +283,7 @@ "Bypass Web Loader": "", "Cache Base Model List": "", "Calendar": "", + "Calendar deleted": "", "Calendars": "", "Call": "Poziv", "Call feature is not supported when using Web STT engine": "Značajka poziva nije podržana kada se koristi Web STT mehanizam", @@ -414,6 +421,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "", "Connected ({{type}})": "", "Connection failed": "Konekcija nije uspjela", + "Connection lost. Reconnecting...": "", "Connection successful": "Konekcija uspjesna", "Connection Type": "Tip Konekcije", "Connections": "Povezivanja", @@ -526,6 +534,8 @@ "Delete All Chats": "Izbriši sve razgovore", "Delete all contents inside this folder": "", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "Izbriši razgovor", "Delete chat?": "", "Delete Event": "", @@ -887,6 +897,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "", "Failed to create API Key.": "Neuspješno stvaranje API ključa.", + "Failed to delete calendar": "", "Failed to delete note": "", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "", @@ -1626,6 +1637,7 @@ "Reasoning Effort": "", "Reasoning Tags": "", "Recently Used": "", + "Reconnected": "", "Record": "", "Record voice": "Snimanje glasa", "Redirecting you to Open WebUI Community": "Preusmjeravanje na OpenWebUI zajednicu", @@ -1649,6 +1661,7 @@ "Relevance": "", "Relevance Threshold": "", "Remember Dismissal": "", + "Reminder": "", "Remove": "Ukloni", "Remove {{MODELID}} from list.": "", "Remove action": "", @@ -1896,7 +1909,12 @@ "Start a new conversation": "", "Start of the channel": "Početak kanala", "Start Tag": "", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_few": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "", "Status cleared successfully": "", @@ -2009,6 +2027,7 @@ "This will delete {{NAME}} and all its contents.": "", "This will delete all models including custom models": "", "This will delete all models including custom models and cannot be undone.": "", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "", "Thorough explanation": "Detaljno objašnjenje", "Thought": "", @@ -2095,6 +2114,7 @@ "Unloads {{FROM_NOW}}": "", "Unlock mysteries": "", "Unpin": "", + "Unpin from Sidebar": "", "Unravel secrets": "", "Unshare Chat": "", "Unsupported file type.": "", diff --git a/src/lib/i18n/locales/ca-ES/translation.json b/src/lib/i18n/locales/ca-ES/translation.json index add558aebf..a3793e5e42 100644 --- a/src/lib/i18n/locales/ca-ES/translation.json +++ b/src/lib/i18n/locales/ca-ES/translation.json @@ -34,8 +34,13 @@ "{{user}}'s Chats": "Els xats de {{user}}", "{{webUIName}} Backend Required": "El Backend de {{webUIName}} és necessari", "*Prompt node ID(s) are required for image generation": "*Els identificadors de nodes d'indicacions són necessaris per a la generació d'imatges", + "1 hour before": "", "1 Source": "1 font", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "1m_time_ago", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "Un canal de col·laboració on la gent s'uneix com a membres", "A discussion channel where access is controlled by groups and permissions": "Un canal de discussió on l'accés està controlat per grups i permisos", "A new version (v{{LATEST_VERSION}}) is now available.": "Hi ha una nova versió disponible (v{{LATEST_VERSION}}).", @@ -203,6 +208,7 @@ "Ask a question": "Fer una pregunta", "Assistant": "Assistent", "Async Embedding Processing": "Procés d'incrustat asíncron", + "At time of event": "", "Attach File From Knowledge": "Adjuntar arxiu del coneixement", "Attach Files": "Adjuntar arxius", "Attach Knowledge": "Adjuntar coneixement", @@ -277,6 +283,7 @@ "Bypass Web Loader": "Ometre el càrregador web", "Cache Base Model List": "Llista de models base en memòria cau", "Calendar": "Calendari", + "Calendar deleted": "", "Calendars": "", "Call": "Trucada", "Call feature is not supported when using Web STT engine": "La funció de trucada no s'admet quan s'utilitza el motor Web STT", @@ -414,6 +421,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "Connecta als teus propis servidors d'eines externs compatibles amb OpenAPI", "Connected ({{type}})": "Connectat ({{type}})", "Connection failed": "La connexió ha fallat", + "Connection lost. Reconnecting...": "", "Connection successful": "Connexió correcta", "Connection Type": "Tipus de connexió", "Connections": "Connexions", @@ -526,6 +534,8 @@ "Delete All Chats": "Eliminar tots els xats", "Delete all contents inside this folder": "Eliminar tot el contingut d'aquesta carpeta", "Delete automation?": "Eliminar l'automatització", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "Eliminar xat", "Delete chat?": "Eliminar el xat?", "Delete Event": "", @@ -887,6 +897,7 @@ "Failed to connect to {{URL}} terminal server": "No s'ha pogut connecta al servidor de terminal {{URL}}", "Failed to copy link": "No s'ha pogut copiar l'enllaç", "Failed to create API Key.": "No s'ha pogut crear la clau API.", + "Failed to delete calendar": "", "Failed to delete note": "No s'ha pogut eliminar la nota", "Failed to download image": "No s'ha pogut descarregar la imatge", "Failed to extract content from the file: {{error}}": "No s'ha pogut extreure el contingut del fitxer: {{error}}", @@ -1626,6 +1637,7 @@ "Reasoning Effort": "Esforç de raonament", "Reasoning Tags": "Etiqueta de raonament", "Recently Used": "Recentment utilitzat", + "Reconnected": "", "Record": "Enregistrar", "Record voice": "Enregistrar la veu", "Redirecting you to Open WebUI Community": "Redirigint-te a la comunitat OpenWebUI", @@ -1649,6 +1661,7 @@ "Relevance": "Rellevància", "Relevance Threshold": "Límit de rellevància", "Remember Dismissal": "Recordar la decisió de refutar", + "Reminder": "", "Remove": "Eliminar", "Remove {{MODELID}} from list.": "Eliminar {{MODELID}} de la llista", "Remove action": "Eliminar l'acció", @@ -1896,7 +1909,12 @@ "Start a new conversation": "Iniciar una nova conversa", "Start of the channel": "Inici del canal", "Start Tag": "Etiqueta d'inici", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_many": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "Iniciant el kernel...", + "Starting now": "", "State": "Estat", "Status": "Estat", "Status cleared successfully": "S'ha eliminat correctament el teu estat", @@ -2009,6 +2027,7 @@ "This will delete {{NAME}} and all its contents.": "Això eliminarà {{NAME}} i tots els continguts.", "This will delete all models including custom models": "Això eliminarà tots els models incloent els personalitzats", "This will delete all models including custom models and cannot be undone.": "Això eliminarà tots els models incloent els personalitzats i no es pot desfer", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "Això restablirà la base de coneixement i sincronitzarà tots els fitxers. Vols continuar?", "Thorough explanation": "Explicació en detall", "Thought": "Pensament", @@ -2095,6 +2114,7 @@ "Unloads {{FROM_NOW}}": "Es descarrega {{FROM_NOW}}", "Unlock mysteries": "Desbloqueja els misteris", "Unpin": "Alliberar", + "Unpin from Sidebar": "", "Unravel secrets": "Descobreix els secrets", "Unshare Chat": "Deixar de compartir el xat", "Unsupported file type.": "Tipus no suportat", diff --git a/src/lib/i18n/locales/ceb-PH/translation.json b/src/lib/i18n/locales/ceb-PH/translation.json index db49608fee..d1278ac30b 100644 --- a/src/lib/i18n/locales/ceb-PH/translation.json +++ b/src/lib/i18n/locales/ceb-PH/translation.json @@ -33,8 +33,13 @@ "{{user}}'s Chats": "", "{{webUIName}} Backend Required": "Backend {{webUIName}} gikinahanglan", "*Prompt node ID(s) are required for image generation": "", + "1 hour before": "", "1 Source": "", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "", "A discussion channel where access is controlled by groups and permissions": "", "A new version (v{{LATEST_VERSION}}) is now available.": "", @@ -202,6 +207,7 @@ "Ask a question": "", "Assistant": "", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "", "Attach Files": "", "Attach Knowledge": "", @@ -276,6 +282,7 @@ "Bypass Web Loader": "", "Cache Base Model List": "", "Calendar": "", + "Calendar deleted": "", "Calendars": "", "Call": "", "Call feature is not supported when using Web STT engine": "", @@ -413,6 +420,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "", "Connected ({{type}})": "", "Connection failed": "", + "Connection lost. Reconnecting...": "", "Connection successful": "", "Connection Type": "", "Connections": "Mga koneksyon", @@ -525,6 +533,8 @@ "Delete All Chats": "", "Delete all contents inside this folder": "", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "", "Delete chat?": "", "Delete Event": "", @@ -886,6 +896,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "", "Failed to create API Key.": "", + "Failed to delete calendar": "", "Failed to delete note": "", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "", @@ -1625,6 +1636,7 @@ "Reasoning Effort": "", "Reasoning Tags": "", "Recently Used": "", + "Reconnected": "", "Record": "", "Record voice": "Irekord ang tingog", "Redirecting you to Open WebUI Community": "Gi-redirect ka sa komunidad sa OpenWebUI", @@ -1648,6 +1660,7 @@ "Relevance": "", "Relevance Threshold": "", "Remember Dismissal": "", + "Reminder": "", "Remove": "", "Remove {{MODELID}} from list.": "", "Remove action": "", @@ -1894,7 +1907,11 @@ "Start a new conversation": "", "Start of the channel": "Sinugdan sa channel", "Start Tag": "", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "", "Status cleared successfully": "", @@ -2007,6 +2024,7 @@ "This will delete {{NAME}} and all its contents.": "", "This will delete all models including custom models": "", "This will delete all models including custom models and cannot be undone.": "", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "", "Thorough explanation": "", "Thought": "", @@ -2093,6 +2111,7 @@ "Unloads {{FROM_NOW}}": "", "Unlock mysteries": "", "Unpin": "", + "Unpin from Sidebar": "", "Unravel secrets": "", "Unshare Chat": "", "Unsupported file type.": "", diff --git a/src/lib/i18n/locales/cs-CZ/translation.json b/src/lib/i18n/locales/cs-CZ/translation.json index b2ec0ebb05..a787579837 100644 --- a/src/lib/i18n/locales/cs-CZ/translation.json +++ b/src/lib/i18n/locales/cs-CZ/translation.json @@ -35,8 +35,13 @@ "{{user}}'s Chats": "Konverzace uživatele {{user}}", "{{webUIName}} Backend Required": "Je vyžadován backend {{webUIName}}", "*Prompt node ID(s) are required for image generation": "*Pro generování obrázků jsou vyžadována ID uzlů instrukce", + "1 hour before": "", "1 Source": "", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "", "A discussion channel where access is controlled by groups and permissions": "", "A new version (v{{LATEST_VERSION}}) is now available.": "Nová verze (v{{LATEST_VERSION}}) je nyní k dispozici.", @@ -204,6 +209,7 @@ "Ask a question": "Položit otázku", "Assistant": "Asistent", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "", "Attach Files": "", "Attach Knowledge": "Připojit znalosti", @@ -278,6 +284,7 @@ "Bypass Web Loader": "Obejít webový zavaděč", "Cache Base Model List": "Ukládat seznam základních modelů do mezipaměti", "Calendar": "Kalendář", + "Calendar deleted": "", "Calendars": "", "Call": "Volání", "Call feature is not supported when using Web STT engine": "Funkce volání není podporována při použití webového STT jádra.", @@ -415,6 +422,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "Připojte se k vlastním externím serverům nástrojů kompatibilním s OpenAPI.", "Connected ({{type}})": "", "Connection failed": "Připojení se nezdařilo", + "Connection lost. Reconnecting...": "", "Connection successful": "Připojení úspěšné", "Connection Type": "Typ připojení", "Connections": "Připojení", @@ -527,6 +535,8 @@ "Delete All Chats": "Smazat všechny konverzace", "Delete all contents inside this folder": "", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "Smazat konverzaci", "Delete chat?": "Smazat konverzaci?", "Delete Event": "", @@ -888,6 +898,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "Nepodařilo se zkopírovat odkaz", "Failed to create API Key.": "Nepodařilo se vytvořit API klíč.", + "Failed to delete calendar": "", "Failed to delete note": "Nepodařilo se smazat poznámku", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "Nepodařilo se extrahovat obsah ze souboru: {{error}}", @@ -1627,6 +1638,7 @@ "Reasoning Effort": "reasoning effort", "Reasoning Tags": "reasoning tags", "Recently Used": "", + "Reconnected": "", "Record": "Nahrát", "Record voice": "Nahrát hlas", "Redirecting you to Open WebUI Community": "Přesměrovávám vás do komunity Open WebUI", @@ -1650,6 +1662,7 @@ "Relevance": "Relevance", "Relevance Threshold": "Prahová hodnota relevance", "Remember Dismissal": "Pamatovat si zavření", + "Reminder": "", "Remove": "Odebrat", "Remove {{MODELID}} from list.": "Odebrat {{MODELID}} ze seznamu.", "Remove action": "", @@ -1898,7 +1911,13 @@ "Start a new conversation": "", "Start of the channel": "Začátek kanálu", "Start Tag": "", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_few": "", + "Starting in {{count}} minutes_many": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "", "Status cleared successfully": "", @@ -2011,6 +2030,7 @@ "This will delete {{NAME}} and all its contents.": "Tím se smaže {{NAME}} a veškerý jeho obsah.", "This will delete all models including custom models": "Tím se smažou všechny modely včetně vlastních modelů", "This will delete all models including custom models and cannot be undone.": "Tím se smažou všechny modely včetně vlastních a tuto akci nelze vrátit zpět.", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "Tím se resetuje znalostní báze a synchronizují se všechny soubory. Přejete si pokračovat?", "Thorough explanation": "Důkladné vysvětlení", "Thought": "", @@ -2097,6 +2117,7 @@ "Unloads {{FROM_NOW}}": "Uvolní se {{FROM_NOW}}", "Unlock mysteries": "Odhalte záhady", "Unpin": "Odepnout", + "Unpin from Sidebar": "", "Unravel secrets": "Rozplétejte tajemství", "Unshare Chat": "", "Unsupported file type.": "Nepodporovaný typ souboru.", diff --git a/src/lib/i18n/locales/da-DK/translation.json b/src/lib/i18n/locales/da-DK/translation.json index 09d336d179..cde38de62f 100644 --- a/src/lib/i18n/locales/da-DK/translation.json +++ b/src/lib/i18n/locales/da-DK/translation.json @@ -33,8 +33,13 @@ "{{user}}'s Chats": "{{user}}s chats", "{{webUIName}} Backend Required": "{{webUIName}} Backend kræves", "*Prompt node ID(s) are required for image generation": "*Prompt node ID(s) er påkrævet for at kunne generere billeder", + "1 hour before": "", "1 Source": "1 kilde", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "En samarbejdskanal hvor folk tilmelder sig som medlemmer", "A discussion channel where access is controlled by groups and permissions": "En diskussionskanal hvor adgang styres af grupper og tilladelser", "A new version (v{{LATEST_VERSION}}) is now available.": "En ny version (v{{LATEST_VERSION}}) er nu tilgængelig.", @@ -202,6 +207,7 @@ "Ask a question": "Stil et spørgsmål", "Assistant": "Assistent", "Async Embedding Processing": "Asynkron embedding processering", + "At time of event": "", "Attach File From Knowledge": "Vedhæft fil fra viden", "Attach Files": "", "Attach Knowledge": "Vedhæft viden", @@ -276,6 +282,7 @@ "Bypass Web Loader": "Omgå Web Loader", "Cache Base Model List": "Cache Base Model List", "Calendar": "Kalender", + "Calendar deleted": "", "Calendars": "", "Call": "Opkald", "Call feature is not supported when using Web STT engine": "Opkaldsfunktion er ikke understøttet for Web STT engine", @@ -413,6 +420,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "Opret forbindelse til dine egne OpenAPI kompatible eksterne værktøjsservere.", "Connected ({{type}})": "", "Connection failed": "Forbindelse mislykkedes", + "Connection lost. Reconnecting...": "", "Connection successful": "Forbindelse lykkedes", "Connection Type": "Forbindelsestype", "Connections": "Forbindelser", @@ -525,6 +533,8 @@ "Delete All Chats": "Slet alle chats", "Delete all contents inside this folder": "Slet alt indhold i denne mappe", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "Slet chat", "Delete chat?": "Slet chat?", "Delete Event": "", @@ -886,6 +896,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "Kunne ikke kopiere link", "Failed to create API Key.": "Kunne ikke oprette API-nøgle.", + "Failed to delete calendar": "", "Failed to delete note": "Kunne ikke slette note", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "Kunne ikke udtrække indhold fra filen: {{error}}", @@ -1625,6 +1636,7 @@ "Reasoning Effort": "Ræsonnements indsats", "Reasoning Tags": "Ræsonneringstags", "Recently Used": "", + "Reconnected": "", "Record": "Optag", "Record voice": "Optag stemme", "Redirecting you to Open WebUI Community": "Omdirigerer dig til OpenWebUI Community", @@ -1648,6 +1660,7 @@ "Relevance": "Relevans", "Relevance Threshold": "Relevans tærskel", "Remember Dismissal": "Husk afvisning", + "Reminder": "", "Remove": "Fjern", "Remove {{MODELID}} from list.": "Fjern {{MODELID}} fra listen.", "Remove action": "", @@ -1894,7 +1907,11 @@ "Start a new conversation": "Start en ny samtale", "Start of the channel": "Kanalens start", "Start Tag": "Start tag", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "Status", "Status cleared successfully": "Status slettet", @@ -2007,6 +2024,7 @@ "This will delete {{NAME}} and all its contents.": "Dette vil slette {{NAME}} og alt dens indhold.", "This will delete all models including custom models": "Dette vil slette alle modeller, inklusive brugerdefinerede modeller", "This will delete all models including custom models and cannot be undone.": "Dette vil slette alle modeller, inklusive brugerdefinerede modeller og kan ikke fortrydes.", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "Dette vil nulstille vidensbasen og synkronisere alle filer. Vil du fortsætte?", "Thorough explanation": "Grundig forklaring", "Thought": "", @@ -2093,6 +2111,7 @@ "Unloads {{FROM_NOW}}": "Aflaster {{FROM_NOW}}", "Unlock mysteries": "Lås op for mysterier", "Unpin": "Frigør", + "Unpin from Sidebar": "", "Unravel secrets": "Afslør hemmeligheder", "Unshare Chat": "", "Unsupported file type.": "Ikke-understøttet filtype.", diff --git a/src/lib/i18n/locales/de-DE/translation.json b/src/lib/i18n/locales/de-DE/translation.json index 5cd8fc30e6..aec1910274 100644 --- a/src/lib/i18n/locales/de-DE/translation.json +++ b/src/lib/i18n/locales/de-DE/translation.json @@ -33,8 +33,13 @@ "{{user}}'s Chats": "Chats von {{user}}", "{{webUIName}} Backend Required": "{{webUIName}}-Backend erforderlich", "*Prompt node ID(s) are required for image generation": "*Prompt-Node-ID(s) sind für die Bildgenerierung erforderlich", + "1 hour before": "", "1 Source": "1 Quelle", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "vor 1 Minute", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "Ein Kanal zur Zusammenarbeit, dem Mitglieder beitreten können", "A discussion channel where access is controlled by groups and permissions": "Ein Diskussionskanal, dessen Zugriff durch Gruppen und Berechtigungen gesteuert wird", "A new version (v{{LATEST_VERSION}}) is now available.": "Eine neue Version (v{{LATEST_VERSION}}) ist jetzt verfügbar.", @@ -202,6 +207,7 @@ "Ask a question": "Stellen Sie eine Frage", "Assistant": "Assistent", "Async Embedding Processing": "Asynchrone Embedding-Verarbeitung", + "At time of event": "", "Attach File From Knowledge": "Datei aus Wissensspeicher anhängen", "Attach Files": "Dateien anhängen", "Attach Knowledge": "Wissen anhängen", @@ -276,6 +282,7 @@ "Bypass Web Loader": "Web-Loader umgehen", "Cache Base Model List": "Basismodell-Liste cachen", "Calendar": "Kalender", + "Calendar deleted": "", "Calendars": "", "Call": "Anruf", "Call feature is not supported when using Web STT engine": "Die Anruffunktion wird bei Verwendung der Web-STT-Engine nicht unterstützt.", @@ -413,6 +420,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "Verbinden Sie Ihre eigenen OpenAPI-kompatiblen externen Tool-Server.", "Connected ({{type}})": "Verbunden ({{type}})", "Connection failed": "Verbindung fehlgeschlagen", + "Connection lost. Reconnecting...": "", "Connection successful": "Verbindung erfolgreich", "Connection Type": "Verbindungstyp", "Connections": "Verbindungen", @@ -525,6 +533,8 @@ "Delete All Chats": "Alle Chats löschen", "Delete all contents inside this folder": "Alle Inhalte in diesem Ordner löschen", "Delete automation?": "Automatisierung löschen?", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "Chat löschen", "Delete chat?": "Chat löschen?", "Delete Event": "", @@ -886,6 +896,7 @@ "Failed to connect to {{URL}} terminal server": "Fehler beim Verbinden zum Terminal Server {{URL}}", "Failed to copy link": "Link konnte nicht kopiert werden", "Failed to create API Key.": "API-Schlüssel konnte nicht erstellt werden.", + "Failed to delete calendar": "", "Failed to delete note": "Notiz konnte nicht gelöscht werden", "Failed to download image": "Bild konnte nicht heruntergeladen werden", "Failed to extract content from the file: {{error}}": "Inhaltsextraktion fehlgeschlagen: {{error}}", @@ -1625,6 +1636,7 @@ "Reasoning Effort": "Reasoning Effort", "Reasoning Tags": "Reasoning Tags", "Recently Used": "Kürzlich verwendet", + "Reconnected": "", "Record": "Aufnehmen", "Record voice": "Stimme aufnehmen", "Redirecting you to Open WebUI Community": "Sie werden zur Open WebUI Community weitergeleitet", @@ -1648,6 +1660,7 @@ "Relevance": "Relevanz", "Relevance Threshold": "Relevanzschwelle", "Remember Dismissal": "Ausblendung merken", + "Reminder": "", "Remove": "Entfernen", "Remove {{MODELID}} from list.": "{{MODELID}} von der Liste entfernen.", "Remove action": "Action entfernen", @@ -1894,7 +1907,11 @@ "Start a new conversation": "Neue Unterhaltung beginnen", "Start of the channel": "Beginn des Kanals", "Start Tag": "Start-Tag", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "Kernel starten...", + "Starting now": "", "State": "Zustand", "Status": "Status", "Status cleared successfully": "Status erfolgreich gelöscht", @@ -2007,6 +2024,7 @@ "This will delete {{NAME}} and all its contents.": "Dies löscht {{NAME}} und alle Inhalte.", "This will delete all models including custom models": "Dies löscht alle Modelle, einschließlich benutzerdefinierter Modelle", "This will delete all models including custom models and cannot be undone.": "Dies löscht alle Modelle, einschließlich benutzerdefinierter Modelle, und kann nicht rückgängig gemacht werden.", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "Dadurch wird der Wissensspeicher zurückgesetzt und alle Dateien werden synchronisiert. Möchten Sie fortfahren?", "Thorough explanation": "Ausführliche Erklärung", "Thought": "Gedanke", @@ -2093,6 +2111,7 @@ "Unloads {{FROM_NOW}}": "Entlädt {{FROM_NOW}}", "Unlock mysteries": "Geheimnisse entschlüsseln", "Unpin": "Lösen", + "Unpin from Sidebar": "", "Unravel secrets": "Geheimnisse lüften", "Unshare Chat": "Chat-Freigabe entfernen", "Unsupported file type.": "Nicht unterstützter Dateityp.", diff --git a/src/lib/i18n/locales/dg-DG/translation.json b/src/lib/i18n/locales/dg-DG/translation.json index f1e6fddc73..b4a402abac 100644 --- a/src/lib/i18n/locales/dg-DG/translation.json +++ b/src/lib/i18n/locales/dg-DG/translation.json @@ -33,8 +33,13 @@ "{{user}}'s Chats": "", "{{webUIName}} Backend Required": "{{webUIName}} Backend Much Required", "*Prompt node ID(s) are required for image generation": "", + "1 hour before": "", "1 Source": "", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "", "A discussion channel where access is controlled by groups and permissions": "", "A new version (v{{LATEST_VERSION}}) is now available.": "", @@ -202,6 +207,7 @@ "Ask a question": "", "Assistant": "", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "", "Attach Files": "", "Attach Knowledge": "", @@ -276,6 +282,7 @@ "Bypass Web Loader": "", "Cache Base Model List": "", "Calendar": "", + "Calendar deleted": "", "Calendars": "", "Call": "", "Call feature is not supported when using Web STT engine": "", @@ -413,6 +420,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "", "Connected ({{type}})": "", "Connection failed": "", + "Connection lost. Reconnecting...": "", "Connection successful": "", "Connection Type": "", "Connections": "Connections", @@ -525,6 +533,8 @@ "Delete All Chats": "", "Delete all contents inside this folder": "", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "", "Delete chat?": "", "Delete Event": "", @@ -886,6 +896,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "", "Failed to create API Key.": "", + "Failed to delete calendar": "", "Failed to delete note": "", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "", @@ -1625,6 +1636,7 @@ "Reasoning Effort": "", "Reasoning Tags": "", "Recently Used": "", + "Reconnected": "", "Record": "", "Record voice": "Record Bark", "Redirecting you to Open WebUI Community": "Redirecting you to Open WebUI Community", @@ -1648,6 +1660,7 @@ "Relevance": "", "Relevance Threshold": "", "Remember Dismissal": "", + "Reminder": "", "Remove": "", "Remove {{MODELID}} from list.": "", "Remove action": "", @@ -1894,7 +1907,11 @@ "Start a new conversation": "", "Start of the channel": "Start of channel", "Start Tag": "", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "", "Status cleared successfully": "", @@ -2007,6 +2024,7 @@ "This will delete {{NAME}} and all its contents.": "", "This will delete all models including custom models": "", "This will delete all models including custom models and cannot be undone.": "", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "", "Thorough explanation": "", "Thought": "", @@ -2093,6 +2111,7 @@ "Unloads {{FROM_NOW}}": "", "Unlock mysteries": "", "Unpin": "", + "Unpin from Sidebar": "", "Unravel secrets": "", "Unshare Chat": "", "Unsupported file type.": "", diff --git a/src/lib/i18n/locales/el-GR/translation.json b/src/lib/i18n/locales/el-GR/translation.json index 3d59704cdb..22391542aa 100644 --- a/src/lib/i18n/locales/el-GR/translation.json +++ b/src/lib/i18n/locales/el-GR/translation.json @@ -33,8 +33,13 @@ "{{user}}'s Chats": "Συνομιλίες του {{user}}", "{{webUIName}} Backend Required": "{{webUIName}} Απαιτείται Backend", "*Prompt node ID(s) are required for image generation": "*Τα αναγνωριστικά κόμβου Prompt απαιτούνται για τη δημιουργία εικόνων", + "1 hour before": "", "1 Source": "", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "", "A discussion channel where access is controlled by groups and permissions": "", "A new version (v{{LATEST_VERSION}}) is now available.": "Μια νέα έκδοση (v{{LATEST_VERSION}}) είναι τώρα διαθέσιμη.", @@ -202,6 +207,7 @@ "Ask a question": "Ρωτήστε μια ερώτηση", "Assistant": "Βοηθός", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "", "Attach Files": "", "Attach Knowledge": "Προσθήκη Knowledge", @@ -276,6 +282,7 @@ "Bypass Web Loader": "Παράκαμψη Φορτωτή Διαδικτύου", "Cache Base Model List": "Αποθήκευση Λίστας Βασικών Μοντέλων Στην Κρυφή Μνήμη", "Calendar": "", + "Calendar deleted": "", "Calendars": "", "Call": "Κλήση", "Call feature is not supported when using Web STT engine": "Η λειτουργία κλήσης δεν υποστηρίζεται όταν χρησιμοποιείται η μηχανή Web STT", @@ -413,6 +420,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "Συνδεθείτε στους δικούς σας διακομιστές εξωτερικών εργαλείων συμβατών με OpenAPI.", "Connected ({{type}})": "", "Connection failed": "Σύνδεση απέτυχε", + "Connection lost. Reconnecting...": "", "Connection successful": "Σύνδεση επιτυχής", "Connection Type": "Είδος Σύνδεσης", "Connections": "Συνδέσεις", @@ -525,6 +533,8 @@ "Delete All Chats": "Διαγραφή Όλων των Συνομιλιών", "Delete all contents inside this folder": "", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "Διαγραφή Συνομιλίας", "Delete chat?": "Διαγραφή συνομιλίας;", "Delete Event": "", @@ -886,6 +896,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "Αποτυχία αντιγραφής συνδέσμου", "Failed to create API Key.": "Αποτυχία δημιουργίας Κλειδιού API.", + "Failed to delete calendar": "", "Failed to delete note": "Αποτυχία διαγραφής σημειώσεως", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "", @@ -1625,6 +1636,7 @@ "Reasoning Effort": "", "Reasoning Tags": "", "Recently Used": "", + "Reconnected": "", "Record": "", "Record voice": "Εγγραφή φωνής", "Redirecting you to Open WebUI Community": "Μετακατεύθυνση στην Κοινότητα OpenWebUI", @@ -1648,6 +1660,7 @@ "Relevance": "Σχετικότητα", "Relevance Threshold": "Όριο Σχετικότητας", "Remember Dismissal": "Θύμηση Απόρριψης", + "Reminder": "", "Remove": "Αφαίρεση", "Remove {{MODELID}} from list.": "", "Remove action": "", @@ -1894,7 +1907,11 @@ "Start a new conversation": "", "Start of the channel": "Αρχή του καναλιού", "Start Tag": "", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "", "Status cleared successfully": "", @@ -2007,6 +2024,7 @@ "This will delete {{NAME}} and all its contents.": "Αυτό θα διαγράψει το {{NAME}} και όλο το περιεχόμενό του.", "This will delete all models including custom models": "Αυτό θα διαγράψει όλα τα μοντέλα, συμπεριλαμβανομένων των προσαρμοσμένων μοντέλων", "This will delete all models including custom models and cannot be undone.": "Αυτό θα διαγράψει όλα τα μοντέλα, συμπεριλαμβανομένων των προσαρμοσμένων μοντέλων και δεν μπορεί να αναιρεθεί.", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "Αυτό θα επαναφέρει τη βάση γνώσης και θα συγχρονίσει όλα τα αρχεία. Θέλετε να συνεχίσετε;", "Thorough explanation": "Λεπτομερής εξήγηση", "Thought": "", @@ -2093,6 +2111,7 @@ "Unloads {{FROM_NOW}}": "", "Unlock mysteries": "Ξεκλείδωμα μυστηρίων", "Unpin": "Ξεκαρφίτσωμα", + "Unpin from Sidebar": "", "Unravel secrets": "Ξετυλίξτε μυστικά", "Unshare Chat": "", "Unsupported file type.": "", diff --git a/src/lib/i18n/locales/en-GB/translation.json b/src/lib/i18n/locales/en-GB/translation.json index d24b7aeda5..88cfb9a311 100644 --- a/src/lib/i18n/locales/en-GB/translation.json +++ b/src/lib/i18n/locales/en-GB/translation.json @@ -33,8 +33,13 @@ "{{user}}'s Chats": "", "{{webUIName}} Backend Required": "", "*Prompt node ID(s) are required for image generation": "", + "1 hour before": "", "1 Source": "", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "", "A discussion channel where access is controlled by groups and permissions": "", "A new version (v{{LATEST_VERSION}}) is now available.": "", @@ -202,6 +207,7 @@ "Ask a question": "", "Assistant": "", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "", "Attach Files": "", "Attach Knowledge": "", @@ -276,6 +282,7 @@ "Bypass Web Loader": "", "Cache Base Model List": "", "Calendar": "", + "Calendar deleted": "", "Calendars": "", "Call": "", "Call feature is not supported when using Web STT engine": "", @@ -413,6 +420,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "", "Connected ({{type}})": "", "Connection failed": "", + "Connection lost. Reconnecting...": "", "Connection successful": "", "Connection Type": "", "Connections": "", @@ -525,6 +533,8 @@ "Delete All Chats": "", "Delete all contents inside this folder": "", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "", "Delete chat?": "", "Delete Event": "", @@ -886,6 +896,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "", "Failed to create API Key.": "", + "Failed to delete calendar": "", "Failed to delete note": "", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "", @@ -1625,6 +1636,7 @@ "Reasoning Effort": "", "Reasoning Tags": "", "Recently Used": "", + "Reconnected": "", "Record": "", "Record voice": "", "Redirecting you to Open WebUI Community": "", @@ -1648,6 +1660,7 @@ "Relevance": "", "Relevance Threshold": "", "Remember Dismissal": "", + "Reminder": "", "Remove": "", "Remove {{MODELID}} from list.": "", "Remove action": "", @@ -1894,7 +1907,11 @@ "Start a new conversation": "", "Start of the channel": "", "Start Tag": "", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "", "Status cleared successfully": "", @@ -2007,6 +2024,7 @@ "This will delete {{NAME}} and all its contents.": "", "This will delete all models including custom models": "", "This will delete all models including custom models and cannot be undone.": "", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "", "Thorough explanation": "", "Thought": "", @@ -2093,6 +2111,7 @@ "Unloads {{FROM_NOW}}": "", "Unlock mysteries": "", "Unpin": "", + "Unpin from Sidebar": "", "Unravel secrets": "", "Unshare Chat": "", "Unsupported file type.": "", diff --git a/src/lib/i18n/locales/en-US/translation.json b/src/lib/i18n/locales/en-US/translation.json index b53f2ae485..ad0f42f733 100644 --- a/src/lib/i18n/locales/en-US/translation.json +++ b/src/lib/i18n/locales/en-US/translation.json @@ -33,8 +33,13 @@ "{{user}}'s Chats": "", "{{webUIName}} Backend Required": "", "*Prompt node ID(s) are required for image generation": "", + "1 hour before": "", "1 Source": "", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "", "A discussion channel where access is controlled by groups and permissions": "", "A new version (v{{LATEST_VERSION}}) is now available.": "", @@ -202,6 +207,7 @@ "Ask a question": "", "Assistant": "", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "", "Attach Files": "", "Attach Knowledge": "", @@ -276,6 +282,7 @@ "Bypass Web Loader": "", "Cache Base Model List": "", "Calendar": "", + "Calendar deleted": "", "Calendars": "", "Call": "", "Call feature is not supported when using Web STT engine": "", @@ -413,6 +420,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "", "Connected ({{type}})": "", "Connection failed": "", + "Connection lost. Reconnecting...": "", "Connection successful": "", "Connection Type": "", "Connections": "", @@ -525,6 +533,8 @@ "Delete All Chats": "", "Delete all contents inside this folder": "", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "", "Delete chat?": "", "Delete Event": "", @@ -886,6 +896,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "", "Failed to create API Key.": "", + "Failed to delete calendar": "", "Failed to delete note": "", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "", @@ -1625,6 +1636,7 @@ "Reasoning Effort": "", "Reasoning Tags": "", "Recently Used": "", + "Reconnected": "", "Record": "", "Record voice": "", "Redirecting you to Open WebUI Community": "", @@ -1648,6 +1660,7 @@ "Relevance": "", "Relevance Threshold": "", "Remember Dismissal": "", + "Reminder": "", "Remove": "", "Remove {{MODELID}} from list.": "", "Remove action": "", @@ -1894,7 +1907,11 @@ "Start a new conversation": "", "Start of the channel": "", "Start Tag": "", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "", "Status cleared successfully": "", @@ -2007,6 +2024,7 @@ "This will delete {{NAME}} and all its contents.": "", "This will delete all models including custom models": "", "This will delete all models including custom models and cannot be undone.": "", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "", "Thorough explanation": "", "Thought": "", @@ -2093,6 +2111,7 @@ "Unloads {{FROM_NOW}}": "", "Unlock mysteries": "", "Unpin": "", + "Unpin from Sidebar": "", "Unravel secrets": "", "Unshare Chat": "", "Unsupported file type.": "", diff --git a/src/lib/i18n/locales/es-ES/translation.json b/src/lib/i18n/locales/es-ES/translation.json index 2958a4ddfd..2f44afcee4 100644 --- a/src/lib/i18n/locales/es-ES/translation.json +++ b/src/lib/i18n/locales/es-ES/translation.json @@ -34,8 +34,13 @@ "{{user}}'s Chats": "Chats de {{user}}", "{{webUIName}} Backend Required": "{{webUIName}} Servidor Requerido", "*Prompt node ID(s) are required for image generation": "Los ID de nodo son requeridos para la generación de imágenes", + "1 hour before": "", "1 Source": "1 Fuente", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "hace_1m", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "Canal colaborativo donde la gente se une como miembro", "A discussion channel where access is controlled by groups and permissions": "Un canal de discusión con el acceso controlado mediante grupos y permisos", "A new version (v{{LATEST_VERSION}}) is now available.": "Nueva versión (v{{LATEST_VERSION}}) disponible.", @@ -203,6 +208,7 @@ "Ask a question": "Haz una pregunta", "Assistant": "Asistente", "Async Embedding Processing": "Procesado Asíncrono al Incrustrar", + "At time of event": "", "Attach File From Knowledge": "Adjuntar Archivo desde Conocimiento", "Attach Files": "Adjuntar Archivos", "Attach Knowledge": "Adjuntar Conocimiento", @@ -277,6 +283,7 @@ "Bypass Web Loader": "Desactivar Cargar de Web", "Cache Base Model List": "Cachear Lista de Cache Modelos", "Calendar": "Calendario", + "Calendar deleted": "", "Calendars": "", "Call": "Llamada", "Call feature is not supported when using Web STT engine": "La funcionalidad de Llamada no está soportada cuando se usa el motor Web STT", @@ -414,6 +421,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "Conectar a tus propios endpoints externos de herramientas compatibles con OpenAPI.", "Connected ({{type}})": "Connectado ({{type}})", "Connection failed": "Conexión fallida", + "Connection lost. Reconnecting...": "", "Connection successful": "Conexión realizada", "Connection Type": "Tipo de Conexión", "Connections": "Conexiones", @@ -526,6 +534,8 @@ "Delete All Chats": "Borrar todos los chats", "Delete all contents inside this folder": "Borrar todo el contenido de esta carpeta", "Delete automation?": "¿Borrar automatización?", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "Borrar Chat", "Delete chat?": "¿Borrar el chat?", "Delete Event": "", @@ -887,6 +897,7 @@ "Failed to connect to {{URL}} terminal server": "Fallo al conectar al servidor de terminal: {{URL}}", "Failed to copy link": "Fallo al copiar enlace", "Failed to create API Key.": "Fallo al crear la Clave API.", + "Failed to delete calendar": "", "Failed to delete note": "Fallo al eliminar nota", "Failed to download image": "Fallo al descargar imagen", "Failed to extract content from the file: {{error}}": "Fallo al extraer el contenido del archivo: {{error}}", @@ -1626,6 +1637,7 @@ "Reasoning Effort": "Esfuerzo del Razonamiento", "Reasoning Tags": "Etiquetas de Razonamiento", "Recently Used": "Usado Recientemente", + "Reconnected": "", "Record": "Grabar", "Record voice": "Grabar voz", "Redirecting you to Open WebUI Community": "Redireccionando a la Comunidad Open-WebUI", @@ -1649,6 +1661,7 @@ "Relevance": "Relevancia", "Relevance Threshold": "Umbral de Relevancia", "Remember Dismissal": "Recordar Descartes (de notificaciones)", + "Reminder": "", "Remove": "Eliminar", "Remove {{MODELID}} from list.": "Eliminar {{MODELID}} de la lista.", "Remove action": "Eliminar acción", @@ -1896,7 +1909,12 @@ "Start a new conversation": "Comenzar una conversación nueva", "Start of the channel": "Inicio del canal", "Start Tag": "Etiqueta de Inicio", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_many": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "Iniciando el núcleo...", + "Starting now": "", "State": "Estado", "Status": "Estado", "Status cleared successfully": "Estado limpiado correctamente", @@ -2009,6 +2027,7 @@ "This will delete {{NAME}} and all its contents.": "Esto eliminará {{NAME}} y todo su contenido.", "This will delete all models including custom models": "Esto eliminará todos los modelos, incluidos los modelos personalizados", "This will delete all models including custom models and cannot be undone.": "Esto eliminará todos los modelos, incluidos los modelos personalizados y no se puede deshacer.", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "Esto reinicializará la base de conocimientos y sincronizará todos los archivos. ¿Desea continuar?", "Thorough explanation": "Explicación exhaustiva", "Thought": "Pensando", @@ -2095,6 +2114,7 @@ "Unloads {{FROM_NOW}}": "Descargas {{FROM_NOW}}", "Unlock mysteries": "Desbloquear misterios", "Unpin": "Desfijar", + "Unpin from Sidebar": "", "Unravel secrets": "Desentrañar secretos", "Unshare Chat": "Descompartir Chat", "Unsupported file type.": "Tipo de archivo no soportado", diff --git a/src/lib/i18n/locales/et-EE/translation.json b/src/lib/i18n/locales/et-EE/translation.json index a7da9119d8..a0ce487ea6 100644 --- a/src/lib/i18n/locales/et-EE/translation.json +++ b/src/lib/i18n/locales/et-EE/translation.json @@ -33,8 +33,13 @@ "{{user}}'s Chats": "{{user}} vestlused", "{{webUIName}} Backend Required": "{{webUIName}} taustaserver on vajalik", "*Prompt node ID(s) are required for image generation": "*Sisendi sõlme ID(d) on piltide genereerimiseks vajalikud", + "1 hour before": "", "1 Source": "1 allikas", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "1m tagasi", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "Koostöökanal, kuhu inimesed liituvad liikmetena", "A discussion channel where access is controlled by groups and permissions": "Arutelukanal, kus juurdepääsu kontrollivad grupid ja õigused", "A new version (v{{LATEST_VERSION}}) is now available.": "Uus versioon (v{{LATEST_VERSION}}) on saadaval.", @@ -202,6 +207,7 @@ "Ask a question": "Esita küsimus", "Assistant": "Assistent", "Async Embedding Processing": "Asünkroonne manustamise töötlemine", + "At time of event": "", "Attach File From Knowledge": "Lisa fail teadmistest", "Attach Files": "", "Attach Knowledge": "Lisa teadmised", @@ -276,6 +282,7 @@ "Bypass Web Loader": "Jäta veebilaadija vahele", "Cache Base Model List": "Puhverda baasmudelite nimekiri", "Calendar": "Kalender", + "Calendar deleted": "", "Calendars": "", "Call": "Kõne", "Call feature is not supported when using Web STT engine": "Kõnefunktsioon ei ole Web STT mootorit kasutades toetatud", @@ -413,6 +420,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "Ühendu oma OpenAPI-ga ühilduvate väliste tööriistaserveritega.", "Connected ({{type}})": "", "Connection failed": "Ühendus ebaõnnestus", + "Connection lost. Reconnecting...": "", "Connection successful": "Ühendus õnnestus", "Connection Type": "Ühenduse tüüp", "Connections": "Ühendused", @@ -525,6 +533,8 @@ "Delete All Chats": "Kustuta kõik vestlused", "Delete all contents inside this folder": "Kustuta kogu selle kausta sisu", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "Kustuta vestlus", "Delete chat?": "Kustutada vestlus?", "Delete Event": "", @@ -886,6 +896,7 @@ "Failed to connect to {{URL}} terminal server": "Ühendamine {{URL}} terminali serveriga ebaõnnestus", "Failed to copy link": "Lingi kopeerimine ebaõnnestus", "Failed to create API Key.": "API võtme loomine ebaõnnestus.", + "Failed to delete calendar": "", "Failed to delete note": "Märkme kustutamine ebaõnnestus", "Failed to download image": "Pildi allalaadimine ebaõnnestus", "Failed to extract content from the file: {{error}}": "Failist sisu eraldamine ebaõnnestus: {{error}}", @@ -1625,6 +1636,7 @@ "Reasoning Effort": "Arutluspingutus", "Reasoning Tags": "Arutlussildid", "Recently Used": "", + "Reconnected": "", "Record": "Salvesta", "Record voice": "Salvesta hääl", "Redirecting you to Open WebUI Community": "Suunamine Open WebUI kogukonda", @@ -1648,6 +1660,7 @@ "Relevance": "Asjakohasus", "Relevance Threshold": "Asjakohasuse lävi", "Remember Dismissal": "Pea sulgemist meeles", + "Reminder": "", "Remove": "Eemalda", "Remove {{MODELID}} from list.": "Eemalda {{MODELID}} nimekirjast.", "Remove action": "Eemalda toiming", @@ -1894,7 +1907,11 @@ "Start a new conversation": "Alusta uut vestlust", "Start of the channel": "Kanali algus", "Start Tag": "Algussilt", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "Kerneli käivitamine...", + "Starting now": "", "State": "", "Status": "Olek", "Status cleared successfully": "Olek edukalt tühjendatud", @@ -2007,6 +2024,7 @@ "This will delete {{NAME}} and all its contents.": "See kustutab {{NAME}} ja kogu selle sisu.", "This will delete all models including custom models": "See kustutab kõik mudelid, sealhulgas kohandatud mudelid", "This will delete all models including custom models and cannot be undone.": "See kustutab kõik mudelid, sealhulgas kohandatud mudelid, ja seda ei saa tagasi võtta.", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "See lähtestab teadmiste baasi ja sünkroniseerib kõik failid. Kas soovite jätkata?", "Thorough explanation": "Põhjalik selgitus", "Thought": "", @@ -2093,6 +2111,7 @@ "Unloads {{FROM_NOW}}": "Laaditakse maha {{FROM_NOW}}", "Unlock mysteries": "Ava mõistatused", "Unpin": "Eemalda kinnitus", + "Unpin from Sidebar": "", "Unravel secrets": "Ava saladused", "Unshare Chat": "Lõpeta vestluse jagamine", "Unsupported file type.": "Toetamata failitüüp.", diff --git a/src/lib/i18n/locales/eu-ES/translation.json b/src/lib/i18n/locales/eu-ES/translation.json index b8314d577a..bbb86b2023 100644 --- a/src/lib/i18n/locales/eu-ES/translation.json +++ b/src/lib/i18n/locales/eu-ES/translation.json @@ -33,8 +33,13 @@ "{{user}}'s Chats": "{{user}}-ren Txatak", "{{webUIName}} Backend Required": "{{webUIName}} Backend-a Beharrezkoa", "*Prompt node ID(s) are required for image generation": "Prompt nodoaren IDa(k) beharrezkoak dira irudiak sortzeko", + "1 hour before": "", "1 Source": "", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "", "A discussion channel where access is controlled by groups and permissions": "", "A new version (v{{LATEST_VERSION}}) is now available.": "Bertsio berri bat (v{{LATEST_VERSION}}) eskuragarri dago orain.", @@ -202,6 +207,7 @@ "Ask a question": "Egin galdera bat", "Assistant": "Laguntzailea", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "", "Attach Files": "", "Attach Knowledge": "", @@ -276,6 +282,7 @@ "Bypass Web Loader": "", "Cache Base Model List": "", "Calendar": "", + "Calendar deleted": "", "Calendars": "", "Call": "Deia", "Call feature is not supported when using Web STT engine": "Dei funtzioa ez da onartzen Web STT motorra erabiltzean", @@ -413,6 +420,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "", "Connected ({{type}})": "", "Connection failed": "", + "Connection lost. Reconnecting...": "", "Connection successful": "", "Connection Type": "", "Connections": "Konexioak", @@ -525,6 +533,8 @@ "Delete All Chats": "Ezabatu Txat Guztiak", "Delete all contents inside this folder": "", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "Ezabatu Txata", "Delete chat?": "Ezabatu txata?", "Delete Event": "", @@ -886,6 +896,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "", "Failed to create API Key.": "Huts egin du API Gakoa sortzean.", + "Failed to delete calendar": "", "Failed to delete note": "", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "", @@ -1625,6 +1636,7 @@ "Reasoning Effort": "", "Reasoning Tags": "", "Recently Used": "", + "Reconnected": "", "Record": "", "Record voice": "Grabatu ahotsa", "Redirecting you to Open WebUI Community": "OpenWebUI Komunitatera berbideratzen", @@ -1648,6 +1660,7 @@ "Relevance": "Garrantzia", "Relevance Threshold": "", "Remember Dismissal": "", + "Reminder": "", "Remove": "Kendu", "Remove {{MODELID}} from list.": "", "Remove action": "", @@ -1894,7 +1907,11 @@ "Start a new conversation": "", "Start of the channel": "Kanalaren hasiera", "Start Tag": "", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "", "Status cleared successfully": "", @@ -2007,6 +2024,7 @@ "This will delete {{NAME}} and all its contents.": "Honek {{NAME}} eta bere eduki guztiak ezabatuko ditu.", "This will delete all models including custom models": "Honek modelo guztiak ezabatuko ditu, modelo pertsonalizatuak barne", "This will delete all models including custom models and cannot be undone.": "Honek modelo guztiak ezabatuko ditu, modelo pertsonalizatuak barne, eta ezin da desegin.", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "Honek ezagutza-basea berrezarri eta fitxategi guztiak sinkronizatuko ditu. Jarraitu nahi duzu?", "Thorough explanation": "Azalpen sakona", "Thought": "", @@ -2093,6 +2111,7 @@ "Unloads {{FROM_NOW}}": "", "Unlock mysteries": "Askatu misterioak", "Unpin": "Kendu aingura", + "Unpin from Sidebar": "", "Unravel secrets": "Askatu sekretuak", "Unshare Chat": "", "Unsupported file type.": "", diff --git a/src/lib/i18n/locales/fa-IR/translation.json b/src/lib/i18n/locales/fa-IR/translation.json index 3dd9dc4d32..39de7bb016 100644 --- a/src/lib/i18n/locales/fa-IR/translation.json +++ b/src/lib/i18n/locales/fa-IR/translation.json @@ -33,8 +33,13 @@ "{{user}}'s Chats": "{{user}} گفتگوهای", "{{webUIName}} Backend Required": "بکند {{webUIName}} نیاز است.", "*Prompt node ID(s) are required for image generation": "*شناسه(های) گره پرامپت برای تولید تصویر مورد نیاز است", + "1 hour before": "", "1 Source": "۱ منبع", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "", "A discussion channel where access is controlled by groups and permissions": "", "A new version (v{{LATEST_VERSION}}) is now available.": "نسخه جدید (v{{LATEST_VERSION}}) در دسترس است.", @@ -202,6 +207,7 @@ "Ask a question": "سوالی بپرسید", "Assistant": "دستیار", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "پیوست فایل از دانش", "Attach Files": "", "Attach Knowledge": "پیوست دانش", @@ -276,6 +282,7 @@ "Bypass Web Loader": "دور زدن بارگذاری وب", "Cache Base Model List": "کش لیست مدل پایه", "Calendar": "تقویم", + "Calendar deleted": "", "Calendars": "", "Call": "تماس", "Call feature is not supported when using Web STT engine": "ویژگی تماس هنگام استفاده از موتور Web STT پشتیبانی نمی\u200cشود", @@ -413,6 +420,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "به سرورهای ابزار خارجی سازگار با OpenAPI خود متصل شوید.", "Connected ({{type}})": "", "Connection failed": "اتصال ناموفق بود", + "Connection lost. Reconnecting...": "", "Connection successful": "اتصال موفقیت\u200cآمیز بود", "Connection Type": "نوع اتصال", "Connections": "ارتباطات", @@ -525,6 +533,8 @@ "Delete All Chats": "حذف همه گفتگوها", "Delete all contents inside this folder": "", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "حذف گپ", "Delete chat?": "گفتگو حذف شود؟", "Delete Event": "", @@ -886,6 +896,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "کپی لینک ناموفق بود", "Failed to create API Key.": "ایجاد کلید API با خطا مواجه شد.", + "Failed to delete calendar": "", "Failed to delete note": "حذف یادداشت ناموفق بود", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "استخراج محتوا از فایل ناموفق بود: {{error}}", @@ -1625,6 +1636,7 @@ "Reasoning Effort": "تلاش استدلال", "Reasoning Tags": "تگ\u200cهای استدلال", "Recently Used": "", + "Reconnected": "", "Record": "ضبط", "Record voice": "ضبط صدا", "Redirecting you to Open WebUI Community": "در حال هدایت به OpenWebUI Community", @@ -1648,6 +1660,7 @@ "Relevance": "ارتباط", "Relevance Threshold": "آستانه ارتباط", "Remember Dismissal": "به خاطر سپردن رد کردن", + "Reminder": "", "Remove": "حذف", "Remove {{MODELID}} from list.": "حذف {{MODELID}} از لیست.", "Remove action": "", @@ -1894,7 +1907,11 @@ "Start a new conversation": "شروع یک مکالمه جدید", "Start of the channel": "آغاز کانال", "Start Tag": "تگ شروع", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "", "Status cleared successfully": "", @@ -2007,6 +2024,7 @@ "This will delete {{NAME}} and all its contents.": "این {{NAME}} و تمام محتویات آن را حذف خواهد کرد.", "This will delete all models including custom models": "این همه مدل\u200cها از جمله مدل\u200cهای سفارشی را حذف خواهد کرد", "This will delete all models including custom models and cannot be undone.": "این همه مدل\u200cها از جمله مدل\u200cهای سفارشی را حذف خواهد کرد و قابل بازگشت نیست.", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "این پایگاه دانش را بازنشانی کرده و همه فایل\u200cها را همگام\u200cسازی خواهد کرد. آیا می\u200cخواهید ادامه دهید؟", "Thorough explanation": "توضیح کامل", "Thought": "", @@ -2093,6 +2111,7 @@ "Unloads {{FROM_NOW}}": "خارج می\u200cشود {{FROM_NOW}}", "Unlock mysteries": "رمزگشایی از اسرار", "Unpin": "برداشتن پین", + "Unpin from Sidebar": "", "Unravel secrets": "کشف رازها", "Unshare Chat": "", "Unsupported file type.": "نوع فایل پشتیبانی نمی\u200cشود.", diff --git a/src/lib/i18n/locales/fi-FI/translation.json b/src/lib/i18n/locales/fi-FI/translation.json index 7c856082bc..16501646eb 100644 --- a/src/lib/i18n/locales/fi-FI/translation.json +++ b/src/lib/i18n/locales/fi-FI/translation.json @@ -33,8 +33,13 @@ "{{user}}'s Chats": "{{user}}:n keskustelut", "{{webUIName}} Backend Required": "{{webUIName}}-backend vaaditaan", "*Prompt node ID(s) are required for image generation": "Kuvan luomiseen vaaditaan kehote-solmun ID(t)", + "1 hour before": "", "1 Source": "1 lähde", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "Yhteistyökanava, johon ihmiset liittyvät jäseninä", "A discussion channel where access is controlled by groups and permissions": "Keskustelukanava, johon pääsyä rajoitetaan ryhmillä ja käyttöoikeuksilla", "A new version (v{{LATEST_VERSION}}) is now available.": "Uusi versio (v{{LATEST_VERSION}}) on nyt saatavilla.", @@ -202,6 +207,7 @@ "Ask a question": "Kysy kysymys", "Assistant": "Avustaja", "Async Embedding Processing": "Asynkroninen upotus prosessointi", + "At time of event": "", "Attach File From Knowledge": "Liitä tiedosto tietämyksestä", "Attach Files": "", "Attach Knowledge": "Liitä tietoa", @@ -276,6 +282,7 @@ "Bypass Web Loader": "Ohita verkkolataaja", "Cache Base Model List": "Malli luettelon välimuisti", "Calendar": "Kalenteri", + "Calendar deleted": "", "Calendars": "", "Call": "Puhelu", "Call feature is not supported when using Web STT engine": "Puhelutoimintoa ei tueta käytettäessä web-puheentunnistusmoottoria", @@ -413,6 +420,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "Yhdistä omat ulkopuoliset OpenAPI yhteensopivat työkalu palvelimet.", "Connected ({{type}})": "Yhdistetty ({{type}})", "Connection failed": "Yhteys epäonnistui", + "Connection lost. Reconnecting...": "", "Connection successful": "Yhteys onnistui", "Connection Type": "Yhteystyyppi", "Connections": "Yhteydet", @@ -525,6 +533,8 @@ "Delete All Chats": "Poista kaikki keskustelut", "Delete all contents inside this folder": "Poista kaikki sisällöt tästä kansiosta", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "Poista keskustelu", "Delete chat?": "Haluatko varmasti poistaa tämän keskustelun?", "Delete Event": "", @@ -886,6 +896,7 @@ "Failed to connect to {{URL}} terminal server": "Yhdistäminen {{URL}} päätepalvelimeen epäonnistui", "Failed to copy link": "Linkin kopiointi epäonnistui", "Failed to create API Key.": "API-avaimen luonti epäonnistui.", + "Failed to delete calendar": "", "Failed to delete note": "Muistiinpanon poistaminen epäonnistui", "Failed to download image": "Kuvan lataaminen epäonnistui", "Failed to extract content from the file: {{error}}": "Tiedoston sisällön pomiminen epäonnistui: {{error}}", @@ -1625,6 +1636,7 @@ "Reasoning Effort": "Päättelyn määrä", "Reasoning Tags": "Päättely tagit", "Recently Used": "", + "Reconnected": "", "Record": "Nauhoita", "Record voice": "Nauhoita ääntä", "Redirecting you to Open WebUI Community": "Ohjataan sinut OpenWebUI-yhteisöön", @@ -1648,6 +1660,7 @@ "Relevance": "Relevanssi", "Relevance Threshold": "Relevanssikynnys", "Remember Dismissal": "Muista sulkeminen", + "Reminder": "", "Remove": "Poista", "Remove {{MODELID}} from list.": "Poista {{MODELID}} listalta", "Remove action": "Poista toiminto", @@ -1894,7 +1907,11 @@ "Start a new conversation": "Aloita uusi keskustelu", "Start of the channel": "Kanavan alku", "Start Tag": "Aloitus tagi", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "Käynnistetään kerneliä...", + "Starting now": "", "State": "", "Status": "Tila", "Status cleared successfully": "Tila poistettu onnistuneesti", @@ -2007,6 +2024,7 @@ "This will delete {{NAME}} and all its contents.": "Tämä poistaa {{NAME}} ja kaikki sen sisällöt.", "This will delete all models including custom models": "Tämä poistaa kaikki mallit mukaan lukien mukautetut mallit", "This will delete all models including custom models and cannot be undone.": "Tämä poistaa kaikki mallit, mukaan lukien mukautetut mallit, eikä sitä voi peruuttaa.", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "Tämä nollaa tietokannan ja synkronoi kaikki tiedostot. Haluatko jatkaa?", "Thorough explanation": "Perusteellinen selitys", "Thought": "Ajatus", @@ -2093,6 +2111,7 @@ "Unloads {{FROM_NOW}}": "Purkuja {{FROM_NOW}}", "Unlock mysteries": "Selvitä arvoituksia", "Unpin": "Irrota kiinnitys", + "Unpin from Sidebar": "", "Unravel secrets": "Avaa salaisuuksia", "Unshare Chat": "Lopeta keskustelun jakaminen", "Unsupported file type.": "Ei tuettu tiedostotyyppi", diff --git a/src/lib/i18n/locales/fr-CA/translation.json b/src/lib/i18n/locales/fr-CA/translation.json index a91ad0b618..d59ea0abf3 100644 --- a/src/lib/i18n/locales/fr-CA/translation.json +++ b/src/lib/i18n/locales/fr-CA/translation.json @@ -34,8 +34,13 @@ "{{user}}'s Chats": "Conversations de {{user}}", "{{webUIName}} Backend Required": "Backend {{webUIName}} requis", "*Prompt node ID(s) are required for image generation": "*Les ID de noeud du prompt sont nécessaires pour la génération d'images", + "1 hour before": "", "1 Source": "", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "", "A discussion channel where access is controlled by groups and permissions": "", "A new version (v{{LATEST_VERSION}}) is now available.": "Une nouvelle version (v{{LATEST_VERSION}}) est disponible.", @@ -203,6 +208,7 @@ "Ask a question": "Posez votre question", "Assistant": "Assistant", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "", "Attach Files": "", "Attach Knowledge": "", @@ -277,6 +283,7 @@ "Bypass Web Loader": "Ignorer le chargeur Web", "Cache Base Model List": "Mettre en cache la liste des modèles de base", "Calendar": "Calendrier", + "Calendar deleted": "", "Calendars": "", "Call": "Appeler", "Call feature is not supported when using Web STT engine": "La fonction d'appel n'est pas prise en charge lors de l'utilisation du moteur Web STT", @@ -414,6 +421,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "Connectez-vous à vos serveurs d'outils externes.", "Connected ({{type}})": "", "Connection failed": "Échec de la connexion", + "Connection lost. Reconnecting...": "", "Connection successful": "Connexion réussie", "Connection Type": "Type de connexion", "Connections": "Connexions", @@ -526,6 +534,8 @@ "Delete All Chats": "Supprimer toutes les conversations", "Delete all contents inside this folder": "", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "Supprimer la Conversation", "Delete chat?": "Supprimer la conversation ?", "Delete Event": "", @@ -887,6 +897,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "Échec de la copie du lien", "Failed to create API Key.": "Échec de la création de la clé API.", + "Failed to delete calendar": "", "Failed to delete note": "Échec de la délétion de la note", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "", @@ -1626,6 +1637,7 @@ "Reasoning Effort": "Effort de raisonnement", "Reasoning Tags": "", "Recently Used": "", + "Reconnected": "", "Record": "Enregistrement", "Record voice": "Enregistrer la voix", "Redirecting you to Open WebUI Community": "Redirection vers la communauté OpenWebUI", @@ -1649,6 +1661,7 @@ "Relevance": "Pertinence", "Relevance Threshold": "Seuil de pertinence", "Remember Dismissal": "Se souvenir du rejet", + "Reminder": "", "Remove": "Retirer", "Remove {{MODELID}} from list.": "Retirer {{MODELID}} de la liste.", "Remove action": "", @@ -1896,7 +1909,12 @@ "Start a new conversation": "", "Start of the channel": "Début du canal", "Start Tag": "", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_many": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "", "Status cleared successfully": "", @@ -2009,6 +2027,7 @@ "This will delete {{NAME}} and all its contents.": "Cela supprimera {{NAME}} et tout son contenu.", "This will delete all models including custom models": "Cela supprimera tous les modèles, y compris les modèles personnalisés", "This will delete all models including custom models and cannot be undone.": "Cela supprimera tous les modèles, y compris les modèles personnalisés, et ne peut pas être annulé.", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "Cela réinitialisera la base de connaissances et synchronisera tous les fichiers. Souhaitez-vous continuer ?", "Thorough explanation": "Explication approfondie", "Thought": "", @@ -2095,6 +2114,7 @@ "Unloads {{FROM_NOW}}": "Décharge {{FROM_NOW}}", "Unlock mysteries": "Déverrouiller les mystères", "Unpin": "Désépingler", + "Unpin from Sidebar": "", "Unravel secrets": "Dévoiler les secrets", "Unshare Chat": "", "Unsupported file type.": "", diff --git a/src/lib/i18n/locales/fr-FR/translation.json b/src/lib/i18n/locales/fr-FR/translation.json index 0de23b8898..4572e362c8 100644 --- a/src/lib/i18n/locales/fr-FR/translation.json +++ b/src/lib/i18n/locales/fr-FR/translation.json @@ -34,8 +34,13 @@ "{{user}}'s Chats": "Conversations de {{user}}", "{{webUIName}} Backend Required": "Backend {{webUIName}} requis", "*Prompt node ID(s) are required for image generation": "*Les ID de noeud du prompt sont nécessaires pour la génération d'image", + "1 hour before": "", "1 Source": "1 Source", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "1min", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "Un canal collaboratif où les membres rejoignent librement", "A discussion channel where access is controlled by groups and permissions": "Un canal de discussion où l'accès est contrôlé par les groupes et les permissions", "A new version (v{{LATEST_VERSION}}) is now available.": "Une nouvelle version (v{{LATEST_VERSION}}) est disponible.", @@ -203,6 +208,7 @@ "Ask a question": "Posez votre question", "Assistant": "Assistant", "Async Embedding Processing": "Traitement asynchrone des embeddings", + "At time of event": "", "Attach File From Knowledge": "Joindre un fichier depuis les connaissances", "Attach Files": "", "Attach Knowledge": "Joindre une connaissance", @@ -277,6 +283,7 @@ "Bypass Web Loader": "Ignorer le chargeur Web", "Cache Base Model List": "Mettre en cache la liste des modèles de base", "Calendar": "Calendrier", + "Calendar deleted": "", "Calendars": "", "Call": "Appeler", "Call feature is not supported when using Web STT engine": "La fonction d'appel n'est pas prise en charge lors de l'utilisation du moteur Web STT", @@ -414,6 +421,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "Connectez-vous à vos serveurs d'outils externes.", "Connected ({{type}})": "", "Connection failed": "Échec de la connexion", + "Connection lost. Reconnecting...": "", "Connection successful": "Connexion réussie", "Connection Type": "Type de connexion", "Connections": "Connexions", @@ -526,6 +534,8 @@ "Delete All Chats": "Supprimer toutes les conversations", "Delete all contents inside this folder": "Supprimer tout le contenu de ce dossier", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "Supprimer la Conversation", "Delete chat?": "Supprimer la conversation ?", "Delete Event": "", @@ -887,6 +897,7 @@ "Failed to connect to {{URL}} terminal server": "Échec de la connexion au serveur de terminal {{URL}}", "Failed to copy link": "Échec de la copie du lien", "Failed to create API Key.": "Échec de la création de la clé API.", + "Failed to delete calendar": "", "Failed to delete note": "Échec de la délétion de la note", "Failed to download image": "Échec du téléchargement de l'image", "Failed to extract content from the file: {{error}}": "Échec de l'extraction du contenu du fichier : {{error}}", @@ -1626,6 +1637,7 @@ "Reasoning Effort": "Effort de raisonnement", "Reasoning Tags": "Balises de raisonnement", "Recently Used": "", + "Reconnected": "", "Record": "Enregistrement", "Record voice": "Enregistrer la voix", "Redirecting you to Open WebUI Community": "Redirection vers la communauté OpenWebUI", @@ -1649,6 +1661,7 @@ "Relevance": "Pertinence", "Relevance Threshold": "Seuil de pertinence", "Remember Dismissal": "Se souvenir du rejet", + "Reminder": "", "Remove": "Retirer", "Remove {{MODELID}} from list.": "Retirer {{MODELID}} de la liste.", "Remove action": "Retirer l'action", @@ -1896,7 +1909,12 @@ "Start a new conversation": "Démarrer une nouvelle conversation", "Start of the channel": "Début du canal", "Start Tag": "Balise de départ", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_many": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "Démarrage du noyau...", + "Starting now": "", "State": "", "Status": "Statut", "Status cleared successfully": "Statut effacé avec succès", @@ -2009,6 +2027,7 @@ "This will delete {{NAME}} and all its contents.": "Cela supprimera {{NAME}} et tout son contenu.", "This will delete all models including custom models": "Cela supprimera tous les modèles, y compris les modèles personnalisés", "This will delete all models including custom models and cannot be undone.": "Cela supprimera tous les modèles, y compris les modèles personnalisés, et ne peut pas être annulé.", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "Cela réinitialisera la base de connaissances et synchronisera tous les fichiers. Souhaitez-vous continuer ?", "Thorough explanation": "Explication approfondie", "Thought": "", @@ -2095,6 +2114,7 @@ "Unloads {{FROM_NOW}}": "Décharge {{FROM_NOW}}", "Unlock mysteries": "Déverrouiller les mystères", "Unpin": "Désépingler", + "Unpin from Sidebar": "", "Unravel secrets": "Dévoiler les secrets", "Unshare Chat": "Annuler le partage de la conversation", "Unsupported file type.": "Type de fichier non pris en charge.", diff --git a/src/lib/i18n/locales/gl-ES/translation.json b/src/lib/i18n/locales/gl-ES/translation.json index 3c36e045e9..df434bfa1a 100644 --- a/src/lib/i18n/locales/gl-ES/translation.json +++ b/src/lib/i18n/locales/gl-ES/translation.json @@ -33,8 +33,13 @@ "{{user}}'s Chats": "Chats do {{user}}", "{{webUIName}} Backend Required": "{{webUIName}} Servidor Requerido", "*Prompt node ID(s) are required for image generation": "Os ID do nodo son requeridos para a xeneración de imáxes", + "1 hour before": "", "1 Source": "", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "", "A discussion channel where access is controlled by groups and permissions": "", "A new version (v{{LATEST_VERSION}}) is now available.": "Unha nova versión (v{{LATEST_VERSION}}) está disponible.", @@ -202,6 +207,7 @@ "Ask a question": "Fai unha pregunta", "Assistant": "Asistente", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "", "Attach Files": "", "Attach Knowledge": "", @@ -276,6 +282,7 @@ "Bypass Web Loader": "", "Cache Base Model List": "", "Calendar": "", + "Calendar deleted": "", "Calendars": "", "Call": "Chamada", "Call feature is not supported when using Web STT engine": "A funcionalidade da chamada non pode usarse xunto co motor da STT Web", @@ -413,6 +420,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "", "Connected ({{type}})": "", "Connection failed": "", + "Connection lost. Reconnecting...": "", "Connection successful": "", "Connection Type": "", "Connections": "Conexions", @@ -525,6 +533,8 @@ "Delete All Chats": "Eliminar todos os chats", "Delete all contents inside this folder": "", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "Borrar Chat", "Delete chat?": "Borrar o chat?", "Delete Event": "", @@ -886,6 +896,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "", "Failed to create API Key.": "Non pudo xerarse a chave API.", + "Failed to delete calendar": "", "Failed to delete note": "", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "", @@ -1625,6 +1636,7 @@ "Reasoning Effort": "Esfuerzo de razonamiento", "Reasoning Tags": "", "Recently Used": "", + "Reconnected": "", "Record": "", "Record voice": "Grabar voz", "Redirecting you to Open WebUI Community": "Redireccionándote a a comunidad OpenWebUI", @@ -1648,6 +1660,7 @@ "Relevance": "Relevancia", "Relevance Threshold": "", "Remember Dismissal": "", + "Reminder": "", "Remove": "Eliminar", "Remove {{MODELID}} from list.": "", "Remove action": "", @@ -1894,7 +1907,11 @@ "Start a new conversation": "", "Start of the channel": "Inicio da canle", "Start Tag": "", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "", "Status cleared successfully": "", @@ -2007,6 +2024,7 @@ "This will delete {{NAME}} and all its contents.": "Esto eliminará {{NAME}} y todo su contido.", "This will delete all models including custom models": "Esto eliminará todos os modelos, incluidos os modelos personalizados", "This will delete all models including custom models and cannot be undone.": "Esto eliminará todos os modelos, incluidos os modelos personalizados y no se puede deshacer.", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "Esto reseteará la base de coñecementos y sincronizará todos os arquivos. ¿Desea continuar?", "Thorough explanation": "Explicación exhaustiva", "Thought": "", @@ -2093,6 +2111,7 @@ "Unloads {{FROM_NOW}}": "", "Unlock mysteries": "Desbloquear misterios", "Unpin": "Desanclar", + "Unpin from Sidebar": "", "Unravel secrets": "Desentrañar secretos", "Unshare Chat": "", "Unsupported file type.": "", diff --git a/src/lib/i18n/locales/he-IL/translation.json b/src/lib/i18n/locales/he-IL/translation.json index 2bb98c4d4e..f36e6d332e 100644 --- a/src/lib/i18n/locales/he-IL/translation.json +++ b/src/lib/i18n/locales/he-IL/translation.json @@ -34,8 +34,13 @@ "{{user}}'s Chats": "צ'אטים של {{user}}", "{{webUIName}} Backend Required": "נדרש Backend של {{webUIName}}", "*Prompt node ID(s) are required for image generation": "", + "1 hour before": "", "1 Source": "", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "", "A discussion channel where access is controlled by groups and permissions": "", "A new version (v{{LATEST_VERSION}}) is now available.": "", @@ -203,6 +208,7 @@ "Ask a question": "", "Assistant": "", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "", "Attach Files": "", "Attach Knowledge": "", @@ -277,6 +283,7 @@ "Bypass Web Loader": "", "Cache Base Model List": "", "Calendar": "לוח שנה", + "Calendar deleted": "", "Calendars": "", "Call": "", "Call feature is not supported when using Web STT engine": "", @@ -414,6 +421,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "", "Connected ({{type}})": "", "Connection failed": "החיבור נכשל", + "Connection lost. Reconnecting...": "", "Connection successful": "החיבור הצליח", "Connection Type": "סוג חיבור", "Connections": "חיבורים", @@ -526,6 +534,8 @@ "Delete All Chats": "מחק את כל הצ'אטים", "Delete all contents inside this folder": "", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "מחק צ'אט", "Delete chat?": "", "Delete Event": "", @@ -887,6 +897,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "", "Failed to create API Key.": "יצירת מפתח API נכשלה.", + "Failed to delete calendar": "", "Failed to delete note": "", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "", @@ -1626,6 +1637,7 @@ "Reasoning Effort": "", "Reasoning Tags": "", "Recently Used": "", + "Reconnected": "", "Record": "", "Record voice": "הקלט קול", "Redirecting you to Open WebUI Community": "מפנה אותך לקהילת OpenWebUI", @@ -1649,6 +1661,7 @@ "Relevance": "", "Relevance Threshold": "", "Remember Dismissal": "", + "Reminder": "", "Remove": "הסר", "Remove {{MODELID}} from list.": "", "Remove action": "", @@ -1896,7 +1909,12 @@ "Start a new conversation": "", "Start of the channel": "תחילת הערוץ", "Start Tag": "", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_two": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "", "Status cleared successfully": "", @@ -2009,6 +2027,7 @@ "This will delete {{NAME}} and all its contents.": "", "This will delete all models including custom models": "", "This will delete all models including custom models and cannot be undone.": "", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "", "Thorough explanation": "תיאור מפורט", "Thought": "", @@ -2095,6 +2114,7 @@ "Unloads {{FROM_NOW}}": "", "Unlock mysteries": "", "Unpin": "", + "Unpin from Sidebar": "", "Unravel secrets": "", "Unshare Chat": "", "Unsupported file type.": "", diff --git a/src/lib/i18n/locales/hi-IN/translation.json b/src/lib/i18n/locales/hi-IN/translation.json index ce96aa2286..eeeff64210 100644 --- a/src/lib/i18n/locales/hi-IN/translation.json +++ b/src/lib/i18n/locales/hi-IN/translation.json @@ -33,8 +33,13 @@ "{{user}}'s Chats": "{{user}} की चैट", "{{webUIName}} Backend Required": "{{webUIName}} बैकएंड आवश्यक", "*Prompt node ID(s) are required for image generation": "", + "1 hour before": "", "1 Source": "", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "", "A discussion channel where access is controlled by groups and permissions": "", "A new version (v{{LATEST_VERSION}}) is now available.": "", @@ -202,6 +207,7 @@ "Ask a question": "", "Assistant": "", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "", "Attach Files": "", "Attach Knowledge": "", @@ -276,6 +282,7 @@ "Bypass Web Loader": "", "Cache Base Model List": "", "Calendar": "", + "Calendar deleted": "", "Calendars": "", "Call": "", "Call feature is not supported when using Web STT engine": "", @@ -413,6 +420,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "", "Connected ({{type}})": "", "Connection failed": "", + "Connection lost. Reconnecting...": "", "Connection successful": "", "Connection Type": "", "Connections": "सम्बन्ध", @@ -525,6 +533,8 @@ "Delete All Chats": "सभी चैट हटाएं", "Delete all contents inside this folder": "", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "चैट हटाएं", "Delete chat?": "", "Delete Event": "", @@ -886,6 +896,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "", "Failed to create API Key.": "एपीआई कुंजी बनाने में विफल.", + "Failed to delete calendar": "", "Failed to delete note": "", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "", @@ -1625,6 +1636,7 @@ "Reasoning Effort": "", "Reasoning Tags": "", "Recently Used": "", + "Reconnected": "", "Record": "", "Record voice": "आवाज रिकॉर्ड करना", "Redirecting you to Open WebUI Community": "आपको OpenWebUI समुदाय पर पुनर्निर्देशित किया जा रहा है", @@ -1648,6 +1660,7 @@ "Relevance": "", "Relevance Threshold": "", "Remember Dismissal": "", + "Reminder": "", "Remove": "हटा दें", "Remove {{MODELID}} from list.": "", "Remove action": "", @@ -1894,7 +1907,11 @@ "Start a new conversation": "", "Start of the channel": "चैनल की शुरुआत", "Start Tag": "", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "", "Status cleared successfully": "", @@ -2007,6 +2024,7 @@ "This will delete {{NAME}} and all its contents.": "", "This will delete all models including custom models": "", "This will delete all models including custom models and cannot be undone.": "", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "", "Thorough explanation": "विस्तृत व्याख्या", "Thought": "", @@ -2093,6 +2111,7 @@ "Unloads {{FROM_NOW}}": "", "Unlock mysteries": "", "Unpin": "", + "Unpin from Sidebar": "", "Unravel secrets": "", "Unshare Chat": "", "Unsupported file type.": "", diff --git a/src/lib/i18n/locales/hr-HR/translation.json b/src/lib/i18n/locales/hr-HR/translation.json index 01e9f0fdf1..c0525013e9 100644 --- a/src/lib/i18n/locales/hr-HR/translation.json +++ b/src/lib/i18n/locales/hr-HR/translation.json @@ -34,8 +34,13 @@ "{{user}}'s Chats": "Razgovori korisnika {{user}}", "{{webUIName}} Backend Required": "{{webUIName}} Backend je potreban", "*Prompt node ID(s) are required for image generation": "", + "1 hour before": "", "1 Source": "", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "", "A discussion channel where access is controlled by groups and permissions": "", "A new version (v{{LATEST_VERSION}}) is now available.": "", @@ -203,6 +208,7 @@ "Ask a question": "", "Assistant": "", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "", "Attach Files": "", "Attach Knowledge": "", @@ -277,6 +283,7 @@ "Bypass Web Loader": "", "Cache Base Model List": "", "Calendar": "", + "Calendar deleted": "", "Calendars": "", "Call": "Poziv", "Call feature is not supported when using Web STT engine": "Značajka poziva nije podržana kada se koristi Web STT mehanizam", @@ -414,6 +421,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "", "Connected ({{type}})": "", "Connection failed": "", + "Connection lost. Reconnecting...": "", "Connection successful": "", "Connection Type": "", "Connections": "Povezivanja", @@ -526,6 +534,8 @@ "Delete All Chats": "Izbriši sve razgovore", "Delete all contents inside this folder": "", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "Izbriši razgovor", "Delete chat?": "", "Delete Event": "", @@ -887,6 +897,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "", "Failed to create API Key.": "Neuspješno stvaranje API ključa.", + "Failed to delete calendar": "", "Failed to delete note": "", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "", @@ -1626,6 +1637,7 @@ "Reasoning Effort": "", "Reasoning Tags": "", "Recently Used": "", + "Reconnected": "", "Record": "", "Record voice": "Snimanje glasa", "Redirecting you to Open WebUI Community": "Preusmjeravanje na OpenWebUI zajednicu", @@ -1649,6 +1661,7 @@ "Relevance": "", "Relevance Threshold": "", "Remember Dismissal": "", + "Reminder": "", "Remove": "Ukloni", "Remove {{MODELID}} from list.": "", "Remove action": "", @@ -1896,7 +1909,12 @@ "Start a new conversation": "", "Start of the channel": "Početak kanala", "Start Tag": "", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_few": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "", "Status cleared successfully": "", @@ -2009,6 +2027,7 @@ "This will delete {{NAME}} and all its contents.": "", "This will delete all models including custom models": "", "This will delete all models including custom models and cannot be undone.": "", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "", "Thorough explanation": "Detaljno objašnjenje", "Thought": "", @@ -2095,6 +2114,7 @@ "Unloads {{FROM_NOW}}": "", "Unlock mysteries": "", "Unpin": "", + "Unpin from Sidebar": "", "Unravel secrets": "", "Unshare Chat": "", "Unsupported file type.": "", diff --git a/src/lib/i18n/locales/hu-HU/translation.json b/src/lib/i18n/locales/hu-HU/translation.json index 5d2fee4e33..22f4ea62cf 100644 --- a/src/lib/i18n/locales/hu-HU/translation.json +++ b/src/lib/i18n/locales/hu-HU/translation.json @@ -33,8 +33,13 @@ "{{user}}'s Chats": "{{user}} beszélgetései", "{{webUIName}} Backend Required": "{{webUIName}} Backend szükséges", "*Prompt node ID(s) are required for image generation": "*Prompt node ID(k) szükségesek a képgeneráláshoz", + "1 hour before": "", "1 Source": "", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "", "A discussion channel where access is controlled by groups and permissions": "", "A new version (v{{LATEST_VERSION}}) is now available.": "Új verzió (v{{LATEST_VERSION}}) érhető el.", @@ -202,6 +207,7 @@ "Ask a question": "Kérdezz valamit", "Assistant": "Asszisztens", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "", "Attach Files": "", "Attach Knowledge": "", @@ -276,6 +282,7 @@ "Bypass Web Loader": "", "Cache Base Model List": "", "Calendar": "Naptár", + "Calendar deleted": "", "Calendars": "", "Call": "Hívás", "Call feature is not supported when using Web STT engine": "A hívás funkció nem támogatott Web STT motor használatakor", @@ -413,6 +420,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "Csatlakozz saját OpenAPI kompatibilis külső eszköszervereidhez.", "Connected ({{type}})": "", "Connection failed": "Kapcsolat sikertelen", + "Connection lost. Reconnecting...": "", "Connection successful": "Kapcsolat sikeres", "Connection Type": "", "Connections": "Kapcsolatok", @@ -525,6 +533,8 @@ "Delete All Chats": "Minden beszélgetés törlése", "Delete all contents inside this folder": "", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "Beszélgetés törlése", "Delete chat?": "Törli a beszélgetést?", "Delete Event": "", @@ -886,6 +896,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "", "Failed to create API Key.": "Nem sikerült létrehozni az API kulcsot.", + "Failed to delete calendar": "", "Failed to delete note": "", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "", @@ -1625,6 +1636,7 @@ "Reasoning Effort": "Érvelési erőfeszítés", "Reasoning Tags": "", "Recently Used": "", + "Reconnected": "", "Record": "", "Record voice": "Hang rögzítése", "Redirecting you to Open WebUI Community": "Átirányítás az OpenWebUI közösséghez", @@ -1648,6 +1660,7 @@ "Relevance": "Relevancia", "Relevance Threshold": "", "Remember Dismissal": "", + "Reminder": "", "Remove": "Eltávolítás", "Remove {{MODELID}} from list.": "", "Remove action": "", @@ -1894,7 +1907,11 @@ "Start a new conversation": "", "Start of the channel": "A csatorna eleje", "Start Tag": "", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "", "Status cleared successfully": "", @@ -2007,6 +2024,7 @@ "This will delete {{NAME}} and all its contents.": "Ez törölni fogja a {{NAME}}-t és minden tartalmát.", "This will delete all models including custom models": "Ez törölni fogja az összes modellt, beleértve az egyéni modelleket is", "This will delete all models including custom models and cannot be undone.": "Ez törölni fogja az összes modellt, beleértve az egyéni modelleket is, és nem vonható vissza.", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "Ez visszaállítja a tudásbázist és szinkronizálja az összes fájlt. Szeretné folytatni?", "Thorough explanation": "Alapos magyarázat", "Thought": "", @@ -2093,6 +2111,7 @@ "Unloads {{FROM_NOW}}": "", "Unlock mysteries": "Titkok feloldása", "Unpin": "Rögzítés feloldása", + "Unpin from Sidebar": "", "Unravel secrets": "Titkok megfejtése", "Unshare Chat": "", "Unsupported file type.": "", diff --git a/src/lib/i18n/locales/id-ID/translation.json b/src/lib/i18n/locales/id-ID/translation.json index 2e60de3ed1..c537fb24bb 100644 --- a/src/lib/i18n/locales/id-ID/translation.json +++ b/src/lib/i18n/locales/id-ID/translation.json @@ -32,8 +32,13 @@ "{{user}}'s Chats": "Obrolan {{user}}", "{{webUIName}} Backend Required": "{{webUIName}} Diperlukan Backend", "*Prompt node ID(s) are required for image generation": "", + "1 hour before": "", "1 Source": "", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "", "A discussion channel where access is controlled by groups and permissions": "", "A new version (v{{LATEST_VERSION}}) is now available.": "", @@ -201,6 +206,7 @@ "Ask a question": "", "Assistant": "", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "", "Attach Files": "", "Attach Knowledge": "", @@ -275,6 +281,7 @@ "Bypass Web Loader": "", "Cache Base Model List": "", "Calendar": "", + "Calendar deleted": "", "Calendars": "", "Call": "Panggilan", "Call feature is not supported when using Web STT engine": "Fitur panggilan tidak didukung saat menggunakan mesin Web STT", @@ -412,6 +419,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "", "Connected ({{type}})": "", "Connection failed": "", + "Connection lost. Reconnecting...": "", "Connection successful": "", "Connection Type": "", "Connections": "Koneksi", @@ -524,6 +532,8 @@ "Delete All Chats": "Menghapus Semua Obrolan", "Delete all contents inside this folder": "", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "Menghapus Obrolan", "Delete chat?": "Menghapus obrolan?", "Delete Event": "", @@ -885,6 +895,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "", "Failed to create API Key.": "Gagal membuat API Key.", + "Failed to delete calendar": "", "Failed to delete note": "", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "", @@ -1624,6 +1635,7 @@ "Reasoning Effort": "", "Reasoning Tags": "", "Recently Used": "", + "Reconnected": "", "Record": "", "Record voice": "Rekam suara", "Redirecting you to Open WebUI Community": "Mengarahkan Anda ke Komunitas OpenWebUI", @@ -1647,6 +1659,7 @@ "Relevance": "", "Relevance Threshold": "", "Remember Dismissal": "", + "Reminder": "", "Remove": "Hapus", "Remove {{MODELID}} from list.": "", "Remove action": "", @@ -1892,7 +1905,10 @@ "Start a new conversation": "", "Start of the channel": "Awal saluran", "Start Tag": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "", "Status cleared successfully": "", @@ -2005,6 +2021,7 @@ "This will delete {{NAME}} and all its contents.": "", "This will delete all models including custom models": "", "This will delete all models including custom models and cannot be undone.": "", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "", "Thorough explanation": "Penjelasan menyeluruh", "Thought": "", @@ -2091,6 +2108,7 @@ "Unloads {{FROM_NOW}}": "", "Unlock mysteries": "", "Unpin": "", + "Unpin from Sidebar": "", "Unravel secrets": "", "Unshare Chat": "", "Unsupported file type.": "", diff --git a/src/lib/i18n/locales/ie-GA/translation.json b/src/lib/i18n/locales/ie-GA/translation.json index df9257c7e9..e5550ac069 100644 --- a/src/lib/i18n/locales/ie-GA/translation.json +++ b/src/lib/i18n/locales/ie-GA/translation.json @@ -33,8 +33,13 @@ "{{user}}'s Chats": "Comhráite {{user}}", "{{webUIName}} Backend Required": "{{webUIName}} Ceoldeireadh Riachtanach", "*Prompt node ID(s) are required for image generation": "* Tá ID(anna) nód treorach ag teastáil chun íomhá a ghiniúint", + "1 hour before": "", "1 Source": "1 Foinse", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "1 nóiméad ó shin", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "Cainéal comhoibrithe ina mbíonn daoine ag glacadh páirte mar bhaill", "A discussion channel where access is controlled by groups and permissions": "Cainéal plé ina bhfuil rochtain rialaithe ag grúpaí agus ceadanna", "A new version (v{{LATEST_VERSION}}) is now available.": "Tá leagan nua (v {{LATEST_VERSION}}) ar fáil anois.", @@ -202,6 +207,7 @@ "Ask a question": "Cuir ceist", "Assistant": "Cúntóir", "Async Embedding Processing": "Próiseáil Leabaithe Asyncrónach", + "At time of event": "", "Attach File From Knowledge": "Ceangail Comhad ó Eolas", "Attach Files": "Ceangail Comhaid", "Attach Knowledge": "Ceangail Eolas", @@ -276,6 +282,7 @@ "Bypass Web Loader": "Seachbhóthar Luchtaire Gréasáin", "Cache Base Model List": "Liosta Samhail Bunáite Taisce", "Calendar": "Féilire", + "Calendar deleted": "", "Calendars": "", "Call": "Glaoigh", "Call feature is not supported when using Web STT engine": "Ní thacaítear le gné glaonna agus inneall Web STT á úsáid", @@ -413,6 +420,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "Ceangail le do fhreastalaithe uirlisí seachtracha atá comhoiriúnach le OpenAPI.", "Connected ({{type}})": "Ceangailte ({{type}})", "Connection failed": "Theip ar an gceangal", + "Connection lost. Reconnecting...": "", "Connection successful": "Ceangal rathúil", "Connection Type": "Cineál Ceangail", "Connections": "Naisc", @@ -525,6 +533,8 @@ "Delete All Chats": "Scrios Gach Comhrá", "Delete all contents inside this folder": "Scrios an t-ábhar go léir atá sa fhillteán seo", "Delete automation?": "Scrios an t-uathoibriú?", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "Scrios Comhrá", "Delete chat?": "Scrios comhrá?", "Delete Event": "", @@ -886,6 +896,7 @@ "Failed to connect to {{URL}} terminal server": "Theip ar cheangal le freastalaí críochfoirt {{URL}}", "Failed to copy link": "Theip ar an nasc a chóipeáil", "Failed to create API Key.": "Theip ar an eochair API a chruthú.", + "Failed to delete calendar": "", "Failed to delete note": "Theip ar an nóta a scriosadh", "Failed to download image": "Theip ar an íomhá a íoslódáil", "Failed to extract content from the file: {{error}}": "Theip ar an ábhar a bhaint as an gcomhad: {{error}}", @@ -1625,6 +1636,7 @@ "Reasoning Effort": "Iarracht Réasúnúcháin", "Reasoning Tags": "Clibeanna Réasúnaíochta", "Recently Used": "Úsáidte le Déanaí", + "Reconnected": "", "Record": "Taifead", "Record voice": "Taifead guth", "Redirecting you to Open WebUI Community": "Tú a atreorú chuig OpenWebUI Community", @@ -1648,6 +1660,7 @@ "Relevance": "Ábharthacht", "Relevance Threshold": "Tairseach Ábharthaíochta", "Remember Dismissal": "Cuimhnigh ar an Dífhostú", + "Reminder": "", "Remove": "Bain", "Remove {{MODELID}} from list.": "Bain {{MODELID}} den liosta.", "Remove action": "Bain gníomh", @@ -1894,7 +1907,11 @@ "Start a new conversation": "Tosaigh comhrá nua", "Start of the channel": "Tús an chainéil", "Start Tag": "Clib Tosaigh", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "Ag tosú an eithne...", + "Starting now": "", "State": "Stát", "Status": "Stádas", "Status cleared successfully": "Glanadh an stádais go rathúil", @@ -2007,6 +2024,7 @@ "This will delete {{NAME}} and all its contents.": "Scriosfaidh sé seo {{NAME}} agus a bhfuil ann go léir.", "This will delete all models including custom models": "Scriosfaidh sé seo gach samhail lena n-áirítear samhlacha saincheaptha", "This will delete all models including custom models and cannot be undone.": "Scriosfaidh sé seo gach samhail, lena n-áirítear samhlacha saincheaptha, agus ní féidir é a chealú.", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "Déanfaidh sé seo an bonn eolais a athshocrú agus gach comhad a shioncronú. Ar mhaith leat leanúint ar aghaidh?", "Thorough explanation": "Míniú críochnúil", "Thought": "Smaoineamh", @@ -2093,6 +2111,7 @@ "Unloads {{FROM_NOW}}": "Díluchtuithe {{FROM_NOW}}", "Unlock mysteries": "Díghlasáil rúndiamhra", "Unpin": "Díphoráil", + "Unpin from Sidebar": "", "Unravel secrets": "Rúin a réiteach", "Unshare Chat": "Díroinn Comhrá", "Unsupported file type.": "Cineál comhaid nach dtacaítear leis.", diff --git a/src/lib/i18n/locales/it-IT/translation.json b/src/lib/i18n/locales/it-IT/translation.json index e8b2b0f217..c94b0f7f5a 100644 --- a/src/lib/i18n/locales/it-IT/translation.json +++ b/src/lib/i18n/locales/it-IT/translation.json @@ -34,8 +34,13 @@ "{{user}}'s Chats": "{{user}} Chat", "{{webUIName}} Backend Required": "{{webUIName}} Richiesta Backend", "*Prompt node ID(s) are required for image generation": "*ID nodo prompt sono necessari per la generazione di immagini", + "1 hour before": "", "1 Source": "", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "", "A discussion channel where access is controlled by groups and permissions": "", "A new version (v{{LATEST_VERSION}}) is now available.": "Una nuova versione (v{{LATEST_VERSION}}) è ora disponibile.", @@ -203,6 +208,7 @@ "Ask a question": "Fai una domanda", "Assistant": "Assistente", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "", "Attach Files": "", "Attach Knowledge": "", @@ -277,6 +283,7 @@ "Bypass Web Loader": "Bypassa il Web Loader", "Cache Base Model List": "", "Calendar": "Calendario", + "Calendar deleted": "", "Calendars": "", "Call": "Chiamata", "Call feature is not supported when using Web STT engine": "La funzione di chiamata non è supportata quando si utilizza il motore Web STT", @@ -414,6 +421,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "Connettiti ai tuoi server di tool esterni compatibili con OpenAPI.", "Connected ({{type}})": "", "Connection failed": "Connessione fallita", + "Connection lost. Reconnecting...": "", "Connection successful": "Connessione riuscita", "Connection Type": "Tipo Connessione", "Connections": "Connessioni", @@ -526,6 +534,8 @@ "Delete All Chats": "Elimina tutte le chat", "Delete all contents inside this folder": "", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "Elimina chat", "Delete chat?": "Elimina chat?", "Delete Event": "", @@ -887,6 +897,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "Impossibile copiare il link", "Failed to create API Key.": "Impossibile creare Chiave API.", + "Failed to delete calendar": "", "Failed to delete note": "Impossibile eliminare la nota", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "", @@ -1626,6 +1637,7 @@ "Reasoning Effort": "Sforzo di ragionamento", "Reasoning Tags": "", "Recently Used": "", + "Reconnected": "", "Record": "Registra", "Record voice": "Registra voce", "Redirecting you to Open WebUI Community": "Reindirizzamento alla comunità OpenWebUI", @@ -1649,6 +1661,7 @@ "Relevance": "Rilevanza", "Relevance Threshold": "Soglia di Rilevanza", "Remember Dismissal": "", + "Reminder": "", "Remove": "Rimuovi", "Remove {{MODELID}} from list.": "", "Remove action": "", @@ -1896,7 +1909,12 @@ "Start a new conversation": "", "Start of the channel": "Inizio del canale", "Start Tag": "", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_many": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "", "Status cleared successfully": "", @@ -2009,6 +2027,7 @@ "This will delete {{NAME}} and all its contents.": "Questa opzione eliminerà {{NAME}} e tutti i suoi contenuti.", "This will delete all models including custom models": "Questa opzione eliminerà tutti i modelli, compresi i modelli personalizzati", "This will delete all models including custom models and cannot be undone.": "Questa opzione eliminerà tutti i modelli, compresi i modelli personalizzati e non può essere annullata.", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "Questa opzione ripristinerà la base di conoscenza e sincronizzerà tutti i file. Vuoi continuare?", "Thorough explanation": "Spiegazione dettagliata", "Thought": "", @@ -2095,6 +2114,7 @@ "Unloads {{FROM_NOW}}": "Scarica {{FROM_NOW}}", "Unlock mysteries": "Sblocca misteri", "Unpin": "Rimuovi fissato", + "Unpin from Sidebar": "", "Unravel secrets": "Svela segreti", "Unshare Chat": "", "Unsupported file type.": "", diff --git a/src/lib/i18n/locales/ja-JP/translation.json b/src/lib/i18n/locales/ja-JP/translation.json index 77aa239d44..af0c4211b5 100644 --- a/src/lib/i18n/locales/ja-JP/translation.json +++ b/src/lib/i18n/locales/ja-JP/translation.json @@ -32,8 +32,13 @@ "{{user}}'s Chats": "{{user}} のチャット", "{{webUIName}} Backend Required": "{{webUIName}} バックエンドが必要です", "*Prompt node ID(s) are required for image generation": "*画像生成にはプロンプトノードIDが必要です", + "1 hour before": "", "1 Source": "", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "", "A discussion channel where access is controlled by groups and permissions": "", "A new version (v{{LATEST_VERSION}}) is now available.": "新しいバージョン (v{{LATEST_VERSION}}) が利用可能です。", @@ -201,6 +206,7 @@ "Ask a question": "質問する", "Assistant": "アシスタント", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "ナレッジからファイルを添付", "Attach Files": "ファイルを追加", "Attach Knowledge": "ナレッジを追加", @@ -275,6 +281,7 @@ "Bypass Web Loader": "Webローダーをバイパス", "Cache Base Model List": "ベースモデルリストをキャッシュ", "Calendar": "カレンダー", + "Calendar deleted": "", "Calendars": "", "Call": "コール", "Call feature is not supported when using Web STT engine": "Web STTエンジンを使用している場合、コール機能は使用できません", @@ -412,6 +419,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "独自のOpenAPI互換外部ツールサーバーに接続します。", "Connected ({{type}})": "", "Connection failed": "接続に失敗しました", + "Connection lost. Reconnecting...": "", "Connection successful": "接続に成功しました", "Connection Type": "接続タイプ", "Connections": "接続", @@ -524,6 +532,8 @@ "Delete All Chats": "すべてのチャットを削除", "Delete all contents inside this folder": "", "Delete automation?": "オートメーションを削除しますか?", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "チャットを削除", "Delete chat?": "チャットを削除しますか?", "Delete Event": "", @@ -885,6 +895,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "リンクのコピーに失敗しました。", "Failed to create API Key.": "APIキーの作成に失敗しました。", + "Failed to delete calendar": "", "Failed to delete note": "ノートの削除に失敗しました。", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "ファイルから中身の取得に失敗しました: {{error}}", @@ -1624,6 +1635,7 @@ "Reasoning Effort": "推理の努力", "Reasoning Tags": "", "Recently Used": "", + "Reconnected": "", "Record": "録音", "Record voice": "音声を録音", "Redirecting you to Open WebUI Community": "OpenWebUI コミュニティにリダイレクトしています", @@ -1647,6 +1659,7 @@ "Relevance": "関連性", "Relevance Threshold": "関連性の閾値", "Remember Dismissal": "閉じたことを記憶する", + "Reminder": "", "Remove": "削除", "Remove {{MODELID}} from list.": "{{MODELID}} をリストから削除する", "Remove action": "", @@ -1892,7 +1905,10 @@ "Start a new conversation": "新しい会話を開始", "Start of the channel": "チャンネルの開始", "Start Tag": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "状態", "Status": "ステータス", "Status cleared successfully": "正常にステータスをクリアしました", @@ -2005,6 +2021,7 @@ "This will delete {{NAME}} and all its contents.": "これは{{NAME}}とそのすべての内容を削除します。", "This will delete all models including custom models": "これはカスタムモデルを含むすべてのモデルを削除します", "This will delete all models including custom models and cannot be undone.": "これはカスタムモデルを含むすべてのモデルを削除し、元に戻すことはできません。", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "これは知識ベースをリセットし、すべてのファイルを同期します。続けますか?", "Thorough explanation": "詳細な説明", "Thought": "", @@ -2091,6 +2108,7 @@ "Unloads {{FROM_NOW}}": "{{FROM_NOW}}にアンロード", "Unlock mysteries": "ミステリーを解き明かす", "Unpin": "ピン留め解除", + "Unpin from Sidebar": "", "Unravel secrets": "秘密を解き明かす", "Unshare Chat": "", "Unsupported file type.": "未対応のファイルタイプです", diff --git a/src/lib/i18n/locales/ka-GE/translation.json b/src/lib/i18n/locales/ka-GE/translation.json index b2726bf790..acdc14db3c 100644 --- a/src/lib/i18n/locales/ka-GE/translation.json +++ b/src/lib/i18n/locales/ka-GE/translation.json @@ -33,8 +33,13 @@ "{{user}}'s Chats": "{{user}}-ის ჩათები", "{{webUIName}} Backend Required": "{{webUIName}} საჭიროა უკანაბოლო", "*Prompt node ID(s) are required for image generation": "", + "1 hour before": "", "1 Source": "1 წყარო", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "", "A discussion channel where access is controlled by groups and permissions": "", "A new version (v{{LATEST_VERSION}}) is now available.": "ხელმისაწვდომია ახალი ვერსია (v{{LATEST_VERSION}}).", @@ -202,6 +207,7 @@ "Ask a question": "კითხვის დასმა", "Assistant": "დამხმარე", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "", "Attach Files": "", "Attach Knowledge": "ცოდნის მიმაგრება", @@ -276,6 +282,7 @@ "Bypass Web Loader": "ვებჩამტვირთავის გამოტოვება", "Cache Base Model List": "საბაზისო მოდელების სიის დაკეშვა", "Calendar": "კალენდარი", + "Calendar deleted": "", "Calendars": "", "Call": "ზარი", "Call feature is not supported when using Web STT engine": "", @@ -413,6 +420,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "", "Connected ({{type}})": "", "Connection failed": "დაკავშირება ვერ მოხერხდა", + "Connection lost. Reconnecting...": "", "Connection successful": "შეერთება წარმატებულია", "Connection Type": "შეერთების ტიპი", "Connections": "კავშირები", @@ -525,6 +533,8 @@ "Delete All Chats": "ყველა ჩატის წაშლა", "Delete all contents inside this folder": "", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "საუბრის წაშლა", "Delete chat?": "წავშალო ჩატი?", "Delete Event": "", @@ -886,6 +896,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "ბმულის კოპირება ჩავარდა", "Failed to create API Key.": "API-ის გასაღების შექმნა ჩავარდა.", + "Failed to delete calendar": "", "Failed to delete note": "შენიშვნის წაშლა ჩავარდა", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "", @@ -1625,6 +1636,7 @@ "Reasoning Effort": "", "Reasoning Tags": "", "Recently Used": "", + "Reconnected": "", "Record": "ჩაწერა", "Record voice": "ხმის ჩაწერა", "Redirecting you to Open WebUI Community": "მიმდინარეობს გადამისამართება OpenWebUI-ის საზოგადოების საიტზე", @@ -1648,6 +1660,7 @@ "Relevance": "შესაბამისობა", "Relevance Threshold": "", "Remember Dismissal": "", + "Reminder": "", "Remove": "წაშლა", "Remove {{MODELID}} from list.": "", "Remove action": "", @@ -1894,7 +1907,11 @@ "Start a new conversation": "", "Start of the channel": "არხის დასაწყისი", "Start Tag": "დაწყების ჭდე", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "", "Status cleared successfully": "", @@ -2007,6 +2024,7 @@ "This will delete {{NAME}} and all its contents.": "", "This will delete all models including custom models": "", "This will delete all models including custom models and cannot be undone.": "", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "", "Thorough explanation": "საფუძვლიანი ახსნა", "Thought": "", @@ -2093,6 +2111,7 @@ "Unloads {{FROM_NOW}}": "გამოტვირთვა {{FROM_NOW}}", "Unlock mysteries": "", "Unpin": "ჩამოხსნა", + "Unpin from Sidebar": "", "Unravel secrets": "", "Unshare Chat": "", "Unsupported file type.": "", diff --git a/src/lib/i18n/locales/kab-DZ/translation.json b/src/lib/i18n/locales/kab-DZ/translation.json index 4d0c32b8d6..0fc3787813 100644 --- a/src/lib/i18n/locales/kab-DZ/translation.json +++ b/src/lib/i18n/locales/kab-DZ/translation.json @@ -33,8 +33,13 @@ "{{user}}'s Chats": "Asqerdec n {{user}}", "{{webUIName}} Backend Required": "", "*Prompt node ID(s) are required for image generation": "", + "1 hour before": "", "1 Source": "1 n weɣbalu", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "", "A discussion channel where access is controlled by groups and permissions": "", "A new version (v{{LATEST_VERSION}}) is now available.": "Lqem amaynut n (v{{LATEST_VERSION}}), yella akka tura.", @@ -202,6 +207,7 @@ "Ask a question": "Efk-d asteqsi", "Assistant": "Amallal", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "", "Attach Files": "", "Attach Knowledge": "Qqen-as tamessunt", @@ -276,6 +282,7 @@ "Bypass Web Loader": "Zgel asalay Web", "Cache Base Model List": "Ffer tabdart n tmudmiwin n taffa", "Calendar": "Awitay", + "Calendar deleted": "", "Calendars": "", "Call": "Siwel", "Call feature is not supported when using Web STT engine": "Tamahilt n usiwel ur tettwasefrak ara mi ara tesqedceḍ amsedday Web STT", @@ -413,6 +420,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "Qqen ɣer yiqeddacen-ik n yifecka imeṛṛa yeldin.", "Connected ({{type}})": "", "Connection failed": "Tuqqna d-tawezɣit", + "Connection lost. Reconnecting...": "", "Connection successful": "Tuqqna tedda akken iwata", "Connection Type": "Anaw n tuqqna", "Connections": "Tuqqniwin", @@ -525,6 +533,8 @@ "Delete All Chats": "Kkes akk idiwenniyen", "Delete all contents inside this folder": "", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "Kkes asqerdec", "Delete chat?": "Tebɣiḍ ad tekkseḍ adiwenni?", "Delete Event": "", @@ -886,6 +896,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "Ur yessaweḍ ara ad yessukken aseɣwen", "Failed to create API Key.": "Ur yessaweḍ ara ad d-yesnulfu tasarut API.", + "Failed to delete calendar": "", "Failed to delete note": "Ur yessaweḍ ara ad yekkes tazmilt", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "Ur yessaweḍ ara ad d-yekkes agbur seg ufaylu: {{error}}", @@ -1625,6 +1636,7 @@ "Reasoning Effort": "", "Reasoning Tags": "", "Recently Used": "", + "Reconnected": "", "Record": "Aklas", "Record voice": "Sekles taɣect", "Redirecting you to Open WebUI Community": "Aseḍfeṛ ar Temɣiwant n Open WebUI", @@ -1648,6 +1660,7 @@ "Relevance": "Tawatit", "Relevance Threshold": "", "Remember Dismissal": "Ccfawa ɣef ugdal", + "Reminder": "", "Remove": "Kkes", "Remove {{MODELID}} from list.": "Kkes {{MODELID}} seg wumuɣ.", "Remove action": "", @@ -1894,7 +1907,11 @@ "Start a new conversation": "", "Start of the channel": "Tazwara n ubadu", "Start Tag": "", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "", "Status cleared successfully": "", @@ -2007,6 +2024,7 @@ "This will delete {{NAME}} and all its contents.": "Aya ad yekkes {NAME}} akked akk ayen yellan deg-s.", "This will delete all models including custom models": "Aya ad yekkes akk timudmin yellan gar-asent timudmin n tannumi", "This will delete all models including custom models and cannot be undone.": "Aya ad yekkes akk timudmin gar-asent timudmin tudmawanin yerna ur yezmir yiwen ad tent-id-yerr.", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "Aya ad yales taffa n tmussni u ad yemtawi akk ifuyla. Tebɣiḍ ad tkemmleḍ?", "Thorough explanation": "Asegzi leqqayen", "Thought": "", @@ -2093,6 +2111,7 @@ "Unloads {{FROM_NOW}}": "", "Unlock mysteries": "", "Unpin": "Kkes asenteḍ", + "Unpin from Sidebar": "", "Unravel secrets": "Sban-d ayen yeffren", "Unshare Chat": "", "Unsupported file type.": "Tawsit n ufaylu ur tettusefrak ara.", diff --git a/src/lib/i18n/locales/ko-KR/translation.json b/src/lib/i18n/locales/ko-KR/translation.json index 2c4d22b843..e29c402508 100644 --- a/src/lib/i18n/locales/ko-KR/translation.json +++ b/src/lib/i18n/locales/ko-KR/translation.json @@ -32,8 +32,13 @@ "{{user}}'s Chats": "{{user}}의 채팅", "{{webUIName}} Backend Required": "{{webUIName}} 백엔드가 필요합니다.", "*Prompt node ID(s) are required for image generation": "이미지 생성에는 프롬프트 노드 ID가 필요합니다.", + "1 hour before": "", "1 Source": "소스1", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "", "A discussion channel where access is controlled by groups and permissions": "", "A new version (v{{LATEST_VERSION}}) is now available.": "새로운 버전 (v{{LATEST_VERSION}})을 사용할 수 있습니다.", @@ -201,6 +206,7 @@ "Ask a question": "질문하기", "Assistant": "어시스턴트", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "지식 기반에서 파일 첨부", "Attach Files": "", "Attach Knowledge": "지식 기반 첨부", @@ -275,6 +281,7 @@ "Bypass Web Loader": "웹 콘텐츠 불러오기 생략", "Cache Base Model List": "기본 모델 목록 캐시", "Calendar": "캘린더", + "Calendar deleted": "", "Calendars": "", "Call": "음성 기능", "Call feature is not supported when using Web STT engine": "웹 STT 엔진 사용 시, 음성 기능은 지원되지 않습니다.", @@ -412,6 +419,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "OpenAPI 호환 외부 도구 서버에 연결합니다.", "Connected ({{type}})": "", "Connection failed": "연결 실패", + "Connection lost. Reconnecting...": "", "Connection successful": "연결 성공", "Connection Type": "연결 방식", "Connections": "연결", @@ -524,6 +532,8 @@ "Delete All Chats": "모든 채팅 삭제", "Delete all contents inside this folder": "", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "채팅 삭제", "Delete chat?": "채팅을 삭제하시겠습니까?", "Delete Event": "", @@ -885,6 +895,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "링크 복사 실패", "Failed to create API Key.": "API 키 생성에 실패했습니다.", + "Failed to delete calendar": "", "Failed to delete note": "노트 삭제 실패", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "파일 내용 추출 실패: {{error}}", @@ -1624,6 +1635,7 @@ "Reasoning Effort": "추론 난이도", "Reasoning Tags": "추론 태그", "Recently Used": "", + "Reconnected": "", "Record": "녹음", "Record voice": "음성 녹음", "Redirecting you to Open WebUI Community": "OpenWebUI 커뮤니티로 리디렉션 중", @@ -1647,6 +1659,7 @@ "Relevance": "관련도", "Relevance Threshold": "관련성 임계값", "Remember Dismissal": "다시 보지 않기", + "Reminder": "", "Remove": "삭제", "Remove {{MODELID}} from list.": "{{MODELID}}를 목록에서 제거.", "Remove action": "", @@ -1892,7 +1905,10 @@ "Start a new conversation": "새 대화 시작", "Start of the channel": "채널 시작", "Start Tag": "시작 태그", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "상태", "Status cleared successfully": "상태 초기화에 성공했습니다", @@ -2005,6 +2021,7 @@ "This will delete {{NAME}} and all its contents.": "{{NAME}}모든 내용을 삭제합니다.", "This will delete all models including custom models": "이렇게 하면 사용자 지정 모델을 포함한 모든 모델이 삭제됩니다", "This will delete all models including custom models and cannot be undone.": "이렇게 하면 사용자 지정 모델을 포함한 모든 모델이 삭제되며 실행 취소할 수 없습니다.", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "지식 기반과 모든 파일 연동을 초기화합니다. 계속 하시겠습니까?", "Thorough explanation": "완전한 설명", "Thought": "", @@ -2091,6 +2108,7 @@ "Unloads {{FROM_NOW}}": "{{FROM_NOW}} 언로드", "Unlock mysteries": "미스터리 풀기", "Unpin": "고정 해제", + "Unpin from Sidebar": "", "Unravel secrets": "비밀 풀기", "Unshare Chat": "", "Unsupported file type.": "지원하지 않는 파일 형식", diff --git a/src/lib/i18n/locales/lt-LT/translation.json b/src/lib/i18n/locales/lt-LT/translation.json index 0f2df1e48d..784832cde7 100644 --- a/src/lib/i18n/locales/lt-LT/translation.json +++ b/src/lib/i18n/locales/lt-LT/translation.json @@ -35,8 +35,13 @@ "{{user}}'s Chats": "{{user}} susirašinėjimai", "{{webUIName}} Backend Required": "{{webUIName}} būtinas serveris", "*Prompt node ID(s) are required for image generation": "", + "1 hour before": "", "1 Source": "", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "", "A discussion channel where access is controlled by groups and permissions": "", "A new version (v{{LATEST_VERSION}}) is now available.": "", @@ -204,6 +209,7 @@ "Ask a question": "", "Assistant": "", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "", "Attach Files": "", "Attach Knowledge": "", @@ -278,6 +284,7 @@ "Bypass Web Loader": "", "Cache Base Model List": "", "Calendar": "", + "Calendar deleted": "", "Calendars": "", "Call": "Skambinti", "Call feature is not supported when using Web STT engine": "Skambučio funkcionalumas neleidžiamas naudojant Web STT variklį", @@ -415,6 +422,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "", "Connected ({{type}})": "", "Connection failed": "", + "Connection lost. Reconnecting...": "", "Connection successful": "", "Connection Type": "", "Connections": "Ryšiai", @@ -527,6 +535,8 @@ "Delete All Chats": "Ištrinti visus pokalbius", "Delete all contents inside this folder": "", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "Ištrinti pokalbį", "Delete chat?": "Ištrinti pokalbį?", "Delete Event": "", @@ -888,6 +898,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "", "Failed to create API Key.": "Nepavyko sukurti API rakto", + "Failed to delete calendar": "", "Failed to delete note": "", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "", @@ -1627,6 +1638,7 @@ "Reasoning Effort": "", "Reasoning Tags": "", "Recently Used": "", + "Reconnected": "", "Record": "", "Record voice": "Įrašyti balsą", "Redirecting you to Open WebUI Community": "Perkeliam Jus į OpenWebUI bendruomenę", @@ -1650,6 +1662,7 @@ "Relevance": "", "Relevance Threshold": "", "Remember Dismissal": "", + "Reminder": "", "Remove": "Pašalinti", "Remove {{MODELID}} from list.": "", "Remove action": "", @@ -1898,7 +1911,13 @@ "Start a new conversation": "", "Start of the channel": "Kanalo pradžia", "Start Tag": "", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_few": "", + "Starting in {{count}} minutes_many": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "", "Status cleared successfully": "", @@ -2011,6 +2030,7 @@ "This will delete {{NAME}} and all its contents.": "", "This will delete all models including custom models": "", "This will delete all models including custom models and cannot be undone.": "", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "", "Thorough explanation": "Platus paaiškinimas", "Thought": "", @@ -2097,6 +2117,7 @@ "Unloads {{FROM_NOW}}": "", "Unlock mysteries": "", "Unpin": "Atsemigti", + "Unpin from Sidebar": "", "Unravel secrets": "", "Unshare Chat": "", "Unsupported file type.": "", diff --git a/src/lib/i18n/locales/lv-LV/translation.json b/src/lib/i18n/locales/lv-LV/translation.json index 9b28e934cf..09ae34c6a3 100644 --- a/src/lib/i18n/locales/lv-LV/translation.json +++ b/src/lib/i18n/locales/lv-LV/translation.json @@ -34,8 +34,13 @@ "{{user}}'s Chats": "{{user}} tērzēšanas", "{{webUIName}} Backend Required": "Nepieciešama {{webUIName}} aizmugursistēma", "*Prompt node ID(s) are required for image generation": "*Attēla ģenerēšanai nepieciešami uzvednes mezgla ID", + "1 hour before": "", "1 Source": "1 avots", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "Sadarbības kanāls, kurā cilvēki pievienojas kā dalībnieki", "A discussion channel where access is controlled by groups and permissions": "Diskusiju kanāls, kur piekļuvi kontrolē grupas un atļaujas", "A new version (v{{LATEST_VERSION}}) is now available.": "Ir pieejama jauna versija (v{{LATEST_VERSION}}).", @@ -203,6 +208,7 @@ "Ask a question": "Uzdot jautājumu", "Assistant": "Asistents", "Async Embedding Processing": "Asinhronā iegulšanas apstrāde", + "At time of event": "", "Attach File From Knowledge": "Pievienot failu no zināšanām", "Attach Files": "", "Attach Knowledge": "Pievienot zināšanau bāzi", @@ -277,6 +283,7 @@ "Bypass Web Loader": "Apiet tīmekļa ielādētāju", "Cache Base Model List": "Kešot bāzes modeļu sarakstu", "Calendar": "Kalendārs", + "Calendar deleted": "", "Calendars": "", "Call": "Zvans", "Call feature is not supported when using Web STT engine": "Zvana funkcija nav atbalstīta, izmantojot Web STT dzinēju", @@ -414,6 +421,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "Savienojieties ar saviem OpenAPI saderīgajiem ārējo rīku serveriem.", "Connected ({{type}})": "", "Connection failed": "Savienojums neizdevās", + "Connection lost. Reconnecting...": "", "Connection successful": "Savienojums veiksmīgs", "Connection Type": "Savienojuma tips", "Connections": "Savienojumi", @@ -526,6 +534,8 @@ "Delete All Chats": "Dzēst visas tērzēšanas", "Delete all contents inside this folder": "Dzēst visu saturu šajā mapē", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "Dzēst tērzēšanu", "Delete chat?": "Dzēst tērzēšanu?", "Delete Event": "", @@ -887,6 +897,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "Neizdevās nokopēt saiti", "Failed to create API Key.": "Neizdevās izveidot API atslēgu.", + "Failed to delete calendar": "", "Failed to delete note": "Neizdevās dzēst piezīmi", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "Neizdevās ekstrahēt saturu no faila: {{error}}", @@ -1626,6 +1637,7 @@ "Reasoning Effort": "Spriedumu pūles", "Reasoning Tags": "Spriedumu tagi", "Recently Used": "", + "Reconnected": "", "Record": "Ierakstīt", "Record voice": "Ierakstīt balsi", "Redirecting you to Open WebUI Community": "Novirza jūs uz Open WebUI kopienu", @@ -1649,6 +1661,7 @@ "Relevance": "Atbilstība", "Relevance Threshold": "Atbilstības slieksnis", "Remember Dismissal": "Atcerēties noraidījumu", + "Reminder": "", "Remove": "Noņemt", "Remove {{MODELID}} from list.": "Noņemt {{MODELID}} no saraksta.", "Remove action": "", @@ -1896,7 +1909,12 @@ "Start a new conversation": "Sākt jaunu sarunu", "Start of the channel": "Kanāla sākums", "Start Tag": "Sākuma tags", + "Starting in {{count}} minutes_zero": "", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "Statuss", "Status cleared successfully": "Statuss veiksmīgi notīrīts", @@ -2009,6 +2027,7 @@ "This will delete {{NAME}} and all its contents.": "Tas dzēsīs {{NAME}} un visu tā saturu.", "This will delete all models including custom models": "Tas dzēsīs visus modeļus, ieskaitot pielāgotos modeļus", "This will delete all models including custom models and cannot be undone.": "Tas dzēsīs visus modeļus, ieskaitot pielāgotos modeļus, un to nevar atsaukt.", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "Tas atiestatīs zināšanu bāzi un sinhronizēs visus failus. Vai vēlaties turpināt?", "Thorough explanation": "Pamatīgs skaidrojums", "Thought": "", @@ -2095,6 +2114,7 @@ "Unloads {{FROM_NOW}}": "Izlādēs {{FROM_NOW}}", "Unlock mysteries": "Atklājiet noslēpumus", "Unpin": "Atspraust", + "Unpin from Sidebar": "", "Unravel secrets": "Atšķetiniet noslēpumus", "Unshare Chat": "", "Unsupported file type.": "Neatbalstīts faila tips.", diff --git a/src/lib/i18n/locales/ms-MY/translation.json b/src/lib/i18n/locales/ms-MY/translation.json index 7f23e7ed77..8dd75ac052 100644 --- a/src/lib/i18n/locales/ms-MY/translation.json +++ b/src/lib/i18n/locales/ms-MY/translation.json @@ -32,8 +32,13 @@ "{{user}}'s Chats": "Perbualan {{user}}", "{{webUIName}} Backend Required": "{{webUIName}} Backend diperlukan", "*Prompt node ID(s) are required for image generation": "*ID nod Prompt diperlukan untuk penjanaan imej", + "1 hour before": "", "1 Source": "1 Sumber", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "1m_masa_lalu", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "Saluran kolaborasi di mana orang ramai menyertai sebagai ahli", "A discussion channel where access is controlled by groups and permissions": "Saluran perbincangan di mana akses dikawal oleh kumpulan dan kebenaran", "A new version (v{{LATEST_VERSION}}) is now available.": "Versi baru (v{{LATEST_VERSION}}) kini tersedia.", @@ -201,6 +206,7 @@ "Ask a question": "Tanya soalan", "Assistant": "Pembantu", "Async Embedding Processing": "Pemprosesan Embedding Tak Segerak", + "At time of event": "", "Attach File From Knowledge": "Lampirkan Fail Daripada Pengetahuan", "Attach Files": "", "Attach Knowledge": "Lampirkan Pengetahuan", @@ -275,6 +281,7 @@ "Bypass Web Loader": "Langkau Pemuat Web", "Cache Base Model List": "Senarai Model Asas Cache", "Calendar": "Kalendar", + "Calendar deleted": "", "Calendars": "", "Call": "Hubungi", "Call feature is not supported when using Web STT engine": "Ciri panggilan tidak disokong apabila menggunakan enjin Web STT", @@ -412,6 +419,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "Sambung ke pelayan alat luaran yang serasi dengan OpenAPI anda sendiri.", "Connected ({{type}})": "", "Connection failed": "Sambungan gagal", + "Connection lost. Reconnecting...": "", "Connection successful": "Sambungan berjaya", "Connection Type": "Jenis Sambungan", "Connections": "Sambungan", @@ -524,6 +532,8 @@ "Delete All Chats": "Padam Semua Perbualan", "Delete all contents inside this folder": "Padam semua kandungan dalam folder ini", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "Padam Perbualan", "Delete chat?": "Padam perbualan?", "Delete Event": "", @@ -885,6 +895,7 @@ "Failed to connect to {{URL}} terminal server": "Gagal menyambung ke pelayan terminal {{URL}}", "Failed to copy link": "Gagal menyalin pautan", "Failed to create API Key.": "Gagal mencipta kekunci API", + "Failed to delete calendar": "", "Failed to delete note": "Gagal memadamkan nota", "Failed to download image": "Gagal memuat turun imej", "Failed to extract content from the file: {{error}}": "Gagal mengekstrak kandungan daripada fail: {{error}}", @@ -1624,6 +1635,7 @@ "Reasoning Effort": "Usaha Penaakulan", "Reasoning Tags": "Tag Penaakulan", "Recently Used": "", + "Reconnected": "", "Record": "Rakaman", "Record voice": "Rakam suara", "Redirecting you to Open WebUI Community": "Membawa anda ke Komuniti OpenWebUI", @@ -1647,6 +1659,7 @@ "Relevance": "Perkaitan", "Relevance Threshold": "Ambang Perkaitan", "Remember Dismissal": "Ingat Penutupan", + "Reminder": "", "Remove": "Hapuskan", "Remove {{MODELID}} from list.": "Keluarkan {{MODELID}} daripada senarai.", "Remove action": "Keluarkan tindakan", @@ -1892,7 +1905,10 @@ "Start a new conversation": "Mulai perbualan baru", "Start of the channel": "Permulaan saluran", "Start Tag": "Tag Permulaan", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "Kernel sedang dimulakan...", + "Starting now": "", "State": "", "Status": "Status", "Status cleared successfully": "Status telah dihapus dengan berjaya", @@ -2005,6 +2021,7 @@ "This will delete {{NAME}} and all its contents.": "Ini akan memadam {{NAME}} dan semua kandungannya.", "This will delete all models including custom models": "Ini akan memadam semua model termasuk model tersuai", "This will delete all models including custom models and cannot be undone.": "Ini akan memadam semua model termasuk model tersuai dan tidak boleh dibuat asal.", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "Ini akan menetapkan semula pangkalan pengetahuan dan menyegerakkan semua fail. Adakah anda ingin meneruskan?", "Thorough explanation": "Penjelasan menyeluruh", "Thought": "", @@ -2091,6 +2108,7 @@ "Unloads {{FROM_NOW}}": "Membuang {{FROM_NOW}}", "Unlock mysteries": "Buka Misteri", "Unpin": "Nyahsematkan", + "Unpin from Sidebar": "", "Unravel secrets": "Ungkap Rahsia", "Unshare Chat": "Batalkan Perkongsian Sembang", "Unsupported file type.": "Jenis fail tidak disokong.", diff --git a/src/lib/i18n/locales/nb-NO/translation.json b/src/lib/i18n/locales/nb-NO/translation.json index ebfff87340..7f45c82157 100644 --- a/src/lib/i18n/locales/nb-NO/translation.json +++ b/src/lib/i18n/locales/nb-NO/translation.json @@ -33,8 +33,13 @@ "{{user}}'s Chats": "{{user}} sine samtaler", "{{webUIName}} Backend Required": "Backend til {{webUIName}} kreves", "*Prompt node ID(s) are required for image generation": "Node-ID-er for ledetekst kreves for generering av bilder", + "1 hour before": "", "1 Source": "", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "", "A discussion channel where access is controlled by groups and permissions": "", "A new version (v{{LATEST_VERSION}}) is now available.": "En ny versjon (v{{LATEST_VERSION}}) er nå tilgjengelig.", @@ -202,6 +207,7 @@ "Ask a question": "Still et spørsmål", "Assistant": "Assistent", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "", "Attach Files": "", "Attach Knowledge": "", @@ -276,6 +282,7 @@ "Bypass Web Loader": "", "Cache Base Model List": "", "Calendar": "Kalender", + "Calendar deleted": "", "Calendars": "", "Call": "Ring", "Call feature is not supported when using Web STT engine": "Ringefunksjonen støttes ikke når du bruker Web STT-motoren", @@ -413,6 +420,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "", "Connected ({{type}})": "", "Connection failed": "", + "Connection lost. Reconnecting...": "", "Connection successful": "", "Connection Type": "", "Connections": "Tilkoblinger", @@ -525,6 +533,8 @@ "Delete All Chats": "Slett alle chatter", "Delete all contents inside this folder": "", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "Slett chat", "Delete chat?": "Slette chat?", "Delete Event": "", @@ -886,6 +896,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "", "Failed to create API Key.": "Kan ikke opprette en API-nøkkel.", + "Failed to delete calendar": "", "Failed to delete note": "", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "", @@ -1625,6 +1636,7 @@ "Reasoning Effort": "Resonneringsinnsats", "Reasoning Tags": "", "Recently Used": "", + "Reconnected": "", "Record": "", "Record voice": "Ta opp tale", "Redirecting you to Open WebUI Community": "Omdirigerer deg til OpenWebUI-fellesskapet", @@ -1648,6 +1660,7 @@ "Relevance": "Relevans", "Relevance Threshold": "", "Remember Dismissal": "", + "Reminder": "", "Remove": "Fjern", "Remove {{MODELID}} from list.": "", "Remove action": "", @@ -1894,7 +1907,11 @@ "Start a new conversation": "", "Start of the channel": "Starten av kanalen", "Start Tag": "", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "", "Status cleared successfully": "", @@ -2007,6 +2024,7 @@ "This will delete {{NAME}} and all its contents.": "Dette sletter {{NAME}} og alt innholdet.", "This will delete all models including custom models": "Dette sletter alle modeller, inkludert tilpassede modeller", "This will delete all models including custom models and cannot be undone.": "Dette sletter alle modeller, inkludert tilpassede modeller, og kan ikke angres.", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "Dette tilbakestiller kunnskapsbasen og synkroniserer alle filer. Vil du fortsette?", "Thorough explanation": "Grundig forklaring", "Thought": "", @@ -2093,6 +2111,7 @@ "Unloads {{FROM_NOW}}": "", "Unlock mysteries": "Lås opp mysterier", "Unpin": "Løsne", + "Unpin from Sidebar": "", "Unravel secrets": "Avslør hemmeligheter", "Unshare Chat": "", "Unsupported file type.": "", diff --git a/src/lib/i18n/locales/nl-NL/translation.json b/src/lib/i18n/locales/nl-NL/translation.json index 3458ccf314..4651d33fc5 100644 --- a/src/lib/i18n/locales/nl-NL/translation.json +++ b/src/lib/i18n/locales/nl-NL/translation.json @@ -33,8 +33,13 @@ "{{user}}'s Chats": "{{user}}'s chats", "{{webUIName}} Backend Required": "{{webUIName}} Backend verplicht", "*Prompt node ID(s) are required for image generation": "*Prompt node ID('s) zijn vereist voor het genereren van afbeeldingen", + "1 hour before": "", "1 Source": "", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "", "A discussion channel where access is controlled by groups and permissions": "", "A new version (v{{LATEST_VERSION}}) is now available.": "Een nieuwe versie (v{{LATEST_VERSION}}) is nu beschikbaar", @@ -202,6 +207,7 @@ "Ask a question": "Stel een vraag", "Assistant": "Assistent", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "", "Attach Files": "", "Attach Knowledge": "", @@ -276,6 +282,7 @@ "Bypass Web Loader": "", "Cache Base Model List": "", "Calendar": "Agenda", + "Calendar deleted": "", "Calendars": "", "Call": "Oproep", "Call feature is not supported when using Web STT engine": "Belfunctie wordt niet ondersteund bij gebruik van de Web STT engine", @@ -413,6 +420,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "Verbind met je eigen OpenAPI-compatibele externe gereedschapservers", "Connected ({{type}})": "", "Connection failed": "Connectie mislukt", + "Connection lost. Reconnecting...": "", "Connection successful": "Connectie succesvol", "Connection Type": "Connectie type", "Connections": "Verbindingen", @@ -525,6 +533,8 @@ "Delete All Chats": "Verwijder alle chats", "Delete all contents inside this folder": "", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "Verwijder chat", "Delete chat?": "Verwijder chat?", "Delete Event": "", @@ -886,6 +896,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "", "Failed to create API Key.": "Kan API Key niet aanmaken.", + "Failed to delete calendar": "", "Failed to delete note": "", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "", @@ -1625,6 +1636,7 @@ "Reasoning Effort": "Redeneerinspanning", "Reasoning Tags": "", "Recently Used": "", + "Reconnected": "", "Record": "", "Record voice": "Neem stem op", "Redirecting you to Open WebUI Community": "Je wordt doorgestuurd naar OpenWebUI Community", @@ -1648,6 +1660,7 @@ "Relevance": "Relevantie", "Relevance Threshold": "", "Remember Dismissal": "", + "Reminder": "", "Remove": "Verwijderen", "Remove {{MODELID}} from list.": "", "Remove action": "", @@ -1894,7 +1907,11 @@ "Start a new conversation": "", "Start of the channel": "Begin van het kanaal", "Start Tag": "", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "", "Status cleared successfully": "", @@ -2007,6 +2024,7 @@ "This will delete {{NAME}} and all its contents.": "Dit zal {{NAME}} verwijderen en al zijn inhoud.", "This will delete all models including custom models": "Dit zal alle modellen, ook aangepaste modellen, verwijderen", "This will delete all models including custom models and cannot be undone.": "Dit zal alle modellen, ook aangepaste modellen, verwijderen en kan niet ongedaan worden gemaakt", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "Dit zal de kennisdatabase resetten en alle bestanden synchroniseren. Wilt u doorgaan?", "Thorough explanation": "Grondige uitleg", "Thought": "", @@ -2093,6 +2111,7 @@ "Unloads {{FROM_NOW}}": "", "Unlock mysteries": "Ontsleutel mysteries", "Unpin": "Losmaken", + "Unpin from Sidebar": "", "Unravel secrets": "Ontrafel geheimen", "Unshare Chat": "", "Unsupported file type.": "", diff --git a/src/lib/i18n/locales/pa-IN/translation.json b/src/lib/i18n/locales/pa-IN/translation.json index c6d006cb1a..d29adc4b55 100644 --- a/src/lib/i18n/locales/pa-IN/translation.json +++ b/src/lib/i18n/locales/pa-IN/translation.json @@ -33,8 +33,13 @@ "{{user}}'s Chats": "{{user}} ਦੀਆਂ ਗੱਲਾਂ", "{{webUIName}} Backend Required": "{{webUIName}} ਬੈਕਐਂਡ ਲੋੜੀਂਦਾ ਹੈ", "*Prompt node ID(s) are required for image generation": "", + "1 hour before": "", "1 Source": "", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "", "A discussion channel where access is controlled by groups and permissions": "", "A new version (v{{LATEST_VERSION}}) is now available.": "", @@ -202,6 +207,7 @@ "Ask a question": "", "Assistant": "", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "", "Attach Files": "", "Attach Knowledge": "", @@ -276,6 +282,7 @@ "Bypass Web Loader": "", "Cache Base Model List": "", "Calendar": "", + "Calendar deleted": "", "Calendars": "", "Call": "", "Call feature is not supported when using Web STT engine": "", @@ -413,6 +420,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "", "Connected ({{type}})": "", "Connection failed": "", + "Connection lost. Reconnecting...": "", "Connection successful": "", "Connection Type": "", "Connections": "ਕਨੈਕਸ਼ਨ", @@ -525,6 +533,8 @@ "Delete All Chats": "ਸਾਰੀਆਂ ਚੈਟਾਂ ਨੂੰ ਮਿਟਾਓ", "Delete all contents inside this folder": "", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "ਗੱਲਬਾਤ ਮਿਟਾਓ", "Delete chat?": "", "Delete Event": "", @@ -886,6 +896,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "", "Failed to create API Key.": "API ਕੁੰਜੀ ਬਣਾਉਣ ਵਿੱਚ ਅਸਫਲ।", + "Failed to delete calendar": "", "Failed to delete note": "", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "", @@ -1625,6 +1636,7 @@ "Reasoning Effort": "", "Reasoning Tags": "", "Recently Used": "", + "Reconnected": "", "Record": "", "Record voice": "ਆਵਾਜ਼ ਰਿਕਾਰਡ ਕਰੋ", "Redirecting you to Open WebUI Community": "ਤੁਹਾਨੂੰ ਓਪਨਵੈਬਯੂਆਈ ਕਮਿਊਨਿਟੀ ਵੱਲ ਰੀਡਾਇਰੈਕਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ", @@ -1648,6 +1660,7 @@ "Relevance": "", "Relevance Threshold": "", "Remember Dismissal": "", + "Reminder": "", "Remove": "ਹਟਾਓ", "Remove {{MODELID}} from list.": "", "Remove action": "", @@ -1894,7 +1907,11 @@ "Start a new conversation": "", "Start of the channel": "ਚੈਨਲ ਦੀ ਸ਼ੁਰੂਆਤ", "Start Tag": "", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "", "Status cleared successfully": "", @@ -2007,6 +2024,7 @@ "This will delete {{NAME}} and all its contents.": "", "This will delete all models including custom models": "", "This will delete all models including custom models and cannot be undone.": "", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "", "Thorough explanation": "ਵਿਸਥਾਰ ਨਾਲ ਵਿਆਖਿਆ", "Thought": "", @@ -2093,6 +2111,7 @@ "Unloads {{FROM_NOW}}": "", "Unlock mysteries": "", "Unpin": "", + "Unpin from Sidebar": "", "Unravel secrets": "", "Unshare Chat": "", "Unsupported file type.": "", diff --git a/src/lib/i18n/locales/pl-PL/translation.json b/src/lib/i18n/locales/pl-PL/translation.json index 1dff552813..7143c47bc7 100644 --- a/src/lib/i18n/locales/pl-PL/translation.json +++ b/src/lib/i18n/locales/pl-PL/translation.json @@ -35,8 +35,13 @@ "{{user}}'s Chats": "Czaty użytkownika {{user}}", "{{webUIName}} Backend Required": "Wymagany backend {{webUIName}}", "*Prompt node ID(s) are required for image generation": "*Do generowania obrazów wymagane jest ID węzła promptu", + "1 hour before": "", "1 Source": "1 źródło", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "Kanał współpracy, do którego użytkownicy dołączają jako członkowie", "A discussion channel where access is controlled by groups and permissions": "Kanał dyskusyjny, do którego dostęp jest kontrolowany przez grupy i uprawnienia", "A new version (v{{LATEST_VERSION}}) is now available.": "Dostępna jest nowa wersja (v{{LATEST_VERSION}}).", @@ -204,6 +209,7 @@ "Ask a question": "Zadaj pytanie", "Assistant": "Asystent", "Async Embedding Processing": "Asynchroniczne przetwarzanie embeddingów", + "At time of event": "", "Attach File From Knowledge": "Dołącz plik z bazy wiedzy", "Attach Files": "", "Attach Knowledge": "Dołącz bazę wiedzy", @@ -278,6 +284,7 @@ "Bypass Web Loader": "Pomiń Web Loader", "Cache Base Model List": "Cachuj listę modeli bazowych", "Calendar": "Kalendarz", + "Calendar deleted": "", "Calendars": "", "Call": "Rozmowa", "Call feature is not supported when using Web STT engine": "Funkcja rozmowy nie jest obsługiwana przy użyciu przeglądarkowego silnika STT", @@ -415,6 +422,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "Połącz z własnymi serwerami narzędzi zgodnymi z OpenAPI.", "Connected ({{type}})": "", "Connection failed": "Połączenie nieudane", + "Connection lost. Reconnecting...": "", "Connection successful": "Połączenie udane", "Connection Type": "Typ połączenia", "Connections": "Połączenia", @@ -527,6 +535,8 @@ "Delete All Chats": "Usuń wszystkie czaty", "Delete all contents inside this folder": "Usuń całą zawartość tego folderu", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "Usuń czat", "Delete chat?": "Usunąć czat?", "Delete Event": "", @@ -888,6 +898,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "Nie udało się skopiować linku", "Failed to create API Key.": "Nie udało się utworzyć klucza API.", + "Failed to delete calendar": "", "Failed to delete note": "Nie udało się usunąć notatki", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "Nie udało się wyodrębnić treści z pliku: {{error}}", @@ -1627,6 +1638,7 @@ "Reasoning Effort": "Reasoning Effort", "Reasoning Tags": "Reasoning Tags", "Recently Used": "", + "Reconnected": "", "Record": "Nagraj", "Record voice": "Nagraj głos", "Redirecting you to Open WebUI Community": "Przekierowanie do społeczności Open WebUI", @@ -1650,6 +1662,7 @@ "Relevance": "Trafność", "Relevance Threshold": "Próg trafności", "Remember Dismissal": "Zapamiętaj odrzucenie", + "Reminder": "", "Remove": "Usuń", "Remove {{MODELID}} from list.": "Usuń {{MODELID}} z listy.", "Remove action": "", @@ -1898,7 +1911,13 @@ "Start a new conversation": "Rozpocznij nową rozmowę", "Start of the channel": "Początek kanału", "Start Tag": "Tag startowy", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_few": "", + "Starting in {{count}} minutes_many": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "Status", "Status cleared successfully": "Status wyczyszczony pomyślnie", @@ -2011,6 +2030,7 @@ "This will delete {{NAME}} and all its contents.": "To usunie {{NAME}} i całą zawartość.", "This will delete all models including custom models": "To usunie wszystkie modele (w tym własne).", "This will delete all models including custom models and cannot be undone.": "To usunie wszystkie modele i jest nieodwracalne.", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "To zresetuje bazę wiedzy i zsynchronizuje pliki. Kontynuować?", "Thorough explanation": "Dokładne wyjaśnienie", "Thought": "", @@ -2097,6 +2117,7 @@ "Unloads {{FROM_NOW}}": "Odładowuje za {{FROM_NOW}}", "Unlock mysteries": "Odkrywaj tajemnice", "Unpin": "Odepnij", + "Unpin from Sidebar": "", "Unravel secrets": "Rozwiązuj zagadki", "Unshare Chat": "", "Unsupported file type.": "Nieobsługiwany typ pliku.", diff --git a/src/lib/i18n/locales/pt-BR/translation.json b/src/lib/i18n/locales/pt-BR/translation.json index 0954c0a91a..bde1024811 100644 --- a/src/lib/i18n/locales/pt-BR/translation.json +++ b/src/lib/i18n/locales/pt-BR/translation.json @@ -34,8 +34,13 @@ "{{user}}'s Chats": "Chats de {{user}}", "{{webUIName}} Backend Required": "Backend {{webUIName}} necessário", "*Prompt node ID(s) are required for image generation": "*Prompt node ID(s) são obrigatórios para gerar imagens", + "1 hour before": "", "1 Source": "1 Origem", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "1m atrás", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "Um canal de colaboração onde as pessoas se juntam como membros.", "A discussion channel where access is controlled by groups and permissions": "Um canal de discussão onde o acesso é controlado por grupos e permissões.", "A new version (v{{LATEST_VERSION}}) is now available.": "Uma nova versão (v{{LATEST_VERSION}}) está disponível.", @@ -203,6 +208,7 @@ "Ask a question": "Faça uma pergunta", "Assistant": "Assistente", "Async Embedding Processing": "Processamento de Embedding assíncrono", + "At time of event": "", "Attach File From Knowledge": "Anexar arquivo da base de conhecimento", "Attach Files": "Anexar arquivos", "Attach Knowledge": "Anexar Base de Conhecimento", @@ -277,6 +283,7 @@ "Bypass Web Loader": "Ignorar carregador da Web", "Cache Base Model List": "Lista de modelos base de cache", "Calendar": "Calendário", + "Calendar deleted": "", "Calendars": "", "Call": "Chamada", "Call feature is not supported when using Web STT engine": "O recurso de chamada não é suportado ao usar o mecanismo Web STT", @@ -414,6 +421,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "Conecte-se aos seus próprios servidores de ferramentas externas compatíveis com OpenAPI.", "Connected ({{type}})": "Conectado ({{type}})", "Connection failed": "Falha na conexão", + "Connection lost. Reconnecting...": "", "Connection successful": "Conexão bem-sucedida", "Connection Type": "Tipo de conexão", "Connections": "Conexões", @@ -526,6 +534,8 @@ "Delete All Chats": "Excluir Todos os Chats", "Delete all contents inside this folder": "Apague todo o conteúdo desta pasta.", "Delete automation?": "Excluir automação?", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "Excluir Chat", "Delete chat?": "Excluir chat?", "Delete Event": "", @@ -887,6 +897,7 @@ "Failed to connect to {{URL}} terminal server": "Falha ao conectar ao servidor de terminal {{URL}}", "Failed to copy link": "Falha ao copiar o link", "Failed to create API Key.": "Falha ao criar a Chave API.", + "Failed to delete calendar": "", "Failed to delete note": "Falha ao excluir a nota", "Failed to download image": "Falha ao baixar a imagem", "Failed to extract content from the file: {{error}}": "Falha ao extrair conteúdo do arquivo: {{error}}", @@ -1626,6 +1637,7 @@ "Reasoning Effort": "Esforço de raciocínio", "Reasoning Tags": "Tags de raciocínio", "Recently Used": "Usado recentemente", + "Reconnected": "", "Record": "Gravar", "Record voice": "Gravar voz", "Redirecting you to Open WebUI Community": "Redirecionando você para a Comunidade OpenWebUI", @@ -1649,6 +1661,7 @@ "Relevance": "Relevância", "Relevance Threshold": "Limiar de Relevância", "Remember Dismissal": "Lembrar da dispensa", + "Reminder": "", "Remove": "Remover", "Remove {{MODELID}} from list.": "Remover {{MODELID}} da lista.", "Remove action": "Remover ação", @@ -1896,7 +1909,12 @@ "Start a new conversation": "Iniciar uma nova conversa", "Start of the channel": "Início do canal", "Start Tag": "Tag inicial", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_many": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "Iniciando kernel...", + "Starting now": "", "State": "Estado", "Status": "Status", "Status cleared successfully": "Status liberado com sucesso", @@ -2009,6 +2027,7 @@ "This will delete {{NAME}} and all its contents.": "Esta ação excluirá {{NAME}} e todos seus conteúdos.", "This will delete all models including custom models": "Isto vai excluir todos os modelos, incluindo personalizados", "This will delete all models including custom models and cannot be undone.": "Isto vai excluir todos os modelos, incluindo personalizados e não pode ser desfeito.", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "Esta ação resetará a base de conhecimento e sincronizará todos os arquivos. Deseja continuar?", "Thorough explanation": "Explicação detalhada", "Thought": "Pensamento", @@ -2095,6 +2114,7 @@ "Unloads {{FROM_NOW}}": "Descarrega {{FROM_NOW}}", "Unlock mysteries": "Desvendar mistérios", "Unpin": "Desfixar", + "Unpin from Sidebar": "", "Unravel secrets": "Desvendar segredos", "Unshare Chat": "Cancelar compartilhamento do chat", "Unsupported file type.": "Tipo de arquivo não suportado.", diff --git a/src/lib/i18n/locales/pt-PT/translation.json b/src/lib/i18n/locales/pt-PT/translation.json index c8f23d1dea..1b9c2e7e48 100644 --- a/src/lib/i18n/locales/pt-PT/translation.json +++ b/src/lib/i18n/locales/pt-PT/translation.json @@ -34,8 +34,13 @@ "{{user}}'s Chats": "Chats de {{user}}", "{{webUIName}} Backend Required": "Backend {{webUIName}} Necessário", "*Prompt node ID(s) are required for image generation": "*ID(s) do nó de prompt são necessários para a geração de imagem", + "1 hour before": "", "1 Source": "Uma Fonte", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "há 1 minuto", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "Um canal de colaboração onde as pessoas entram como membros", "A discussion channel where access is controlled by groups and permissions": "Um canal de discussão onde o acesso é controlado por grupos e permissões", "A new version (v{{LATEST_VERSION}}) is now available.": "Uma nova versão (v{{LATEST_VERSION}}) está agora disponível.", @@ -203,6 +208,7 @@ "Ask a question": "Fazer uma pergunta", "Assistant": "Assistente", "Async Embedding Processing": "Incorporação de Processamento Assíncrono", + "At time of event": "", "Attach File From Knowledge": "Anexar Ficheiro do Conhecimento", "Attach Files": "", "Attach Knowledge": "Anexar Conhecimento", @@ -277,6 +283,7 @@ "Bypass Web Loader": "Ignorar Carregador Web", "Cache Base Model List": "Cache da Lista de Modelos Base", "Calendar": "Calendário", + "Calendar deleted": "", "Calendars": "", "Call": "Chamar", "Call feature is not supported when using Web STT engine": "A funcionalide de Chamar não é suportada quando usa um motor Web STT", @@ -414,6 +421,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "Ligar ao seu próprio servidor de ferramentas externo compatível com a OpenAI.", "Connected ({{type}})": "", "Connection failed": "Ligação falhou", + "Connection lost. Reconnecting...": "", "Connection successful": "Ligação bem sucedida", "Connection Type": "Tipo de ligação", "Connections": "Ligações", @@ -526,6 +534,8 @@ "Delete All Chats": "Apagar todas as conversas", "Delete all contents inside this folder": "Apagar todo o conteúdo dentro desta pasta", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "Apagar Conversa", "Delete chat?": "Apagar conversa?", "Delete Event": "", @@ -887,6 +897,7 @@ "Failed to connect to {{URL}} terminal server": "Falha na ligação ao terminal de servidores {{URL}}", "Failed to copy link": "Falha ao copiar a hiperligação", "Failed to create API Key.": "Falha ao criar a Chave da API.", + "Failed to delete calendar": "", "Failed to delete note": "Falha ao apagar a nota", "Failed to download image": "Falha ao transferir a imagem", "Failed to extract content from the file: {{error}}": "Falha ao extrair conteúdo do ficheiro: {{error}}", @@ -1626,6 +1637,7 @@ "Reasoning Effort": "Esforço de Raciocínio", "Reasoning Tags": "Etiquetas de Raciocínio", "Recently Used": "", + "Reconnected": "", "Record": "Gravar", "Record voice": "Gravar voz", "Redirecting you to Open WebUI Community": "Redirecionando-o para a Comunidade OpenWebUI", @@ -1649,6 +1661,7 @@ "Relevance": "Relevância", "Relevance Threshold": "Limite de Relevância", "Remember Dismissal": "Lembrar Descartar", + "Reminder": "", "Remove": "Remover", "Remove {{MODELID}} from list.": "Remover {{MODELID}} da lista.", "Remove action": "Remover ação", @@ -1896,7 +1909,12 @@ "Start a new conversation": "Iniciar uma nova conversa", "Start of the channel": "Início do canal", "Start Tag": "Início da Tag", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_many": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "Iniciando kernel...", + "Starting now": "", "State": "", "Status": "Estado", "Status cleared successfully": "Estado limpo com sucesso", @@ -2009,6 +2027,7 @@ "This will delete {{NAME}} and all its contents.": "Isto irá excluir {{NAME}} e todo o seu conteúdo.", "This will delete all models including custom models": "Isto irá excluir todos os modelos, incluindo os modelos personalizados", "This will delete all models including custom models and cannot be undone.": "Isto irá excluir todos os modelos, incluindo os modelos personalizados, e não pode ser desfeito.", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "Isto irá redefinir a base de conhecimento e sincronizar todos os arquivos. Deseja continuar?", "Thorough explanation": "Explicação Minuciosa", "Thought": "", @@ -2095,6 +2114,7 @@ "Unloads {{FROM_NOW}}": "Descarreva {{FROM_NOW}}", "Unlock mysteries": "Desbloquear Mistérios", "Unpin": "Desafixar", + "Unpin from Sidebar": "", "Unravel secrets": "Desvendar segredos", "Unshare Chat": "Parar partilha de conversa", "Unsupported file type.": "Tipo de ficheiro não suportado", diff --git a/src/lib/i18n/locales/ro-RO/translation.json b/src/lib/i18n/locales/ro-RO/translation.json index 0215a6eacc..3028840716 100644 --- a/src/lib/i18n/locales/ro-RO/translation.json +++ b/src/lib/i18n/locales/ro-RO/translation.json @@ -34,8 +34,13 @@ "{{user}}'s Chats": "Conversațiile lui {{user}}", "{{webUIName}} Backend Required": "Este necesar backend-ul {{webUIName}}", "*Prompt node ID(s) are required for image generation": "*Sunt necesare ID-urile nodurilor de solicitare pentru generarea imaginii*", + "1 hour before": "", "1 Source": "", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "", "A discussion channel where access is controlled by groups and permissions": "", "A new version (v{{LATEST_VERSION}}) is now available.": "O nouă versiune (v{{LATEST_VERSION}}) este acum disponibilă.", @@ -203,6 +208,7 @@ "Ask a question": "Pune o întrebare", "Assistant": "Asistent", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "", "Attach Files": "", "Attach Knowledge": "", @@ -277,6 +283,7 @@ "Bypass Web Loader": "", "Cache Base Model List": "", "Calendar": "", + "Calendar deleted": "", "Calendars": "", "Call": "Apel", "Call feature is not supported when using Web STT engine": "Funcția de apel nu este suportată când se utilizează motorul Web STT", @@ -414,6 +421,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "", "Connected ({{type}})": "", "Connection failed": "Conexiune eșuată", + "Connection lost. Reconnecting...": "", "Connection successful": "Conexiune reușită", "Connection Type": "Tip conexiune", "Connections": "Conexiuni", @@ -526,6 +534,8 @@ "Delete All Chats": "Șterge Toate Conversațiile", "Delete all contents inside this folder": "", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "Șterge Conversația", "Delete chat?": "Șterge conversația?", "Delete Event": "", @@ -887,6 +897,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "", "Failed to create API Key.": "Crearea cheii API a eșuat.", + "Failed to delete calendar": "", "Failed to delete note": "", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "", @@ -1626,6 +1637,7 @@ "Reasoning Effort": "", "Reasoning Tags": "", "Recently Used": "", + "Reconnected": "", "Record": "", "Record voice": "Înregistrează vocea", "Redirecting you to Open WebUI Community": "Vă redirecționăm către Comunitatea OpenWebUI", @@ -1649,6 +1661,7 @@ "Relevance": "Relevanță", "Relevance Threshold": "", "Remember Dismissal": "", + "Reminder": "", "Remove": "Înlătură", "Remove {{MODELID}} from list.": "", "Remove action": "", @@ -1896,7 +1909,12 @@ "Start a new conversation": "", "Start of the channel": "Începutul canalului", "Start Tag": "", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_few": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "", "Status cleared successfully": "", @@ -2009,6 +2027,7 @@ "This will delete {{NAME}} and all its contents.": "Acest lucru va șterge {{NAME}} și toate conținuturile sale.", "This will delete all models including custom models": "", "This will delete all models including custom models and cannot be undone.": "", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "Aceasta va reseta baza de cunoștințe și va sincroniza toate fișierele. Doriți să continuați?", "Thorough explanation": "Explicație detaliată", "Thought": "", @@ -2095,6 +2114,7 @@ "Unloads {{FROM_NOW}}": "", "Unlock mysteries": "", "Unpin": "Anulează Fixarea", + "Unpin from Sidebar": "", "Unravel secrets": "Dezvăluie secretele", "Unshare Chat": "", "Unsupported file type.": "", diff --git a/src/lib/i18n/locales/ru-RU/translation.json b/src/lib/i18n/locales/ru-RU/translation.json index 15663aecc0..954d8f7f4e 100644 --- a/src/lib/i18n/locales/ru-RU/translation.json +++ b/src/lib/i18n/locales/ru-RU/translation.json @@ -35,8 +35,13 @@ "{{user}}'s Chats": "Чаты {{user}}'а", "{{webUIName}} Backend Required": "Необходимо подключение к серверу {{webUIName}}", "*Prompt node ID(s) are required for image generation": "ID узлов промптов обязательны для генерации изображения", + "1 hour before": "", "1 Source": "1 Источник", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "1 мин назад", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "Канал для совместной работы с присоединением участников", "A discussion channel where access is controlled by groups and permissions": "Обсуждение канала, где доступ контролируется группами и разрешениями", "A new version (v{{LATEST_VERSION}}) is now available.": "Новая версия (v{{LATEST_VERSION}}) теперь доступна.", @@ -204,6 +209,7 @@ "Ask a question": "Задать вопрос", "Assistant": "Ассистент", "Async Embedding Processing": "Асинхронная обработка эмбеддингов", + "At time of event": "", "Attach File From Knowledge": "Прикрепить файл из знаний", "Attach Files": "", "Attach Knowledge": "Прикрепить знания", @@ -278,6 +284,7 @@ "Bypass Web Loader": "Обход веб-загрузчика", "Cache Base Model List": "Кэшировать список базовых моделей", "Calendar": "Календарь", + "Calendar deleted": "", "Calendars": "", "Call": "Вызов", "Call feature is not supported when using Web STT engine": "Функция вызова не поддерживается при использовании Web STT (распознавание речи) движка", @@ -415,6 +422,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "Подключитесь к вашим собственным внешним инструментальным серверам, совместимым с OpenAPI.", "Connected ({{type}})": "Подключено ({{type}})", "Connection failed": "Подключение не удалось", + "Connection lost. Reconnecting...": "", "Connection successful": "Успешное подключение", "Connection Type": "Тип подключения", "Connections": "Подключения", @@ -527,6 +535,8 @@ "Delete All Chats": "Удалить ВСЕ Чаты", "Delete all contents inside this folder": "Удалить все содержимое внутри этой папки", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "Удалить Чат", "Delete chat?": "Удалить чат?", "Delete Event": "", @@ -888,6 +898,7 @@ "Failed to connect to {{URL}} terminal server": "Не удалось подключиться к серверу терминала {{URL}}", "Failed to copy link": "Не удалось скопировать ссылку", "Failed to create API Key.": "Не удалось создать ключ API.", + "Failed to delete calendar": "", "Failed to delete note": "Не удалось удалить заметку", "Failed to download image": "Не удалось загрузить изображение", "Failed to extract content from the file: {{error}}": "Не удалось извлечь содержимое из файла: {{error}}", @@ -1627,6 +1638,7 @@ "Reasoning Effort": "Усилия для рассуждения", "Reasoning Tags": "Теги рассуждения", "Recently Used": "", + "Reconnected": "", "Record": "Запись", "Record voice": "Записать голос", "Redirecting you to Open WebUI Community": "Перенаправляем вас в сообщество OpenWebUI", @@ -1650,6 +1662,7 @@ "Relevance": "Релевантность", "Relevance Threshold": "Порог релевантности", "Remember Dismissal": "Запомнить отклонение", + "Reminder": "", "Remove": "Удалить", "Remove {{MODELID}} from list.": "Удалить {{MODELID}} из списка.", "Remove action": "Удалить действие", @@ -1898,7 +1911,13 @@ "Start a new conversation": "Начать новый разговор", "Start of the channel": "Начало канала", "Start Tag": "Начальный тег", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_few": "", + "Starting in {{count}} minutes_many": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "Запуск ядра...", + "Starting now": "", "State": "", "Status": "Статус", "Status cleared successfully": "Статус успешно очищен", @@ -2011,6 +2030,7 @@ "This will delete {{NAME}} and all its contents.": "При этом будет удален {{NAME}} и все его содержимое.", "This will delete all models including custom models": "Это приведет к удалению всех моделей, включая пользовательские модели.", "This will delete all models including custom models and cannot be undone.": "При этом будут удалены все модели, включая пользовательские, и это действие нельзя будет отменить.", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "Это сбросит базу знаний и синхронизирует все файлы. Хотите продолжить?", "Thorough explanation": "Подробное объяснение", "Thought": "Рассуждение", @@ -2097,6 +2117,7 @@ "Unloads {{FROM_NOW}}": "Выгрузка из памяти {{FROM_NOW}}", "Unlock mysteries": "Разблокируйте тайны", "Unpin": "Открепить", + "Unpin from Sidebar": "", "Unravel secrets": "Разгадать секреты", "Unshare Chat": "Отменить публикацию чата", "Unsupported file type.": "Неподдерживаемый тип файла.", diff --git a/src/lib/i18n/locales/sk-SK/translation.json b/src/lib/i18n/locales/sk-SK/translation.json index 74d16d847c..0ecf193014 100644 --- a/src/lib/i18n/locales/sk-SK/translation.json +++ b/src/lib/i18n/locales/sk-SK/translation.json @@ -35,8 +35,13 @@ "{{user}}'s Chats": "{{user}}'s konverzácie", "{{webUIName}} Backend Required": "Vyžaduje sa {{webUIName}} Backend", "*Prompt node ID(s) are required for image generation": "*Sú potrebné IDs pre prompt node na generovanie obrázkov", + "1 hour before": "", "1 Source": "", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "", "A discussion channel where access is controlled by groups and permissions": "", "A new version (v{{LATEST_VERSION}}) is now available.": "Nová verzia (v{{LATEST_VERSION}}) je teraz k dispozícii.", @@ -204,6 +209,7 @@ "Ask a question": "Opýtajte sa otázku", "Assistant": "Asistent", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "", "Attach Files": "", "Attach Knowledge": "Pripojiť znalosti", @@ -278,6 +284,7 @@ "Bypass Web Loader": "", "Cache Base Model List": "", "Calendar": "", + "Calendar deleted": "", "Calendars": "", "Call": "Volanie", "Call feature is not supported when using Web STT engine": "Funkcia volania nie je podporovaná pri použití Web STT engine.", @@ -415,6 +422,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "", "Connected ({{type}})": "", "Connection failed": "", + "Connection lost. Reconnecting...": "", "Connection successful": "", "Connection Type": "", "Connections": "Pripojenia", @@ -527,6 +535,8 @@ "Delete All Chats": "Odstrániť všetky konverzácie", "Delete all contents inside this folder": "", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "Odstrániť chat", "Delete chat?": "Odstrániť konverzáciu?", "Delete Event": "", @@ -888,6 +898,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "", "Failed to create API Key.": "Nepodarilo sa vytvoriť API kľúč.", + "Failed to delete calendar": "", "Failed to delete note": "", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "", @@ -1627,6 +1638,7 @@ "Reasoning Effort": "", "Reasoning Tags": "", "Recently Used": "", + "Reconnected": "", "Record": "", "Record voice": "Nahrať hlas", "Redirecting you to Open WebUI Community": "Presmerovanie na komunitu OpenWebUI", @@ -1650,6 +1662,7 @@ "Relevance": "Relevancia", "Relevance Threshold": "", "Remember Dismissal": "", + "Reminder": "", "Remove": "Odstrániť", "Remove {{MODELID}} from list.": "", "Remove action": "", @@ -1898,7 +1911,13 @@ "Start a new conversation": "", "Start of the channel": "Začiatok kanála", "Start Tag": "", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_few": "", + "Starting in {{count}} minutes_many": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "", "Status cleared successfully": "", @@ -2011,6 +2030,7 @@ "This will delete {{NAME}} and all its contents.": "Týmto dôjde k odstráneniu {{NAME}} a všetkých jeho obsahov.", "This will delete all models including custom models": "", "This will delete all models including custom models and cannot be undone.": "", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "Toto obnoví znalostnú databázu a synchronizuje všetky súbory. Prajete si pokračovať?", "Thorough explanation": "Obsiahle vysvetlenie", "Thought": "", @@ -2097,6 +2117,7 @@ "Unloads {{FROM_NOW}}": "", "Unlock mysteries": "", "Unpin": "Odopnúť", + "Unpin from Sidebar": "", "Unravel secrets": "", "Unshare Chat": "", "Unsupported file type.": "", diff --git a/src/lib/i18n/locales/sr-RS/translation.json b/src/lib/i18n/locales/sr-RS/translation.json index fd5e72e1fb..647eb187b5 100644 --- a/src/lib/i18n/locales/sr-RS/translation.json +++ b/src/lib/i18n/locales/sr-RS/translation.json @@ -34,8 +34,13 @@ "{{user}}'s Chats": "Ћаскања корисника {{user}}", "{{webUIName}} Backend Required": "Захтева се {{webUIName}} позадинац", "*Prompt node ID(s) are required for image generation": "", + "1 hour before": "", "1 Source": "", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "", "A discussion channel where access is controlled by groups and permissions": "", "A new version (v{{LATEST_VERSION}}) is now available.": "", @@ -203,6 +208,7 @@ "Ask a question": "Постави питање", "Assistant": "Помоћник", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "", "Attach Files": "", "Attach Knowledge": "", @@ -277,6 +283,7 @@ "Bypass Web Loader": "", "Cache Base Model List": "", "Calendar": "", + "Calendar deleted": "", "Calendars": "", "Call": "Позив", "Call feature is not supported when using Web STT engine": "", @@ -414,6 +421,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "", "Connected ({{type}})": "", "Connection failed": "", + "Connection lost. Reconnecting...": "", "Connection successful": "", "Connection Type": "", "Connections": "Везе", @@ -526,6 +534,8 @@ "Delete All Chats": "Обриши сва ћаскања", "Delete all contents inside this folder": "", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "Обриши ћаскање", "Delete chat?": "Обрисати ћаскање?", "Delete Event": "", @@ -887,6 +897,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "", "Failed to create API Key.": "Неуспешно стварање API кључа.", + "Failed to delete calendar": "", "Failed to delete note": "", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "", @@ -1626,6 +1637,7 @@ "Reasoning Effort": "Јачина размишљања", "Reasoning Tags": "", "Recently Used": "", + "Reconnected": "", "Record": "", "Record voice": "Сними глас", "Redirecting you to Open WebUI Community": "Преусмеравање на OpenWebUI заједницу", @@ -1649,6 +1661,7 @@ "Relevance": "Примењивост", "Relevance Threshold": "", "Remember Dismissal": "", + "Reminder": "", "Remove": "Уклони", "Remove {{MODELID}} from list.": "", "Remove action": "", @@ -1896,7 +1909,12 @@ "Start a new conversation": "", "Start of the channel": "Почетак канала", "Start Tag": "", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_few": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "", "Status cleared successfully": "", @@ -2009,6 +2027,7 @@ "This will delete {{NAME}} and all its contents.": "Ово ће обрисати {{NAME}} и сав садржај унутар.", "This will delete all models including custom models": "Ово ће обрисати све моделе укључујући прилагођене моделе", "This will delete all models including custom models and cannot be undone.": "Ово ће обрисати све моделе укључујући прилагођене моделе и не може се опозвати.", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "Ово ће обрисати базу знања и ускладити све датотеке. Да ли желите наставити?", "Thorough explanation": "Детаљно објашњење", "Thought": "", @@ -2095,6 +2114,7 @@ "Unloads {{FROM_NOW}}": "", "Unlock mysteries": "Реши мистерије", "Unpin": "Откачи", + "Unpin from Sidebar": "", "Unravel secrets": "Разоткриј тајне", "Unshare Chat": "", "Unsupported file type.": "", diff --git a/src/lib/i18n/locales/sv-SE/translation.json b/src/lib/i18n/locales/sv-SE/translation.json index d75b41b928..9915d73f25 100644 --- a/src/lib/i18n/locales/sv-SE/translation.json +++ b/src/lib/i18n/locales/sv-SE/translation.json @@ -33,8 +33,13 @@ "{{user}}'s Chats": "{{user}}s Chattar", "{{webUIName}} Backend Required": "{{webUIName}} Backend krävs", "*Prompt node ID(s) are required for image generation": "*Prompt node ID(s) krävs för bildgenerering", + "1 hour before": "", "1 Source": "1 källa", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "", "A discussion channel where access is controlled by groups and permissions": "", "A new version (v{{LATEST_VERSION}}) is now available.": "En ny version (v{{LATEST_VERSION}}) är nu tillgänglig.", @@ -202,6 +207,7 @@ "Ask a question": "Ställ en fråga", "Assistant": "Assistent", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "", "Attach Files": "", "Attach Knowledge": "Bifoga kunskap", @@ -276,6 +282,7 @@ "Bypass Web Loader": "Kringgå webbläsare", "Cache Base Model List": "", "Calendar": "Kalender", + "Calendar deleted": "", "Calendars": "", "Call": "Samtal", "Call feature is not supported when using Web STT engine": "Samtalsfunktionen är inte kompatibel med Web Tal-till-text motor", @@ -413,6 +420,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "Anslut till dina egna OpenAPI-kompatibla externa verktygsservrar.", "Connected ({{type}})": "", "Connection failed": "Anslutning misslyckades", + "Connection lost. Reconnecting...": "", "Connection successful": "Anslutning lyckades", "Connection Type": "Anslutningstyp", "Connections": "Anslutningar", @@ -525,6 +533,8 @@ "Delete All Chats": "Ta bort alla chattar", "Delete all contents inside this folder": "", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "Radera chatt", "Delete chat?": "Radera chatt?", "Delete Event": "", @@ -886,6 +896,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "Misslyckades med att kopiera länk", "Failed to create API Key.": "Misslyckades med att skapa API-nyckel.", + "Failed to delete calendar": "", "Failed to delete note": "Misslyckades med att ta bort anteckning", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "", @@ -1625,6 +1636,7 @@ "Reasoning Effort": "Resonemangsinsats", "Reasoning Tags": "Resonemangs-taggar (tags)", "Recently Used": "", + "Reconnected": "", "Record": "Spela in", "Record voice": "Spela in röst", "Redirecting you to Open WebUI Community": "Omdirigerar dig till OpenWebUI Community", @@ -1648,6 +1660,7 @@ "Relevance": "Relevans", "Relevance Threshold": "Relevanströskel", "Remember Dismissal": "Kom ihåg avvisning", + "Reminder": "", "Remove": "Ta bort", "Remove {{MODELID}} from list.": "Ta bort {{MODELID}} från listan.", "Remove action": "", @@ -1894,7 +1907,11 @@ "Start a new conversation": "Starta en ny konversation", "Start of the channel": "Början av kanalen", "Start Tag": "Starta en tagg", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "", "Status cleared successfully": "", @@ -2007,6 +2024,7 @@ "This will delete {{NAME}} and all its contents.": "Detta kommer att radera {{NAME}} och allt dess innehåll.", "This will delete all models including custom models": "Detta kommer att radera alla modeller inklusive anpassade modeller", "This will delete all models including custom models and cannot be undone.": "Detta kommer att radera alla modeller inklusive anpassade modeller och kan inte ångras.", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "Detta kommer att återställa kunskapsbasen och synkronisera alla filer. Vill du fortsätta?", "Thorough explanation": "Djupare förklaring", "Thought": "", @@ -2093,6 +2111,7 @@ "Unloads {{FROM_NOW}}": "Avlastar {{FROM_NOW}}", "Unlock mysteries": "Lås upp mysterier", "Unpin": "Ta bort fästning", + "Unpin from Sidebar": "", "Unravel secrets": "Avslöja hemligheter", "Unshare Chat": "", "Unsupported file type.": "Filtypen stöds inte.", diff --git a/src/lib/i18n/locales/ta-IN/translation.json b/src/lib/i18n/locales/ta-IN/translation.json index 8e5af4f6e2..646aec1471 100644 --- a/src/lib/i18n/locales/ta-IN/translation.json +++ b/src/lib/i18n/locales/ta-IN/translation.json @@ -33,8 +33,13 @@ "{{user}}'s Chats": "{{user}} இன் அரட்டைகள்", "{{webUIName}} Backend Required": "{{webUIName}} பின்தளம் தேவை", "*Prompt node ID(s) are required for image generation": "*பட உருவாக்கத்திற்கு உடனடி முனை ID(கள்) தேவை", + "1 hour before": "", "1 Source": "1 ஆதாரம்", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "1 நிமிடம் முன்", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "மக்கள் உறுப்பினர்களாக சேரும் ஒத்துழைப்பு சேனல்", "A discussion channel where access is controlled by groups and permissions": "குழுக்கள் மற்றும் அனுமதிகளால் அணுகல் கட்டுப்படுத்தப்படும் விவாத சேனல்", "A new version (v{{LATEST_VERSION}}) is now available.": "புதிய பதிப்பு (v{{LATEST_VERSION}}) இப்போது கிடைக்கிறது.", @@ -202,6 +207,7 @@ "Ask a question": "ஒரு கேள்வி கேளுங்கள்", "Assistant": "உதவியாளர்", "Async Embedding Processing": "ஒத்திசைவு உட்பொதித்தல் செயலாக்கம்", + "At time of event": "", "Attach File From Knowledge": "அறிவிலிருந்து கோப்பை இணைக்கவும்", "Attach Files": "கோப்புகளை இணைக்கவும்", "Attach Knowledge": "அறிவை இணைக்கவும்", @@ -276,6 +282,7 @@ "Bypass Web Loader": "பைபாஸ் இணைய ஏற்றி", "Cache Base Model List": "கேச் அடிப்படை மாதிரி பட்டியல்", "Calendar": "நாட்காட்டி", + "Calendar deleted": "", "Calendars": "", "Call": "அழைக்கவும்", "Call feature is not supported when using Web STT engine": "Web STT இன்ஜினைப் பயன்படுத்தும் போது அழைப்பு அம்சம் ஆதரிக்கப்படாது", @@ -413,6 +420,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "உங்கள் சொந்த OpenAPI இணக்கமான வெளிப்புற கருவி சேவையகங்களுடன் இணைக்கவும்.", "Connected ({{type}})": "இணைக்கப்பட்டது ({{type}})", "Connection failed": "இணைப்பு தோல்வியடைந்தது", + "Connection lost. Reconnecting...": "", "Connection successful": "இணைப்பு வெற்றிகரமாக உள்ளது", "Connection Type": "இணைப்பு வகை", "Connections": "இணைப்புகள்", @@ -525,6 +533,8 @@ "Delete All Chats": "அனைத்து அரட்டைகளையும் நீக்கு", "Delete all contents inside this folder": "இந்தக் கோப்புறையில் உள்ள அனைத்து உள்ளடக்கங்களையும் நீக்கவும்", "Delete automation?": "தானியக்கத்தை நீக்கவா?", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "அரட்டையை நீக்கு", "Delete chat?": "அரட்டையை நீக்கவா?", "Delete Event": "", @@ -886,6 +896,7 @@ "Failed to connect to {{URL}} terminal server": "{{URL}} டெர்மினல் சர்வருடன் இணைக்க முடியவில்லை", "Failed to copy link": "இணைப்பை நகலெடுக்க முடியவில்லை", "Failed to create API Key.": "API விசையை உருவாக்குவதில் தோல்வி.", + "Failed to delete calendar": "", "Failed to delete note": "குறிப்பை நீக்க முடியவில்லை", "Failed to download image": "படத்தைப் பதிவிறக்க முடியவில்லை", "Failed to extract content from the file: {{error}}": "கோப்பிலிருந்து உள்ளடக்கத்தைப் பிரித்தெடுக்க முடியவில்லை: {{error}}", @@ -1625,6 +1636,7 @@ "Reasoning Effort": "பகுத்தறிவு முயற்சி", "Reasoning Tags": "பகுத்தறிவு குறிச்சொற்கள்", "Recently Used": "சமீபத்தில் பயன்படுத்தப்பட்டது", + "Reconnected": "", "Record": "பதிவு", "Record voice": "குரல் பதிவு", "Redirecting you to Open WebUI Community": "உங்களை Open WebUI சமூகத்திற்கு திருப்பி விடுகிறோம்", @@ -1648,6 +1660,7 @@ "Relevance": "சம்பந்தம்", "Relevance Threshold": "சம்பந்தமான வரம்பு", "Remember Dismissal": "பணிநீக்கம் என்பதை நினைவில் கொள்க", + "Reminder": "", "Remove": "அகற்று", "Remove {{MODELID}} from list.": "பட்டியலில் இருந்து {{MODELID}} ஐ அகற்று.", "Remove action": "செயலை அகற்று", @@ -1894,7 +1907,11 @@ "Start a new conversation": "புதிய உரையாடலைத் தொடங்கவும்", "Start of the channel": "சேனலின் ஆரம்பம்", "Start Tag": "தொடக்க குறிச்சொல்", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "கர்னலைத் தொடங்குகிறது...", + "Starting now": "", "State": "நிலை", "Status": "நிலை", "Status cleared successfully": "நிலை வெற்றிகரமாக அழிக்கப்பட்டது", @@ -2007,6 +2024,7 @@ "This will delete {{NAME}} and all its contents.": "இது {{NAME}} மற்றும் அதன் அனைத்து உள்ளடக்கங்களையும் நீக்கும்.", "This will delete all models including custom models": "இது தனிப்பயன் மாதிரிகள் உட்பட அனைத்து மாடல்களையும் நீக்கும்", "This will delete all models including custom models and cannot be undone.": "இது தனிப்பயன் மாதிரிகள் உட்பட அனைத்து மாடல்களையும் நீக்கிவிடும், மேலும் செயல்தவிர்க்க முடியாது.", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "இது அறிவுத் தளத்தை மீட்டமைத்து அனைத்து கோப்புகளையும் ஒத்திசைக்கும். நீங்கள் தொடர விரும்புகிறீர்களா?", "Thorough explanation": "விரிவான விளக்கம்", "Thought": "சிந்தனை", @@ -2093,6 +2111,7 @@ "Unloads {{FROM_NOW}}": "{{FROM_NOW}} இறக்குகிறது", "Unlock mysteries": "மர்மங்களைத் திறக்கவும்", "Unpin": "அன்பின்", + "Unpin from Sidebar": "", "Unravel secrets": "இரகசியங்களை அவிழ்த்து விடுங்கள்", "Unshare Chat": "அரட்டையைப் பகிர்வதை நீக்கு", "Unsupported file type.": "ஆதரிக்கப்படாத கோப்பு வகை.", diff --git a/src/lib/i18n/locales/th-TH/translation.json b/src/lib/i18n/locales/th-TH/translation.json index 733bd77d5e..17dd64ef45 100644 --- a/src/lib/i18n/locales/th-TH/translation.json +++ b/src/lib/i18n/locales/th-TH/translation.json @@ -32,8 +32,13 @@ "{{user}}'s Chats": "การแชทของ {{user}}", "{{webUIName}} Backend Required": "ต้องใช้ Backend ของ {{webUIName}}", "*Prompt node ID(s) are required for image generation": "*ต้องระบุ ID ของ prompt node สำหรับการสร้างภาพ", + "1 hour before": "", "1 Source": "1 แหล่งที่มา", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "", "A discussion channel where access is controlled by groups and permissions": "", "A new version (v{{LATEST_VERSION}}) is now available.": "เวอร์ชันใหม่ (v{{LATEST_VERSION}}) พร้อมให้ใช้งานแล้ว", @@ -201,6 +206,7 @@ "Ask a question": "ถามคำถาม", "Assistant": "ผู้ช่วย", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "แนบไฟล์จากฐานความรู้", "Attach Files": "", "Attach Knowledge": "แนบฐานความรู้", @@ -275,6 +281,7 @@ "Bypass Web Loader": "ข้ามตัวโหลดเว็บไซต์", "Cache Base Model List": "แคชรายการโมเดลพื้นฐาน", "Calendar": "ปฏิทิน", + "Calendar deleted": "", "Calendars": "", "Call": "โทร", "Call feature is not supported when using Web STT engine": "ไม่รองรับฟีเจอร์การโทรเมื่อใช้เอนจิน Web STT", @@ -412,6 +419,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "เชื่อมต่อกับเซิร์ฟเวอร์เครื่องมือภายนอกของคุณที่รองรับ OpenAPI", "Connected ({{type}})": "", "Connection failed": "การเชื่อมต่อล้มเหลว", + "Connection lost. Reconnecting...": "", "Connection successful": "เชื่อมต่อสำเร็จ", "Connection Type": "ประเภทการเชื่อมต่อ", "Connections": "การเชื่อมต่อ", @@ -524,6 +532,8 @@ "Delete All Chats": "ลบการแชททั้งหมด", "Delete all contents inside this folder": "", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "ลบแชท", "Delete chat?": "ลบแชท?", "Delete Event": "", @@ -885,6 +895,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "คัดลอกลิงก์ไม่สำเร็จ", "Failed to create API Key.": "สร้าง API Key ล้มเหลว", + "Failed to delete calendar": "", "Failed to delete note": "ลบบันทึกไม่สำเร็จ", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "ไม่สามารถดึงเนื้อหาจากไฟล์ได้: {{error}}", @@ -1624,6 +1635,7 @@ "Reasoning Effort": "ระดับการใช้เหตุผล", "Reasoning Tags": "ป้ายกำกับการให้เหตุผล", "Recently Used": "", + "Reconnected": "", "Record": "บันทึก", "Record voice": "บันทึกเสียง", "Redirecting you to Open WebUI Community": "กำลังเปลี่ยนเส้นทางคุณไปยังชุมชน Open WebUI", @@ -1647,6 +1659,7 @@ "Relevance": "ความเกี่ยวข้อง", "Relevance Threshold": "เกณฑ์ความเกี่ยวข้อง", "Remember Dismissal": "จำการปิดข้อความ", + "Reminder": "", "Remove": "ลบ", "Remove {{MODELID}} from list.": "ลบ {{MODELID}} ออกจากรายการ", "Remove action": "", @@ -1892,7 +1905,10 @@ "Start a new conversation": "เริ่มการสนทนาใหม่", "Start of the channel": "จุดเริ่มต้นของช่อง", "Start Tag": "แท็กเริ่มต้น", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "", "Status cleared successfully": "", @@ -2005,6 +2021,7 @@ "This will delete {{NAME}} and all its contents.": "การดำเนินการนี้จะลบ {{NAME}} และเนื้อหาทั้งหมด", "This will delete all models including custom models": "การดำเนินการนี้จะลบโมเดลทั้งหมด รวมถึงโมเดลแบบกำหนดเอง", "This will delete all models including custom models and cannot be undone.": "การดำเนินการนี้จะลบโมเดลทั้งหมดรวมถึงโมเดลที่กำหนดเอง และไม่สามารถยกเลิกได้", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "การดำเนินการนี้จะรีเซ็ตฐานความรู้และซิงค์ไฟล์ทั้งหมด คุณต้องการดำเนินการต่อหรือไม่?", "Thorough explanation": "คำอธิบายอย่างละเอียด", "Thought": "", @@ -2091,6 +2108,7 @@ "Unloads {{FROM_NOW}}": "ยกเลิกการใช้งาน {{FROM_NOW}}", "Unlock mysteries": "ไขปริศนา", "Unpin": "ยกเลิกการปักหมุด", + "Unpin from Sidebar": "", "Unravel secrets": "เปิดเผยความลับ", "Unshare Chat": "", "Unsupported file type.": "ไม่รองรับไฟล์ประเภทนี้", diff --git a/src/lib/i18n/locales/tk-TM/translation.json b/src/lib/i18n/locales/tk-TM/translation.json index 7fb04a3227..6783a0222a 100644 --- a/src/lib/i18n/locales/tk-TM/translation.json +++ b/src/lib/i18n/locales/tk-TM/translation.json @@ -33,8 +33,13 @@ "{{user}}'s Chats": "{{user}}'iň Çatlary", "{{webUIName}} Backend Required": "{{webUIName}} Backend Zerur", "*Prompt node ID(s) are required for image generation": "", + "1 hour before": "", "1 Source": "", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "", "A discussion channel where access is controlled by groups and permissions": "", "A new version (v{{LATEST_VERSION}}) is now available.": "", @@ -202,6 +207,7 @@ "Ask a question": "", "Assistant": "", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "", "Attach Files": "", "Attach Knowledge": "", @@ -276,6 +282,7 @@ "Bypass Web Loader": "", "Cache Base Model List": "", "Calendar": "", + "Calendar deleted": "", "Calendars": "", "Call": "", "Call feature is not supported when using Web STT engine": "", @@ -413,6 +420,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "", "Connected ({{type}})": "", "Connection failed": "", + "Connection lost. Reconnecting...": "", "Connection successful": "", "Connection Type": "", "Connections": "Baglanyşyklar", @@ -525,6 +533,8 @@ "Delete All Chats": "Ähli Çatlary Öçür", "Delete all contents inside this folder": "", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "", "Delete chat?": "", "Delete Event": "", @@ -886,6 +896,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "", "Failed to create API Key.": "", + "Failed to delete calendar": "", "Failed to delete note": "", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "", @@ -1625,6 +1636,7 @@ "Reasoning Effort": "", "Reasoning Tags": "", "Recently Used": "", + "Reconnected": "", "Record": "", "Record voice": "", "Redirecting you to Open WebUI Community": "", @@ -1648,6 +1660,7 @@ "Relevance": "", "Relevance Threshold": "", "Remember Dismissal": "", + "Reminder": "", "Remove": "Aýyr", "Remove {{MODELID}} from list.": "", "Remove action": "", @@ -1894,7 +1907,11 @@ "Start a new conversation": "", "Start of the channel": "Kanal başy", "Start Tag": "", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "", "Status cleared successfully": "", @@ -2007,6 +2024,7 @@ "This will delete {{NAME}} and all its contents.": "", "This will delete all models including custom models": "", "This will delete all models including custom models and cannot be undone.": "", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "", "Thorough explanation": "", "Thought": "", @@ -2093,6 +2111,7 @@ "Unloads {{FROM_NOW}}": "", "Unlock mysteries": "", "Unpin": "", + "Unpin from Sidebar": "", "Unravel secrets": "", "Unshare Chat": "", "Unsupported file type.": "", diff --git a/src/lib/i18n/locales/tr-TR/translation.json b/src/lib/i18n/locales/tr-TR/translation.json index 8d9e63ce85..5b31954239 100644 --- a/src/lib/i18n/locales/tr-TR/translation.json +++ b/src/lib/i18n/locales/tr-TR/translation.json @@ -33,8 +33,13 @@ "{{user}}'s Chats": "{{user}}'ın Sohbetleri", "{{webUIName}} Backend Required": "{{webUIName}} Arka-uç Gerekli", "*Prompt node ID(s) are required for image generation": "*Görüntü oluşturma için düğüm ID'leri gereklidir", + "1 hour before": "", "1 Source": "1 Kaynak", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "1 dk önce", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "İnsanların üye olarak katıldığı bir iş birliği kanalı", "A discussion channel where access is controlled by groups and permissions": "Erişimin gruplar ve izinlerle kontrol edildiği bir tartışma kanalı", "A new version (v{{LATEST_VERSION}}) is now available.": "Yeni bir sürüm (v{{LATEST_VERSION}}) artık mevcut.", @@ -202,6 +207,7 @@ "Ask a question": "Bir soru sorun", "Assistant": "Asistan", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "Bilgi Tabanından Dosya Ekle", "Attach Files": "", "Attach Knowledge": "Bilgi Tabanı Ekle", @@ -276,6 +282,7 @@ "Bypass Web Loader": "Web Yükleyicisini Atla", "Cache Base Model List": "Temel Model Listesini Önbelleğe Al", "Calendar": "Takvim", + "Calendar deleted": "", "Calendars": "", "Call": "Arama", "Call feature is not supported when using Web STT engine": "Web STT motoru kullanılırken arama özelliği desteklenmiyor", @@ -413,6 +420,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "Kendi OpenAPI uyumlu harici araç sunucularınıza bağlanın.", "Connected ({{type}})": "", "Connection failed": "Bağlantı başarısız", + "Connection lost. Reconnecting...": "", "Connection successful": "Bağlantı başarılı", "Connection Type": "Bağlantı Tipi", "Connections": "Bağlantılar", @@ -525,6 +533,8 @@ "Delete All Chats": "Tüm Sohbetleri Sil", "Delete all contents inside this folder": "Bu klasördeki tüm içerikleri sil", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "Sohbeti Sil", "Delete chat?": "Sohbeti sil?", "Delete Event": "", @@ -886,6 +896,7 @@ "Failed to connect to {{URL}} terminal server": "{{URL}} terminal sunucusuna bağlanılamadı", "Failed to copy link": "Bağlantı kopyalanamadı", "Failed to create API Key.": "API Anahtarı oluşturulamadı.", + "Failed to delete calendar": "", "Failed to delete note": "Not silinemedi", "Failed to download image": "Görsel indirilemedi", "Failed to extract content from the file: {{error}}": "Dosyadan içerik çıkarılamadı: {{error}}", @@ -1625,6 +1636,7 @@ "Reasoning Effort": "", "Reasoning Tags": "", "Recently Used": "", + "Reconnected": "", "Record": "Kaydet", "Record voice": "Ses kaydı yap", "Redirecting you to Open WebUI Community": "OpenWebUI Topluluğuna yönlendiriliyorsunuz", @@ -1648,6 +1660,7 @@ "Relevance": "İlgili", "Relevance Threshold": "İlgi Eşiği", "Remember Dismissal": "", + "Reminder": "", "Remove": "Kaldır", "Remove {{MODELID}} from list.": "{{MODELID}} modelini listeden kaldır.", "Remove action": "", @@ -1894,7 +1907,11 @@ "Start a new conversation": "Yeni bir konuşma başlat", "Start of the channel": "Kanalın başlangıcı", "Start Tag": "Başlangıç Etiketi", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "Kernel başlatılıyor...", + "Starting now": "", "State": "", "Status": "Durum", "Status cleared successfully": "Durum başarıyla temizlendi", @@ -2007,6 +2024,7 @@ "This will delete {{NAME}} and all its contents.": "{{NAME}} ve tüm içeriği silinecek.", "This will delete all models including custom models": "Bu, özel modeller dahil olmak üzere tüm modelleri silecek", "This will delete all models including custom models and cannot be undone.": "Bu, özel modeller dahil olmak üzere tüm modelleri silecek ve geri alınamaz.", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "Bu, bilgi tabanını sıfırlayacak ve tüm dosyaları senkronize edecek. Devam etmek istiyor musunuz?", "Thorough explanation": "Kapsamlı açıklama", "Thought": "", @@ -2093,6 +2111,7 @@ "Unloads {{FROM_NOW}}": "{{FROM_NOW}} sonra modeli bellekten boşaltır", "Unlock mysteries": "", "Unpin": "Sabitlemeyi Kaldır", + "Unpin from Sidebar": "", "Unravel secrets": "", "Unshare Chat": "", "Unsupported file type.": "", diff --git a/src/lib/i18n/locales/ug-CN/translation.json b/src/lib/i18n/locales/ug-CN/translation.json index ea8c92b507..ba0727be45 100644 --- a/src/lib/i18n/locales/ug-CN/translation.json +++ b/src/lib/i18n/locales/ug-CN/translation.json @@ -33,8 +33,13 @@ "{{user}}'s Chats": "{{user}} نىڭ سۆھبەتلىرى", "{{webUIName}} Backend Required": "{{webUIName}} ئارقا سۇپا زۆرۈر", "*Prompt node ID(s) are required for image generation": "رەسىم ھاسىل قىلىش ئۈچۈن تۈرتكە نۇسخا ئۇچۇر ID(لىرى) زۆرۈر", + "1 hour before": "", "1 Source": "", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "", "A discussion channel where access is controlled by groups and permissions": "", "A new version (v{{LATEST_VERSION}}) is now available.": "يېڭى نەشرى (v{{LATEST_VERSION}}) مەۋجۇت.", @@ -202,6 +207,7 @@ "Ask a question": "سؤئال سوراڭ", "Assistant": "ياردەمچى", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "", "Attach Files": "", "Attach Knowledge": "", @@ -276,6 +282,7 @@ "Bypass Web Loader": "تور يۈكلىگۈچتىن ئۆتۈپ كېتىش", "Cache Base Model List": "", "Calendar": "كالىندار", + "Calendar deleted": "", "Calendars": "", "Call": "چاقىرىش", "Call feature is not supported when using Web STT engine": "تور STT ماتورى ئىشلىتىلگەندە چاقىرىش ئىقتىدارى قوللىنىلمايدۇ", @@ -413,6 +420,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "OpenAPI ماس كېلىدىغان سىرتقى قورال مۇلازىمېتىرلىرىغا باغلىنىڭ.", "Connected ({{type}})": "", "Connection failed": "ئۇلىنىش مەغلۇپ بولدى", + "Connection lost. Reconnecting...": "", "Connection successful": "ئۇلىنىش مۇۋەپپەقىيەتلىك", "Connection Type": "ئۇلىنىش تىپى", "Connections": "ئۇلىنىشلەر", @@ -525,6 +533,8 @@ "Delete All Chats": "بارلىق سۆھبەتلەرنى ئۆچۈرۈش", "Delete all contents inside this folder": "", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "سۆھبەت ئۆچۈرۈش", "Delete chat?": "سۆھبەت ئۆچۈرەمسىز؟", "Delete Event": "", @@ -886,6 +896,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "ئۇلانما كۆچۈرۈش مەغلۇپ بولدى", "Failed to create API Key.": "API ئاچقۇچى قۇرۇش مەغلۇپ بولدى.", + "Failed to delete calendar": "", "Failed to delete note": "خاتىرە ئۆچۈرۈش مەغلۇپ بولدى", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "", @@ -1625,6 +1636,7 @@ "Reasoning Effort": "چۈشەندۈرۈش كۈچى", "Reasoning Tags": "", "Recently Used": "", + "Reconnected": "", "Record": "خاتىرىلەش", "Record voice": "ئاۋاز خاتىرىلەش", "Redirecting you to Open WebUI Community": "Open WebUI جەمئىيىتىگە يوللاندى", @@ -1648,6 +1660,7 @@ "Relevance": "مۇناسىۋەتلىكلىك", "Relevance Threshold": "مۇناسىۋەتلىكلىك چەك قىممىتى", "Remember Dismissal": "", + "Reminder": "", "Remove": "چىقىرىۋېتىش", "Remove {{MODELID}} from list.": "تىزىمدىن {{MODELID}} چىقىرىۋېتىش.", "Remove action": "", @@ -1894,7 +1907,11 @@ "Start a new conversation": "", "Start of the channel": "قانالنىڭ باشلانغىنى", "Start Tag": "", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "", "Status cleared successfully": "", @@ -2007,6 +2024,7 @@ "This will delete {{NAME}} and all its contents.": "{{NAME}} ۋە بارلىق مەزمۇنى ئۆچۈرۈلىدۇ.", "This will delete all models including custom models": "بۇ بارلىق مودېللارنى ئۆچۈرۈدۇ (ئۆزلۈك مودېللارنىمۇ ئۆز ئىچىگە ئالىدۇ)", "This will delete all models including custom models and cannot be undone.": "بۇ بارلىق مودېللارنى ئۆچۈرۈدۇ (ئۆزلۈك مودېللارنىمۇ ئۆز ئىچىگە ئالىدۇ) ۋە ئەسلىگە كەلتۈرگىلى بولمايدۇ.", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "بىلىم ئاساسى قايتا تەڭشىلىپ بارلىق ھۆججەتلەر ماس-قەدەملىنىدۇ. داۋاملاشامسىز؟", "Thorough explanation": "تەپسىلىي چۈشەندۈرۈش", "Thought": "", @@ -2093,6 +2111,7 @@ "Unloads {{FROM_NOW}}": "{{FROM_NOW}} چىقىرىلىدۇ", "Unlock mysteries": "سىرلارنى ئاچ", "Unpin": "مۇقىملانمىغان قىلىش", + "Unpin from Sidebar": "", "Unravel secrets": "سىرنى ئاچ", "Unshare Chat": "", "Unsupported file type.": "", diff --git a/src/lib/i18n/locales/uk-UA/translation.json b/src/lib/i18n/locales/uk-UA/translation.json index 5dde246b1f..46de023a39 100644 --- a/src/lib/i18n/locales/uk-UA/translation.json +++ b/src/lib/i18n/locales/uk-UA/translation.json @@ -35,8 +35,13 @@ "{{user}}'s Chats": "Чати {{user}}а", "{{webUIName}} Backend Required": "Необхідно підключення бекенду {{webUIName}}", "*Prompt node ID(s) are required for image generation": "*Для генерації зображення потрібно вказати ідентифікатор(и) вузла(ів)", + "1 hour before": "", "1 Source": "", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "", "A discussion channel where access is controlled by groups and permissions": "", "A new version (v{{LATEST_VERSION}}) is now available.": "Нова версія (v{{LATEST_VERSION}}) зараз доступна.", @@ -204,6 +209,7 @@ "Ask a question": "Задати питання", "Assistant": "Асистент", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "", "Attach Files": "", "Attach Knowledge": "", @@ -278,6 +284,7 @@ "Bypass Web Loader": "", "Cache Base Model List": "", "Calendar": "Календар", + "Calendar deleted": "", "Calendars": "", "Call": "Виклик", "Call feature is not supported when using Web STT engine": "Функція виклику не підтримується при використанні Web STT (розпізнавання мовлення) рушія", @@ -415,6 +422,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "Підключіться до своїх власних зовнішніх серверів інструментів, сумісних з OpenAPI.", "Connected ({{type}})": "", "Connection failed": "", + "Connection lost. Reconnecting...": "", "Connection successful": "", "Connection Type": "", "Connections": "З'єднання", @@ -527,6 +535,8 @@ "Delete All Chats": "Видалити усі чати", "Delete all contents inside this folder": "", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "Видалити чат", "Delete chat?": "Видалити чат?", "Delete Event": "", @@ -888,6 +898,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "", "Failed to create API Key.": "Не вдалося створити API ключ.", + "Failed to delete calendar": "", "Failed to delete note": "", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "", @@ -1627,6 +1638,7 @@ "Reasoning Effort": "Зусилля на міркування", "Reasoning Tags": "", "Recently Used": "", + "Reconnected": "", "Record": "", "Record voice": "Записати голос", "Redirecting you to Open WebUI Community": "Перенаправляємо вас до спільноти OpenWebUI", @@ -1650,6 +1662,7 @@ "Relevance": "Актуальність", "Relevance Threshold": "", "Remember Dismissal": "", + "Reminder": "", "Remove": "Видалити", "Remove {{MODELID}} from list.": "", "Remove action": "", @@ -1898,7 +1911,13 @@ "Start a new conversation": "", "Start of the channel": "Початок каналу", "Start Tag": "", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_few": "", + "Starting in {{count}} minutes_many": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "", "Status cleared successfully": "", @@ -2011,6 +2030,7 @@ "This will delete {{NAME}} and all its contents.": "Це видалить {{NAME}} та усі його вмісти.", "This will delete all models including custom models": "Це видалить усі моделі, включаючи користувацькі моделі", "This will delete all models including custom models and cannot be undone.": "Це видалить усі моделі, включаючи користувацькі моделі, і не може бути скасовано.", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "Це скине базу знань і синхронізує усі файли. Ви бажаєте продовжити?", "Thorough explanation": "Детальне пояснення", "Thought": "", @@ -2097,6 +2117,7 @@ "Unloads {{FROM_NOW}}": "", "Unlock mysteries": "Розкрийте таємниці", "Unpin": "Відчепити", + "Unpin from Sidebar": "", "Unravel secrets": "Розплутуйте секрети", "Unshare Chat": "", "Unsupported file type.": "", diff --git a/src/lib/i18n/locales/ur-PK/translation.json b/src/lib/i18n/locales/ur-PK/translation.json index bc6d4912e0..967dd471db 100644 --- a/src/lib/i18n/locales/ur-PK/translation.json +++ b/src/lib/i18n/locales/ur-PK/translation.json @@ -33,8 +33,13 @@ "{{user}}'s Chats": "{{ صارف }} کی بات چیت", "{{webUIName}} Backend Required": "{{webUIName}} بیک اینڈ درکار ہے", "*Prompt node ID(s) are required for image generation": "تصویر کی تخلیق کے لیے *پرومپٹ نوڈ آئی ڈی(ز) کی ضرورت ہے", + "1 hour before": "", "1 Source": "", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "", "A discussion channel where access is controlled by groups and permissions": "", "A new version (v{{LATEST_VERSION}}) is now available.": "نیا ورژن (v{{LATEST_VERSION}}) اب دستیاب ہے", @@ -202,6 +207,7 @@ "Ask a question": "سوال پوچھیں", "Assistant": "اسسٹنٹ", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "", "Attach Files": "", "Attach Knowledge": "", @@ -276,6 +282,7 @@ "Bypass Web Loader": "", "Cache Base Model List": "", "Calendar": "", + "Calendar deleted": "", "Calendars": "", "Call": "کال کریں", "Call feature is not supported when using Web STT engine": "کال کی خصوصیت ویب STT انجن استعمال کرتے وقت معاونت یافتہ نہیں ہے", @@ -413,6 +420,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "", "Connected ({{type}})": "", "Connection failed": "", + "Connection lost. Reconnecting...": "", "Connection successful": "", "Connection Type": "", "Connections": "کنکشنز", @@ -525,6 +533,8 @@ "Delete All Chats": "تمام چیٹس حذف کریں", "Delete all contents inside this folder": "", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "چیٹ حذف کریں", "Delete chat?": "چیٹ حذف کریں؟", "Delete Event": "", @@ -886,6 +896,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "", "Failed to create API Key.": "API کلید بنانے میں ناکام", + "Failed to delete calendar": "", "Failed to delete note": "", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "", @@ -1625,6 +1636,7 @@ "Reasoning Effort": "", "Reasoning Tags": "", "Recently Used": "", + "Reconnected": "", "Record": "", "Record voice": "صوت ریکارڈ کریں", "Redirecting you to Open WebUI Community": "آپ کو اوپن ویب یو آئی کمیونٹی کی طرف ری ڈائریکٹ کیا جا رہا ہے", @@ -1648,6 +1660,7 @@ "Relevance": "موزونیت", "Relevance Threshold": "", "Remember Dismissal": "", + "Reminder": "", "Remove": "ہٹا دیں", "Remove {{MODELID}} from list.": "", "Remove action": "", @@ -1894,7 +1907,11 @@ "Start a new conversation": "", "Start of the channel": "چینل کی شروعات", "Start Tag": "", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "", "Status cleared successfully": "", @@ -2007,6 +2024,7 @@ "This will delete {{NAME}} and all its contents.": "یہ {{NAME}} اور اس کے تمام مواد کو حذف کر دے گا", "This will delete all models including custom models": "", "This will delete all models including custom models and cannot be undone.": "", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "یہ علمی بنیاد کو دوبارہ ترتیب دے گا اور تمام فائلز کو متوازن کرے گا کیا آپ جاری رکھنا چاہتے ہیں؟", "Thorough explanation": "مکمل وضاحت", "Thought": "", @@ -2093,6 +2111,7 @@ "Unloads {{FROM_NOW}}": "", "Unlock mysteries": "", "Unpin": "ان پن کریں", + "Unpin from Sidebar": "", "Unravel secrets": "", "Unshare Chat": "", "Unsupported file type.": "", diff --git a/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json b/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json index b4193be7b8..fe4f5b1da1 100644 --- a/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json +++ b/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json @@ -33,8 +33,13 @@ "{{user}}'s Chats": "{{user}} нинг чатлари", "{{webUIName}} Backend Required": "{{webUIName}} Баcкенд талаб қилинади", "*Prompt node ID(s) are required for image generation": "*Расм яратиш учун тезкор тугун идентификаторлари талаб қилинади", + "1 hour before": "", "1 Source": "", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "", "A discussion channel where access is controlled by groups and permissions": "", "A new version (v{{LATEST_VERSION}}) is now available.": "Энди янги версия (v{{LATEST_VERSION}}) мавжуд.", @@ -202,6 +207,7 @@ "Ask a question": "Савол беринг", "Assistant": "Ёрдамчи", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "", "Attach Files": "", "Attach Knowledge": "", @@ -276,6 +282,7 @@ "Bypass Web Loader": "Веб юклагични четлаб ўтиш", "Cache Base Model List": "", "Calendar": "Календар", + "Calendar deleted": "", "Calendars": "", "Call": "Қўнғироқ қилинг", "Call feature is not supported when using Web STT engine": "Wеб СТТ механизмидан фойдаланилганда қўнғироқ функсияси қўллаб-қувватланмайди", @@ -413,6 +420,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "Ўзингизнинг OpenAIга мос келадиган ташқи асбоблар серверларига уланинг.", "Connected ({{type}})": "", "Connection failed": "Уланиш амалга ошмади", + "Connection lost. Reconnecting...": "", "Connection successful": "Уланиш муваффақиятли", "Connection Type": "Уланиш тури", "Connections": "Уланишлар", @@ -525,6 +533,8 @@ "Delete All Chats": "Барча суҳбатларни ўчириш", "Delete all contents inside this folder": "", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "Чатни ўчириш", "Delete chat?": "Чат ўчирилсинми?", "Delete Event": "", @@ -886,6 +896,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "Ҳаволани нусхалаб бўлмади", "Failed to create API Key.": "АПИ калитини яратиб бўлмади.", + "Failed to delete calendar": "", "Failed to delete note": "Қайдни ўчириб бўлмади", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "", @@ -1625,6 +1636,7 @@ "Reasoning Effort": "Мулоҳаза юритиш ҳаракатлари", "Reasoning Tags": "", "Recently Used": "", + "Reconnected": "", "Record": "Ёзиб олиш", "Record voice": "Овозни ёзиб олинг", "Redirecting you to Open WebUI Community": "Сизни Опен WебУИ ҳамжамиятига йўналтирмоқда", @@ -1648,6 +1660,7 @@ "Relevance": "Мувофиқлик", "Relevance Threshold": "Мувофиқлик чегараси", "Remember Dismissal": "", + "Reminder": "", "Remove": "Ўчириш", "Remove {{MODELID}} from list.": "", "Remove action": "", @@ -1894,7 +1907,11 @@ "Start a new conversation": "", "Start of the channel": "Канал боши", "Start Tag": "", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "", "Status cleared successfully": "", @@ -2007,6 +2024,7 @@ "This will delete {{NAME}} and all its contents.": "Бу <стронг>{{NAME}} ва <стронг>барча мазмунини ўчириб ташлайди.", "This will delete all models including custom models": "Бу барча моделларни, шу жумладан махсус моделларни ўчириб ташлайди", "This will delete all models including custom models and cannot be undone.": "Бу барча моделларни, жумладан, махсус моделларни ҳам ўчириб ташлайди ва уларни ортга қайтариб бўлмайди.", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "Бу билимлар базасини қайта тиклайди ва барча файлларни синхронлаштиради. Давом этишни хоҳлайсизми?", "Thorough explanation": "Тўлиқ тушунтириш", "Thought": "", @@ -2093,6 +2111,7 @@ "Unloads {{FROM_NOW}}": "{{FROM_NOW}} юклайди", "Unlock mysteries": "Сирларни очинг", "Unpin": "Ечиш", + "Unpin from Sidebar": "", "Unravel secrets": "Сирларни очинг", "Unshare Chat": "", "Unsupported file type.": "", diff --git a/src/lib/i18n/locales/uz-Latn-Uz/translation.json b/src/lib/i18n/locales/uz-Latn-Uz/translation.json index b7c12ae135..2ffada0eab 100644 --- a/src/lib/i18n/locales/uz-Latn-Uz/translation.json +++ b/src/lib/i18n/locales/uz-Latn-Uz/translation.json @@ -33,8 +33,13 @@ "{{user}}'s Chats": "{{user}} ning chatlari", "{{webUIName}} Backend Required": "{{webUIName}} Backend talab qilinadi", "*Prompt node ID(s) are required for image generation": "*Rasm yaratish uchun tezkor tugun identifikatorlari talab qilinadi", + "1 hour before": "", "1 Source": "", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "", "A discussion channel where access is controlled by groups and permissions": "", "A new version (v{{LATEST_VERSION}}) is now available.": "Endi yangi versiya (v{{LATEST_VERSION}}) mavjud.", @@ -202,6 +207,7 @@ "Ask a question": "Savol bering", "Assistant": "Yordamchi", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "", "Attach Files": "", "Attach Knowledge": "", @@ -276,6 +282,7 @@ "Bypass Web Loader": "Veb yuklagichni chetlab o'tish", "Cache Base Model List": "", "Calendar": "Kalendar", + "Calendar deleted": "", "Calendars": "", "Call": "Qo'ng'iroq qiling", "Call feature is not supported when using Web STT engine": "Web STT mexanizmidan foydalanilganda qo'ng'iroq funksiyasi qo'llab-quvvatlanmaydi", @@ -413,6 +420,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "O'zingizning OpenAPI-ga mos keladigan tashqi asboblar serverlariga ulaning.", "Connected ({{type}})": "", "Connection failed": "Ulanish amalga oshmadi", + "Connection lost. Reconnecting...": "", "Connection successful": "Ulanish muvaffaqiyatli", "Connection Type": "Ulanish turi", "Connections": "Ulanishlar", @@ -525,6 +533,8 @@ "Delete All Chats": "Barcha suhbatlarni o'chirish", "Delete all contents inside this folder": "", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "Chatni oʻchirish", "Delete chat?": "Chat oʻchirilsinmi?", "Delete Event": "", @@ -886,6 +896,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "Havolani nusxalab bo‘lmadi", "Failed to create API Key.": "API kalitini yaratib bo‘lmadi.", + "Failed to delete calendar": "", "Failed to delete note": "Qaydni o‘chirib bo‘lmadi", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "", @@ -1625,6 +1636,7 @@ "Reasoning Effort": "Mulohaza yuritish harakatlari", "Reasoning Tags": "", "Recently Used": "", + "Reconnected": "", "Record": "Yozib olish", "Record voice": "Ovozni yozib oling", "Redirecting you to Open WebUI Community": "Sizni Open WebUI hamjamiyatiga yoʻnaltirmoqda", @@ -1648,6 +1660,7 @@ "Relevance": "Muvofiqlik", "Relevance Threshold": "Muvofiqlik chegarasi", "Remember Dismissal": "", + "Reminder": "", "Remove": "O'chirish", "Remove {{MODELID}} from list.": "", "Remove action": "", @@ -1894,7 +1907,11 @@ "Start a new conversation": "", "Start of the channel": "Kanal boshlanishi", "Start Tag": "", + "Starting in {{count}} minutes_one": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "", "Status cleared successfully": "", @@ -2007,6 +2024,7 @@ "This will delete {{NAME}} and all its contents.": "Bu {{NAME}} va barcha mazmunini o‘chirib tashlaydi.", "This will delete all models including custom models": "Bu barcha modellarni, shu jumladan maxsus modellarni o'chirib tashlaydi", "This will delete all models including custom models and cannot be undone.": "Bu barcha modellarni, jumladan, maxsus modellarni ham o‘chirib tashlaydi va ularni ortga qaytarib bo‘lmaydi.", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "Bu bilimlar bazasini qayta tiklaydi va barcha fayllarni sinxronlashtiradi. Davom etishni xohlaysizmi?", "Thorough explanation": "To'liq tushuntirish", "Thought": "", @@ -2093,6 +2111,7 @@ "Unloads {{FROM_NOW}}": "{{FROM_NOW}} yuklaydi", "Unlock mysteries": "Sirlarni oching", "Unpin": "Yechish", + "Unpin from Sidebar": "", "Unravel secrets": "Sirlarni oching", "Unshare Chat": "", "Unsupported file type.": "", diff --git a/src/lib/i18n/locales/vi-VN/translation.json b/src/lib/i18n/locales/vi-VN/translation.json index 9296b8b57c..6810eb909a 100644 --- a/src/lib/i18n/locales/vi-VN/translation.json +++ b/src/lib/i18n/locales/vi-VN/translation.json @@ -32,8 +32,13 @@ "{{user}}'s Chats": "Các cuộc trò chuyện của {{user}}", "{{webUIName}} Backend Required": "{{webUIName}} Yêu cầu Backend", "*Prompt node ID(s) are required for image generation": "*ID nút Prompt là bắt buộc để tạo ảnh", + "1 hour before": "", "1 Source": "", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "", "A discussion channel where access is controlled by groups and permissions": "", "A new version (v{{LATEST_VERSION}}) is now available.": "Một phiên bản mới (v{{LATEST_VERSION}}) đã có sẵn.", @@ -201,6 +206,7 @@ "Ask a question": "Đặt câu hỏi", "Assistant": "Trợ lý", "Async Embedding Processing": "", + "At time of event": "", "Attach File From Knowledge": "", "Attach Files": "", "Attach Knowledge": "", @@ -275,6 +281,7 @@ "Bypass Web Loader": "", "Cache Base Model List": "", "Calendar": "Lịch", + "Calendar deleted": "", "Calendars": "", "Call": "Gọi", "Call feature is not supported when using Web STT engine": "Tính năng gọi điện không được hỗ trợ khi sử dụng công cụ Web STT", @@ -412,6 +419,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "Kết nối với các máy chủ công cụ bên ngoài tương thích OpenAPI của riêng bạn.", "Connected ({{type}})": "", "Connection failed": "Kết nối thất bại", + "Connection lost. Reconnecting...": "", "Connection successful": "Kết nối thành công", "Connection Type": "", "Connections": "Kết nối", @@ -524,6 +532,8 @@ "Delete All Chats": "Xóa mọi cuộc Chat", "Delete all contents inside this folder": "", "Delete automation?": "", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "Xóa chat", "Delete chat?": "Xóa chat?", "Delete Event": "", @@ -885,6 +895,7 @@ "Failed to connect to {{URL}} terminal server": "", "Failed to copy link": "", "Failed to create API Key.": "Lỗi khởi tạo API Key", + "Failed to delete calendar": "", "Failed to delete note": "", "Failed to download image": "", "Failed to extract content from the file: {{error}}": "", @@ -1624,6 +1635,7 @@ "Reasoning Effort": "Nỗ lực Suy luận", "Reasoning Tags": "", "Recently Used": "", + "Reconnected": "", "Record": "", "Record voice": "Ghi âm", "Redirecting you to Open WebUI Community": "Đang chuyển hướng bạn đến Cộng đồng OpenWebUI", @@ -1647,6 +1659,7 @@ "Relevance": "Mức độ liên quan", "Relevance Threshold": "", "Remember Dismissal": "", + "Reminder": "", "Remove": "Xóa", "Remove {{MODELID}} from list.": "", "Remove action": "", @@ -1892,7 +1905,10 @@ "Start a new conversation": "", "Start of the channel": "Đầu kênh", "Start Tag": "", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "", + "Starting now": "", "State": "", "Status": "", "Status cleared successfully": "", @@ -2005,6 +2021,7 @@ "This will delete {{NAME}} and all its contents.": "Hành động này sẽ xóa {{NAME}}tất cả nội dung của nó.", "This will delete all models including custom models": "Hành động này sẽ xóa tất cả các mô hình bao gồm cả các mô hình tùy chỉnh", "This will delete all models including custom models and cannot be undone.": "Hành động này sẽ xóa tất cả các mô hình bao gồm cả các mô hình tùy chỉnh và không thể hoàn tác.", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "Hành động này sẽ đặt lại cơ sở kiến thức và đồng bộ hóa tất cả các tệp. Bạn có muốn tiếp tục không?", "Thorough explanation": "Giải thích kỹ lưỡng", "Thought": "", @@ -2091,6 +2108,7 @@ "Unloads {{FROM_NOW}}": "", "Unlock mysteries": "Mở khóa những bí ẩn", "Unpin": "Bỏ ghim", + "Unpin from Sidebar": "", "Unravel secrets": "Làm sáng tỏ những bí mật", "Unshare Chat": "", "Unsupported file type.": "", diff --git a/src/lib/i18n/locales/zh-CN/translation.json b/src/lib/i18n/locales/zh-CN/translation.json index c8e04258c2..ce09ad948c 100644 --- a/src/lib/i18n/locales/zh-CN/translation.json +++ b/src/lib/i18n/locales/zh-CN/translation.json @@ -32,8 +32,13 @@ "{{user}}'s Chats": "{{user}} 的对话记录", "{{webUIName}} Backend Required": "{{webUIName}} 需要后端服务", "*Prompt node ID(s) are required for image generation": "*图片生成需要提示词节点 ID", + "1 hour before": "", "1 Source": "1 个引用来源", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "刚刚", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "成员可加入的协作频道", "A discussion channel where access is controlled by groups and permissions": "由用户组控制的讨论频道", "A new version (v{{LATEST_VERSION}}) is now available.": "新版本(v{{LATEST_VERSION}})现已发布", @@ -201,6 +206,7 @@ "Ask a question": "提问", "Assistant": "助手", "Async Embedding Processing": "异步嵌入处理", + "At time of event": "", "Attach File From Knowledge": "引用知识库中的文件", "Attach Files": "添加文件", "Attach Knowledge": "引用知识库", @@ -275,6 +281,7 @@ "Bypass Web Loader": "绕过网页加载器", "Cache Base Model List": "缓存基础模型列表", "Calendar": "日历", + "Calendar deleted": "", "Calendars": "", "Call": "语音通话", "Call feature is not supported when using Web STT engine": "使用 Web 语音转文字引擎时不支持语音通话功能", @@ -412,6 +419,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "连接到符合 OpenAPI 规范的外部工具服务器", "Connected ({{type}})": "已连接({{type}})", "Connection failed": "连接失败", + "Connection lost. Reconnecting...": "", "Connection successful": "连接成功", "Connection Type": "连接类型", "Connections": "外部连接", @@ -524,6 +532,8 @@ "Delete All Chats": "删除所有对话记录", "Delete all contents inside this folder": "删除此分组内的所有内容", "Delete automation?": "要删除此自动化吗?", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "删除对话记录", "Delete chat?": "要删除此对话记录吗?", "Delete Event": "", @@ -885,6 +895,7 @@ "Failed to connect to {{URL}} terminal server": "无法连接到终端服务器:{{URL}}", "Failed to copy link": "复制链接失败", "Failed to create API Key.": "创建接口密钥失败", + "Failed to delete calendar": "", "Failed to delete note": "删除笔记失败", "Failed to download image": "图片下载失败", "Failed to extract content from the file: {{error}}": "文件内容提取失败:{{error}}", @@ -1624,6 +1635,7 @@ "Reasoning Effort": "推理努力 (Reasoning Effort)", "Reasoning Tags": "推理过程标签", "Recently Used": "最近使用", + "Reconnected": "", "Record": "录制", "Record voice": "录音", "Redirecting you to Open WebUI Community": "正在将您重定向到 Open WebUI 社区", @@ -1647,6 +1659,7 @@ "Relevance": "相关性", "Relevance Threshold": "相关性阈值", "Remember Dismissal": "记住关闭状态", + "Reminder": "", "Remove": "移除", "Remove {{MODELID}} from list.": "从列表中移除 {{MODELID}}", "Remove action": "删除当前操作", @@ -1892,7 +1905,10 @@ "Start a new conversation": "开始新对话", "Start of the channel": "频道起点", "Start Tag": "起始标签", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "正在启动内核...", + "Starting now": "", "State": "状态", "Status": "状态", "Status cleared successfully": "状态已清除", @@ -2005,6 +2021,7 @@ "This will delete {{NAME}} and all its contents.": "这将删除{{NAME}}及其所有内容。", "This will delete all models including custom models": "这将删除所有模型,包括自定义模型", "This will delete all models including custom models and cannot be undone.": "这将删除所有模型,包括自定义模型,且无法撤销。", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "这将重置知识库并同步所有文件。确认继续?", "Thorough explanation": "解释详尽", "Thought": "思考过程", @@ -2091,6 +2108,7 @@ "Unloads {{FROM_NOW}}": "{{FROM_NOW}} 后卸载", "Unlock mysteries": "解码未知", "Unpin": "取消置顶", + "Unpin from Sidebar": "", "Unravel secrets": "冲破奥秘", "Unshare Chat": "取消分享对话", "Unsupported file type.": "不支持的文件类型", diff --git a/src/lib/i18n/locales/zh-TW/translation.json b/src/lib/i18n/locales/zh-TW/translation.json index f98a2bdb76..50d352a96f 100644 --- a/src/lib/i18n/locales/zh-TW/translation.json +++ b/src/lib/i18n/locales/zh-TW/translation.json @@ -32,8 +32,13 @@ "{{user}}'s Chats": "{{user}} 的對話", "{{webUIName}} Backend Required": "需要提供 {{webUIName}} 後端", "*Prompt node ID(s) are required for image generation": "* 產生圖片需要提示詞節點 ID", + "1 hour before": "", "1 Source": "1 個來源", + "10 minutes before": "", + "15 minutes before": "", "1m_time_ago": "剛剛", + "30 minutes before": "", + "5 minutes before": "", "A collaboration channel where people join as members": "成員可加入的協作頻道", "A discussion channel where access is controlled by groups and permissions": "由權限組控制的討論頻道", "A new version (v{{LATEST_VERSION}}) is now available.": "新版本 (v{{LATEST_VERSION}}) 已釋出。", @@ -201,6 +206,7 @@ "Ask a question": "提出問題", "Assistant": "助理", "Async Embedding Processing": "非同步嵌入處理", + "At time of event": "", "Attach File From Knowledge": "從知識庫附加檔案", "Attach Files": "新增檔案", "Attach Knowledge": "附加知識庫", @@ -275,6 +281,7 @@ "Bypass Web Loader": "繞過網頁載入器", "Cache Base Model List": "快取基礎模型清單", "Calendar": "日曆", + "Calendar deleted": "", "Calendars": "", "Call": "通話", "Call feature is not supported when using Web STT engine": "使用網頁語音辨識 (Web STT) 引擎時不支援通話功能", @@ -412,6 +419,7 @@ "Connect to your own OpenAPI compatible external tool servers.": "連線至您自有或其他與 OpenAPI 相容的外部工具伺服器。", "Connected ({{type}})": "已連線({{type}})", "Connection failed": "連線失敗", + "Connection lost. Reconnecting...": "", "Connection successful": "連線成功", "Connection Type": "連線類型", "Connections": "連線", @@ -524,6 +532,8 @@ "Delete All Chats": "刪除所有對話紀錄", "Delete all contents inside this folder": "刪除此資料夾內的所有內容", "Delete automation?": "要刪除此自動化嗎?", + "Delete calendar": "", + "Delete Calendar": "", "Delete Chat": "刪除對話紀錄", "Delete chat?": "刪除對話紀錄?", "Delete Event": "", @@ -885,6 +895,7 @@ "Failed to connect to {{URL}} terminal server": "無法連線至終端伺服器:{{URL}}", "Failed to copy link": "複製連結失敗", "Failed to create API Key.": "建立 API 金鑰失敗。", + "Failed to delete calendar": "", "Failed to delete note": "刪除筆記失敗", "Failed to download image": "圖片下載失敗", "Failed to extract content from the file: {{error}}": "檔案內容擷取失敗:{{error}}", @@ -1624,6 +1635,7 @@ "Reasoning Effort": "推理程度", "Reasoning Tags": "推理標籤", "Recently Used": "最近使用", + "Reconnected": "", "Record": "錄製", "Record voice": "錄音", "Redirecting you to Open WebUI Community": "正在將您重導向至 Open WebUI 社群", @@ -1647,6 +1659,7 @@ "Relevance": "相關性", "Relevance Threshold": "相關性閾值", "Remember Dismissal": "記住關閉狀態", + "Reminder": "", "Remove": "移除", "Remove {{MODELID}} from list.": "從清單中移除 {{MODELID}}", "Remove action": "刪除目前操作", @@ -1892,7 +1905,10 @@ "Start a new conversation": "開始新對話", "Start of the channel": "頻道起點", "Start Tag": "起始標籤", + "Starting in {{count}} minutes_other": "", + "Starting in 1 minute": "", "Starting kernel...": "正在啟動核心…", + "Starting now": "", "State": "狀態", "Status": "狀態", "Status cleared successfully": "狀態已清除", @@ -2005,6 +2021,7 @@ "This will delete {{NAME}} and all its contents.": "這將會刪除 {{NAME}}其所有內容。", "This will delete all models including custom models": "這將刪除所有模型,包括自訂模型", "This will delete all models including custom models and cannot be undone.": "這將刪除所有模型,包括自訂模型,且無法復原。", + "This will permanently delete the calendar \"{{name}}\" and all its events. This action cannot be undone.": "", "This will reset the knowledge base and sync all files. Do you wish to continue?": "這將重設知識庫並同步所有檔案。您確定要繼續嗎?", "Thorough explanation": "詳細解釋", "Thought": "思考過程", @@ -2091,6 +2108,7 @@ "Unloads {{FROM_NOW}}": "於 {{FROM_NOW}} 後解除載入", "Unlock mysteries": "解鎖謎題", "Unpin": "取消釘選", + "Unpin from Sidebar": "", "Unravel secrets": "揭開秘密", "Unshare Chat": "取消分享對話", "Unsupported file type.": "不支援的檔案類型",