diff --git a/backend/open_webui/models/functions.py b/backend/open_webui/models/functions.py index 2c4d763a03..f9761e947a 100644 --- a/backend/open_webui/models/functions.py +++ b/backend/open_webui/models/functions.py @@ -228,12 +228,7 @@ class FunctionsTable: def get_function_list(self, db: Optional[Session] = None) -> list[FunctionUserResponse]: with get_db_context(db) as db: - functions = ( - db.query(Function) - .options(defer(Function.content)) - .order_by(Function.updated_at.desc()) - .all() - ) + functions = db.query(Function).options(defer(Function.content)).order_by(Function.updated_at.desc()).all() user_ids = list(set(func.user_id for func in functions)) users = Users.get_users_by_user_ids(user_ids, db=db) if user_ids else [] diff --git a/backend/open_webui/routers/auths.py b/backend/open_webui/routers/auths.py index 84f75c93ed..367ea4478c 100644 --- a/backend/open_webui/routers/auths.py +++ b/backend/open_webui/routers/auths.py @@ -582,9 +582,7 @@ async def signin( if user.role != trusted_role: Users.update_user_role_by_id(user.id, trusted_role, db=db) elif trusted_role: - log.warning( - f'Ignoring invalid trusted role header value: {trusted_role}' - ) + log.warning(f'Ignoring invalid trusted role header value: {trusted_role}') elif WEBUI_AUTH == False: admin_email = 'admin@localhost' diff --git a/backend/open_webui/routers/knowledge.py b/backend/open_webui/routers/knowledge.py index 8c7b029c19..ead782cdbf 100644 --- a/backend/open_webui/routers/knowledge.py +++ b/backend/open_webui/routers/knowledge.py @@ -1096,7 +1096,7 @@ async def export_knowledge_by_id(id: str, user=Depends(get_admin_user), db: Sess # Use RFC 5987 filename* for non-ASCII names so the browser gets the real name quoted_name = quote(f'{knowledge.name}.zip') - content_disposition = f"attachment; filename=\"{zip_filename}\"; filename*=UTF-8''{quoted_name}" + content_disposition = f'attachment; filename="{zip_filename}"; filename*=UTF-8\'\'{quoted_name}' return StreamingResponse( zip_buffer, diff --git a/backend/open_webui/routers/openai.py b/backend/open_webui/routers/openai.py index 42dd37396e..e7d2b0593f 100644 --- a/backend/open_webui/routers/openai.py +++ b/backend/open_webui/routers/openai.py @@ -839,32 +839,41 @@ def convert_to_responses_payload(payload: dict) -> dict: if role == 'assistant' and msg.get('tool_calls'): # Add text content as message if present if content: - text = content if isinstance(content, str) else '\n'.join( - p.get('text', '') for p in content if p.get('type') == 'text' + text = ( + content + if isinstance(content, str) + else '\n'.join(p.get('text', '') for p in content if p.get('type') == 'text') ) if text.strip(): - input_items.append({ - 'type': 'message', 'role': 'assistant', - 'content': [{'type': 'output_text', 'text': text}], - }) + input_items.append( + { + 'type': 'message', + 'role': 'assistant', + 'content': [{'type': 'output_text', 'text': text}], + } + ) # Convert each tool_call to a function_call input item for tool_call in msg['tool_calls']: func = tool_call.get('function', {}) - input_items.append({ - 'type': 'function_call', - 'call_id': tool_call.get('id', ''), - 'name': func.get('name', ''), - 'arguments': func.get('arguments', '{}'), - }) + input_items.append( + { + 'type': 'function_call', + 'call_id': tool_call.get('id', ''), + 'name': func.get('name', ''), + 'arguments': func.get('arguments', '{}'), + } + ) continue # Handle tool result messages if role == 'tool': - input_items.append({ - 'type': 'function_call_output', - 'call_id': msg.get('tool_call_id', ''), - 'output': msg.get('content', ''), - }) + input_items.append( + { + 'type': 'function_call_output', + 'call_id': msg.get('tool_call_id', ''), + 'output': msg.get('content', ''), + } + ) continue # Convert content format @@ -1132,8 +1141,7 @@ async def generate_chat_completion( for message in payload['messages']: if message.get('role') == 'tool' and isinstance(message.get('content'), list): message['content'] = ''.join( - part.get('text', '') for part in message['content'] - if part.get('type') in ('input_text', 'text') + part.get('text', '') for part in message['content'] if part.get('type') in ('input_text', 'text') ) payload = json.dumps(payload) diff --git a/backend/open_webui/tools/builtin.py b/backend/open_webui/tools/builtin.py index 9fbe5f75f1..f02a082c42 100644 --- a/backend/open_webui/tools/builtin.py +++ b/backend/open_webui/tools/builtin.py @@ -1604,13 +1604,15 @@ async def search_knowledge_files( ) for file in result.items: - all_files.append({ - 'id': file.id, - 'filename': file.filename, - 'knowledge_id': knowledge.id, - 'knowledge_name': knowledge.name, - 'updated_at': file.updated_at, - }) + all_files.append( + { + 'id': file.id, + 'filename': file.filename, + 'knowledge_id': knowledge.id, + 'knowledge_name': knowledge.name, + 'updated_at': file.updated_at, + } + ) # Search within directly attached files (filename match) if not knowledge_id and attached_file_ids: @@ -1618,14 +1620,16 @@ async def search_knowledge_files( for file_id in attached_file_ids: file = Files.get_file_by_id(file_id) if file and (not query_lower or query_lower in file.filename.lower()): - all_files.append({ - 'id': file.id, - 'filename': file.filename, - 'updated_at': file.updated_at, - }) + all_files.append( + { + 'id': file.id, + 'filename': file.filename, + 'updated_at': file.updated_at, + } + ) # Apply pagination across combined results - all_files = all_files[skip:skip + count] + all_files = all_files[skip : skip + count] return json.dumps(all_files, ensure_ascii=False) # No attached knowledge - search all accessible KBs @@ -1739,7 +1743,7 @@ async def view_file( content = file.data.get('content', '') total_chars = len(content) - sliced = content[offset:offset + max_chars] + sliced = content[offset : offset + max_chars] is_truncated = (offset + len(sliced)) < total_chars result = { @@ -1844,7 +1848,7 @@ async def view_knowledge_file( content = file.data.get('content', '') total_chars = len(content) - sliced = content[offset:offset + max_chars] + sliced = content[offset : offset + max_chars] is_truncated = (offset + len(sliced)) < total_chars result = { @@ -1935,21 +1939,20 @@ async def list_knowledge( # Include file listing for each KB if kb_files: - kb_entry['files'] = [ - {'id': f.id, 'filename': f.filename} - for f in kb_files - ] + kb_entry['files'] = [{'id': f.id, 'filename': f.filename} for f in kb_files] knowledge_bases.append(kb_entry) elif item_type == 'file': file = Files.get_file_by_id(item_id) if file: - files.append({ - 'id': file.id, - 'filename': file.filename, - 'updated_at': file.updated_at, - }) + files.append( + { + 'id': file.id, + 'filename': file.filename, + 'updated_at': file.updated_at, + } + ) elif item_type == 'note': note = Notes.get_note_by_id(item_id) @@ -1963,16 +1966,21 @@ async def list_knowledge( permission='read', ) ): - notes.append({ - 'id': note.id, - 'title': note.title, - }) + notes.append( + { + 'id': note.id, + 'title': note.title, + } + ) - return json.dumps({ - 'knowledge_bases': knowledge_bases, - 'files': files, - 'notes': notes, - }, ensure_ascii=False) + return json.dumps( + { + 'knowledge_bases': knowledge_bases, + 'files': files, + 'notes': notes, + }, + ensure_ascii=False, + ) except Exception as e: log.exception(f'list_knowledge error: {e}') return json.dumps({'error': str(e)}) diff --git a/backend/open_webui/utils/access_control/__init__.py b/backend/open_webui/utils/access_control/__init__.py index 5d357bcb22..f31c59e158 100644 --- a/backend/open_webui/utils/access_control/__init__.py +++ b/backend/open_webui/utils/access_control/__init__.py @@ -226,7 +226,9 @@ def filter_allowed_access_grants( return access_grants # Check if user can share publicly - if (has_public_read_access_grant(access_grants) or has_public_write_access_grant(access_grants)) and not has_permission( + if ( + has_public_read_access_grant(access_grants) or has_public_write_access_grant(access_grants) + ) and not has_permission( user_id, public_permission_key, default_permissions, diff --git a/backend/open_webui/utils/middleware.py b/backend/open_webui/utils/middleware.py index 731a96aadc..255ab7cdb7 100644 --- a/backend/open_webui/utils/middleware.py +++ b/backend/open_webui/utils/middleware.py @@ -3534,7 +3534,6 @@ async def streaming_chat_response_handler(response, ctx): ) # Check for Responses API events (type field starts with "response.") elif data.get('type', '').startswith('response.'): - output, response_metadata = handle_responses_streaming_event(data, output) processed_data = { @@ -3973,19 +3972,20 @@ async def streaming_chat_response_handler(response, ctx): } responses_api_tool_calls = [] for item in output: - if ( - item.get('type') == 'function_call' - and item.get('call_id') not in handled_call_ids - ): + if item.get('type') == 'function_call' and item.get('call_id') not in handled_call_ids: arguments = item.get('arguments', '{}') - responses_api_tool_calls.append({ - 'id': item.get('call_id', ''), - 'index': len(responses_api_tool_calls), - 'function': { - 'name': item.get('name', ''), - 'arguments': arguments if isinstance(arguments, str) else json.dumps(arguments), - }, - }) + responses_api_tool_calls.append( + { + 'id': item.get('call_id', ''), + 'index': len(responses_api_tool_calls), + 'function': { + 'name': item.get('name', ''), + 'arguments': arguments + if isinstance(arguments, str) + else json.dumps(arguments), + }, + } + ) if responses_api_tool_calls: tool_calls.append(_split_tool_calls(responses_api_tool_calls)) @@ -4021,10 +4021,7 @@ async def streaming_chat_response_handler(response, ctx): # Append function_call items for each tool call # (Responses API already has them from streaming, so skip duplicates) - existing_call_ids = { - item.get('call_id') for item in output - if item.get('type') == 'function_call' - } + existing_call_ids = {item.get('call_id') for item in output if item.get('type') == 'function_call'} for tc in response_tool_calls: call_id = tc.get('id', '') if call_id not in existing_call_ids: @@ -4312,9 +4309,8 @@ async def streaming_chat_response_handler(response, ctx): if ENABLE_RESPONSES_API_STATEFUL and last_response_id: system_message = get_system_message(form_data['messages']) new_form_data['messages'] = ( - ([system_message] if system_message else []) - + convert_output_to_messages(output, raw=True) - ) + [system_message] if system_message else [] + ) + convert_output_to_messages(output, raw=True) new_form_data['previous_response_id'] = last_response_id else: tool_messages = convert_output_to_messages(output, raw=True) @@ -4338,13 +4334,18 @@ async def streaming_chat_response_handler(response, ctx): ] if image_urls: - new_form_data['messages'].append({ - 'role': 'user', - 'content': [ - {'type': 'text', 'text': 'Here are the images from the tool results above. Please analyze them.'}, - *[{'type': 'image_url', 'image_url': {'url': url}} for url in image_urls], - ], - }) + new_form_data['messages'].append( + { + 'role': 'user', + 'content': [ + { + 'type': 'text', + 'text': 'Here are the images from the tool results above. Please analyze them.', + }, + *[{'type': 'image_url', 'image_url': {'url': url}} for url in image_urls], + ], + } + ) res = await generate_chat_completion( request, @@ -4370,10 +4371,7 @@ async def streaming_chat_response_handler(response, ctx): and prior_output[-1].get('status') == 'in_progress' ): msg_parts = prior_output[-1].get('content', []) - if ( - not msg_parts - or (len(msg_parts) == 1 and not msg_parts[0].get('text', '').strip()) - ): + if not msg_parts or (len(msg_parts) == 1 and not msg_parts[0].get('text', '').strip()): prior_output.pop() output = [] await stream_body_handler(res, new_form_data) diff --git a/backend/open_webui/utils/misc.py b/backend/open_webui/utils/misc.py index 4aa475e5de..e6b686071d 100644 --- a/backend/open_webui/utils/misc.py +++ b/backend/open_webui/utils/misc.py @@ -433,11 +433,7 @@ def strip_empty_content_blocks(messages: list[dict]) -> list[dict]: cleaned = [ block for block in content - if not ( - isinstance(block, dict) - and block.get('type') == 'text' - and not block.get('text', '').strip() - ) + if not (isinstance(block, dict) and block.get('type') == 'text' and not block.get('text', '').strip()) ] if cleaned: message['content'] = cleaned @@ -521,7 +517,6 @@ def get_gravatar_url(email): return f'https://www.gravatar.com/avatar/{hash_hex}?d=mp' - # Give us each day the data we require, and forgive us our # technical debts as we forgive those who commit upstream. # Lead the bits not into corruption but deliver them from diff --git a/backend/open_webui/utils/tools.py b/backend/open_webui/utils/tools.py index 7fc9613538..86d086efd3 100644 --- a/backend/open_webui/utils/tools.py +++ b/backend/open_webui/utils/tools.py @@ -862,9 +862,7 @@ async def get_terminal_system_prompt( return None # 2. Fetch system prompt - async with session.get( - f'{base}/system', headers=headers, cookies=cookies or {} - ) as resp: + async with session.get(f'{base}/system', headers=headers, cookies=cookies or {}) as resp: if resp.status == 200: data = await resp.json() return data.get('prompt') @@ -1190,7 +1188,6 @@ async def get_tool_servers_data(servers: List[Dict[str, Any]]) -> List[Dict[str, return results - async def execute_tool_server( url: str, headers: Dict[str, str], diff --git a/src/lib/components/admin/Settings/Evaluations/ArenaModelModal.svelte b/src/lib/components/admin/Settings/Evaluations/ArenaModelModal.svelte index a327efa601..85046afc5c 100644 --- a/src/lib/components/admin/Settings/Evaluations/ArenaModelModal.svelte +++ b/src/lib/components/admin/Settings/Evaluations/ArenaModelModal.svelte @@ -231,7 +231,7 @@ Profile
{$i18n.t('Last Active')} + {#if orderBy === 'last_active_at'} -
-
+
+
{/if} diff --git a/src/lib/components/chat/FileNav/FileEntryRow.svelte b/src/lib/components/chat/FileNav/FileEntryRow.svelte index a353850022..93baf941fa 100644 --- a/src/lib/components/chat/FileNav/FileEntryRow.svelte +++ b/src/lib/components/chat/FileNav/FileEntryRow.svelte @@ -292,9 +292,10 @@ class="select-none flex rounded-xl py-1.5 px-3 w-full hover:bg-gray-50 dark:hover:bg-gray-800 transition items-center gap-2 text-sm" on:click={(e) => { e.stopPropagation(); - const path = entry.type === 'directory' - ? `${currentPath}${entry.name}/` - : `${currentPath}${entry.name}`; + const path = + entry.type === 'directory' + ? `${currentPath}${entry.name}/` + : `${currentPath}${entry.name}`; onDownload(path); }} > diff --git a/src/lib/i18n/locales/ar-BH/translation.json b/src/lib/i18n/locales/ar-BH/translation.json index 8c940b7a24..c3a5a51dd2 100644 --- a/src/lib/i18n/locales/ar-BH/translation.json +++ b/src/lib/i18n/locales/ar-BH/translation.json @@ -17,6 +17,12 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "", "{{COUNT}} Rows": "", + "{{count}} selected_zero": "", + "{{count}} selected_one": "", + "{{count}} selected_two": "", + "{{count}} selected_few": "", + "{{count}} selected_many": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", "{{COUNT}}d_time_ago": "", @@ -127,6 +133,7 @@ "Allow File Upload": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "", + "Allow public write access": "", "Allow Rate Response": "", "Allow Regenerate Response": "", "Allow Sharing With Users": "", @@ -181,6 +188,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +387,7 @@ "Configure": "", "Confirm": "", "Confirm Password": "تأكيد كلمة المرور", + "Confirm Prompt from Embed": "", "Confirm your action": "", "Confirm your new password": "", "Confirm Your Password": "", @@ -386,6 +396,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAPI compatible external tool servers.": "", + "Connected ({{type}})": "", "Connection failed": "", "Connection successful": "", "Connection Type": "", @@ -426,6 +437,7 @@ "Copying to clipboard was successful!": "تم النسخ إلى الحافظة بنجاح", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "", "Could not read file.": "", + "CPU": "", "Create": "", "Create a knowledge base": "", "Create a model": "إنشاء نموذج", @@ -497,6 +509,7 @@ "Delete File": "", "Delete folder?": "", "Delete function?": "", + "Delete Memory?": "", "Delete Message": "", "Delete message?": "", "Delete Model": "", @@ -510,6 +523,7 @@ "Deleted": "", "Deleted {{deleteModelTag}}": "{{deleteModelTag}} حذف", "Deleted {{name}}": "حذف {{name}}", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "", "Deployment names are required for Azure OpenAI": "", "Desc": "", @@ -518,6 +532,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "", "Description": "وصف", + "Deselect": "", "Detect Artifacts Automatically": "", "Dictate": "", "Didn't fully follow instructions": "لم أتبع التعليمات بشكل كامل", @@ -780,6 +795,8 @@ "Enter Your Username": "", "Enter your webhook URL": "", "Entra ID": "", + "Environment Variables": "", + "Ephemeral": "", "Error": "خطأ", "ERROR": "", "Error accessing directory": "", @@ -856,6 +873,7 @@ "Failed to save connections": "", "Failed to save conversation": "فشل في حفظ المحادثة", "Failed to save models configuration": "", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "", @@ -871,6 +889,7 @@ "Feedback History": "", "Feel free to add specific details": "لا تتردد في إضافة تفاصيل محددة", "Female": "", + "Fetch URL Content Length Limit": "", "File": "", "File added successfully.": "", "File attached to chat": "", @@ -925,6 +944,7 @@ "Format Lines": "", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "", "Formatting may be inconsistent from source.": "", + "Forward": "", "Forwards system user OAuth access token to authenticate": "", "Forwards system user session credentials to authenticate": "", "Full Context Mode": "", @@ -1012,6 +1032,7 @@ "ID": "", "ID cannot contain \":\" or \"|\" characters": "", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "", "iframe Sandbox Allow Same Origin": "", "Ignite curiosity": "", @@ -1182,6 +1203,7 @@ "Max Speakers": "", "Max Upload Count": "", "Max Upload Size": "", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "يمكن تنزيل 3 نماذج كحد أقصى في وقت واحد. الرجاء معاودة المحاولة في وقت لاحق.", @@ -1213,6 +1235,7 @@ "Microsoft OneDrive": "", "Microsoft OneDrive (personal)": "", "Microsoft OneDrive (work/school)": "", + "min": "", "MinerU": "", "MinerU API Key required for Cloud API mode.": "", "Mistral OCR": "", @@ -1318,6 +1341,7 @@ "No kernel": "", "No knowledge bases found.": "", "No knowledge found": "", + "No limit": "", "No memories to clear": "", "No model IDs": "", "No models available": "", @@ -1390,6 +1414,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "خطاء! أنت تستخدم طريقة غير مدعومة (الواجهة الأمامية فقط). يرجى تقديم واجهة WebUI من الواجهة الخلفية.", "Open file": "", "Open in full screen": "", + "Open in new tab": "", "Open link": "", "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", @@ -1450,6 +1475,7 @@ "Perplexity Model": "", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "", + "Persistent": "", "Personalization": "التخصيص", "Pin": "", "Pinned": "", @@ -1486,6 +1512,7 @@ "Please select a valid JSON file": "", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "", + "Policy ID": "", "Port": "", "Ports": "", "Positive attitude": "موقف ايجابي", @@ -1565,6 +1592,7 @@ "Remove image": "", "Remove Model": "حذف الموديل", "Rename": "إعادة تسمية", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "", "Reply": "", @@ -1634,6 +1662,7 @@ "Search Groups": "", "Search In Models": "", "Search Knowledge": "", + "Search Memories": "", "Search Models": "نماذج البحث", "Search Notes": "", "Search options": "", @@ -1675,6 +1704,7 @@ "Select a theme": "", "Select a tool": "", "Select a voice": "", + "Select All": "", "Select an auth method": "", "Select an embedding model engine": "", "Select an engine": "", @@ -1703,6 +1733,7 @@ "Serper API Key": "مفتاح واجهة برمجة تطبيقات سيربر", "Serply API Key": "", "Serpstack API Key": "مفتاح واجهة برمجة تطبيقات Serpstack", + "Server connection failed": "", "Server connection verified": "تم التحقق من اتصال الخادم", "Session": "", "Set as default": "الافتراضي", @@ -1804,6 +1835,7 @@ "Stop Download": "", "Stop Generating": "", "Stop Sequence": "وقف التسلسل", + "Storage": "", "Stream Chat Response": "", "Stream Delta Chunk Size": "", "Streamable HTTP": "", diff --git a/src/lib/i18n/locales/ar/translation.json b/src/lib/i18n/locales/ar/translation.json index db010bd2f0..7b2d772880 100644 --- a/src/lib/i18n/locales/ar/translation.json +++ b/src/lib/i18n/locales/ar/translation.json @@ -17,6 +17,12 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "{{COUNT}} رد/ردود", "{{COUNT}} Rows": "", + "{{count}} selected_zero": "", + "{{count}} selected_one": "", + "{{count}} selected_two": "", + "{{count}} selected_few": "", + "{{count}} selected_many": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", "{{COUNT}}d_time_ago": "", @@ -127,6 +133,7 @@ "Allow File Upload": "السماح بتحميل الملفات", "Allow Multiple Models in Chat": "", "Allow non-local voices": "السماح بالأصوات غير المحلية", + "Allow public write access": "", "Allow Rate Response": "", "Allow Regenerate Response": "", "Allow Sharing With Users": "", @@ -181,6 +188,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "هل أنت متأكد من رغبتك في حذف هذه القناة؟", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "هل أنت متأكد من رغبتك في حذف هذه الرسالة؟", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +387,7 @@ "Configure": "تكوين", "Confirm": "تأكيد", "Confirm Password": "تأكيد كلمة المرور", + "Confirm Prompt from Embed": "", "Confirm your action": "أكد إجراءك", "Confirm your new password": "أكد كلمة مرورك الجديدة", "Confirm Your Password": "", @@ -386,6 +396,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "اتصل بنقاط نهاية API المتوافقة مع OpenAI الخاصة بك.", "Connect to your own OpenAPI compatible external tool servers.": "", + "Connected ({{type}})": "", "Connection failed": "", "Connection successful": "", "Connection Type": "", @@ -426,6 +437,7 @@ "Copying to clipboard was successful!": "تم النسخ إلى الحافظة بنجاح!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "يجب أن يتم تكوين CORS بشكل صحيح من قبل المزود للسماح بالطلبات من Open WebUI.", "Could not read file.": "", + "CPU": "", "Create": "إنشاء", "Create a knowledge base": "إنشاء قاعدة معرفة", "Create a model": "إنشاء نموذج", @@ -497,6 +509,7 @@ "Delete File": "", "Delete folder?": "هل تريد حذف المجلد؟", "Delete function?": "هل تريد حذف الوظيفة؟", + "Delete Memory?": "", "Delete Message": "حذف الرسالة", "Delete message?": "هل تريد حذف الرسالة؟", "Delete Model": "", @@ -510,6 +523,7 @@ "Deleted": "", "Deleted {{deleteModelTag}}": "{{deleteModelTag}} حذف", "Deleted {{name}}": "حذف {{name}}", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "مستخدم محذوف", "Deployment names are required for Azure OpenAI": "", "Desc": "", @@ -518,6 +532,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "صف قاعدة معرفتك وأهدافك", "Description": "وصف", + "Deselect": "", "Detect Artifacts Automatically": "", "Dictate": "", "Didn't fully follow instructions": "لم أتبع التعليمات بشكل كامل", @@ -780,6 +795,8 @@ "Enter Your Username": "أدخل اسم المستخدم الخاص بك", "Enter your webhook URL": "أدخل رابط Webhook الخاص بك", "Entra ID": "", + "Environment Variables": "", + "Ephemeral": "", "Error": "خطأ", "ERROR": "خطأ", "Error accessing directory": "", @@ -856,6 +873,7 @@ "Failed to save connections": "", "Failed to save conversation": "فشل في حفظ المحادثة", "Failed to save models configuration": "فشل في حفظ إعدادات النماذج", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "فشل في تحديث الإعدادات", @@ -871,6 +889,7 @@ "Feedback History": "سجل الملاحظات", "Feel free to add specific details": "لا تتردد في إضافة تفاصيل محددة", "Female": "", + "Fetch URL Content Length Limit": "", "File": "ملف", "File added successfully.": "تم إضافة الملف بنجاح.", "File attached to chat": "", @@ -925,6 +944,7 @@ "Format Lines": "", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "", "Formatting may be inconsistent from source.": "", + "Forward": "", "Forwards system user OAuth access token to authenticate": "", "Forwards system user session credentials to authenticate": "", "Full Context Mode": "وضع السياق الكامل", @@ -1012,6 +1032,7 @@ "ID": "المعرّف", "ID cannot contain \":\" or \"|\" characters": "", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "", "iframe Sandbox Allow Same Origin": "", "Ignite curiosity": "أشعل الفضول", @@ -1182,6 +1203,7 @@ "Max Speakers": "", "Max Upload Count": "الحد الأقصى لعدد التحميلات", "Max Upload Size": "الحد الأقصى لحجم الملف المرفوع", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "يمكن تنزيل 3 نماذج كحد أقصى في وقت واحد. الرجاء معاودة المحاولة في وقت لاحق.", @@ -1213,6 +1235,7 @@ "Microsoft OneDrive": "", "Microsoft OneDrive (personal)": "", "Microsoft OneDrive (work/school)": "", + "min": "", "MinerU": "", "MinerU API Key required for Cloud API mode.": "", "Mistral OCR": "", @@ -1318,6 +1341,7 @@ "No kernel": "", "No knowledge bases found.": "", "No knowledge found": "لم يتم العثور على معرفة", + "No limit": "", "No memories to clear": "لا توجد ذاكرة لمسحها", "No model IDs": "لا توجد معرّفات نماذج", "No models available": "", @@ -1390,6 +1414,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "خطاء! أنت تستخدم طريقة غير مدعومة (الواجهة الأمامية فقط). يرجى تقديم واجهة WebUI من الواجهة الخلفية.", "Open file": "فتح الملف", "Open in full screen": "فتح في وضع ملء الشاشة", + "Open in new tab": "", "Open link": "", "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", @@ -1450,6 +1475,7 @@ "Perplexity Model": "", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "", + "Persistent": "", "Personalization": "التخصيص", "Pin": "تثبيت", "Pinned": "مثبت", @@ -1486,6 +1512,7 @@ "Please select a valid JSON file": "", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "", + "Policy ID": "", "Port": "المنفذ", "Ports": "", "Positive attitude": "موقف ايجابي", @@ -1565,6 +1592,7 @@ "Remove image": "", "Remove Model": "حذف الموديل", "Rename": "إعادة تسمية", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "إعادة ترتيب النماذج", "Reply": "", @@ -1634,6 +1662,7 @@ "Search Groups": "", "Search In Models": "", "Search Knowledge": "البحث في المعرفة", + "Search Memories": "", "Search Models": "نماذج البحث", "Search Notes": "", "Search options": "خيارات البحث", @@ -1675,6 +1704,7 @@ "Select a theme": "", "Select a tool": "اختر أداة", "Select a voice": "", + "Select All": "", "Select an auth method": "اختر طريقة التوثيق", "Select an embedding model engine": "", "Select an engine": "", @@ -1703,6 +1733,7 @@ "Serper API Key": "مفتاح واجهة برمجة تطبيقات سيربر", "Serply API Key": "مفتاح API لـ Serply", "Serpstack API Key": "مفتاح واجهة برمجة تطبيقات Serpstack", + "Server connection failed": "", "Server connection verified": "تم التحقق من اتصال الخادم", "Session": "", "Set as default": "الافتراضي", @@ -1804,6 +1835,7 @@ "Stop Download": "", "Stop Generating": "", "Stop Sequence": "وقف التسلسل", + "Storage": "", "Stream Chat Response": "بث استجابة الدردشة", "Stream Delta Chunk Size": "", "Streamable HTTP": "", diff --git a/src/lib/i18n/locales/az-AZ/translation.json b/src/lib/i18n/locales/az-AZ/translation.json index 0547397297..80f8e9fcba 100644 --- a/src/lib/i18n/locales/az-AZ/translation.json +++ b/src/lib/i18n/locales/az-AZ/translation.json @@ -17,6 +17,8 @@ "{{COUNT}} members": "{{COUNT}} üzv", "{{COUNT}} Replies": "{{COUNT}} Cavab", "{{COUNT}} Rows": "{{COUNT}} Sətir", + "{{count}} selected_one": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "{{COUNT}} Mənbə", "{{COUNT}} words": "{{COUNT}} söz", "{{COUNT}}d_time_ago": "{{COUNT}} gün əvvəl", @@ -127,6 +129,7 @@ "Allow File Upload": "Fayl yüklənməsinə icazə ver", "Allow Multiple Models in Chat": "Çatda bir neçə modelin istifadəsinə icazə ver", "Allow non-local voices": "Qeyri-lokal səslərə icazə ver", + "Allow public write access": "", "Allow Rate Response": "Cavabın qiymətləndirilməsinə icazə ver", "Allow Regenerate Response": "Cavabın yenidən yaradılmasına icazə ver", "Allow Sharing With Users": "İstifadəçilərlə paylaşmağa icazə ver", @@ -181,6 +184,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "\"{{NAME}}\" elementini silmək istədiyinizə əminsiniz?", "Are you sure you want to delete all chats? This action cannot be undone.": "Bütün çatları silmək istədiyinizə əminsiniz? Bu əməliyyat geri qaytarıla bilməz.", "Are you sure you want to delete this channel?": "Bu kanalı silmək istədiyinizə əminsiniz?", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "Bu mesajı silmək istədiyinizə əminsiniz?", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "Bu versiyanı silmək istədiyinizə əminsiniz? Alt versiyalar bu versiyanın valideyninə yenidən bağlanacaq.", "Are you sure you want to delete this?": "Bunu silmək istədiyinizə əminsiniz?", @@ -378,6 +383,7 @@ "Configure": "Konfiqurasiya et", "Confirm": "Təsdiqlə", "Confirm Password": "Şifrəni təsdiqlə", + "Confirm Prompt from Embed": "", "Confirm your action": "Hərəkətinizi təsdiqləyin", "Confirm your new password": "Yeni şifrənizi təsdiqləyin", "Confirm Your Password": "Şifrənizi təsdiqləyin", @@ -386,6 +392,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "Open Terminal instansiyalarına qoşulun. Bütün istifadəçilər bu serverlər vasitəsilə fayllara baxmaq və terminal alətlərindən istifadə etmək imkanına malik olacaqlar.", "Connect to your own OpenAI compatible API endpoints.": "Öz OpenAI uyğun API son nöqtələrinizə qoşulun.", "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 successful": "Bağlantı uğurludur", "Connection Type": "Bağlantı növü", @@ -426,6 +433,7 @@ "Copying to clipboard was successful!": "Mübadilə buferinə kopyalama uğurla tamamlandı!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "Open WebUI-dən gələn sorğulara icazə vermək üçün CORS təminatçı tərəfindən düzgün konfiqurasiya edilməlidir.", "Could not read file.": "Fayl oxuna bilmədi.", + "CPU": "", "Create": "Yarat", "Create a knowledge base": "Bilik bazası yarat", "Create a model": "Model yarat", @@ -497,6 +505,7 @@ "Delete File": "Faylı sil", "Delete folder?": "Qovluq silinsin?", "Delete function?": "Funksiya silinsin?", + "Delete Memory?": "", "Delete Message": "Mesajı sil", "Delete message?": "Mesaj silinsin?", "Delete Model": "Modeli sil", @@ -510,6 +519,7 @@ "Deleted": "Silindi", "Deleted {{deleteModelTag}}": "{{deleteModelTag}} silindi", "Deleted {{name}}": "{{name}} silindi", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "Silinmiş istifadəçi", "Deployment names are required for Azure OpenAI": "Azure OpenAI üçün yerləşdirmə (deployment) adları tələb olunur", "Desc": "Azalan sıra", @@ -518,6 +528,7 @@ "Describe what changed...": "Nəyin dəyişdiyini təsvir edin...", "Describe your knowledge base and objectives": "Bilik bazanızı və məqsədlərinizi təsvir edin", "Description": "Təsvir", + "Deselect": "", "Detect Artifacts Automatically": "Artefaktları avtomatik müəyyən et", "Dictate": "Diktə et", "Didn't fully follow instructions": "Təlimatlara tam əməl etmədi", @@ -606,7 +617,7 @@ "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "məs. audio/wav, audio/mpeg, video/* (standart üçün boş saxlayın)", "e.g., en-US,ja-JP (leave blank for auto-detect)": "məs. az-AZ, en-US (avtomatik təyin üçün boş saxlayın)", "e.g., westus (leave blank for eastus)": "məs. westus (eastus üçün boş saxlayın)", - "edit": "Redaktə et", + "Edit": "", "Edit Arena Model": "Arena modelini redaktə et", "Edit Channel": "Kanalı redaktə et", "Edit Connection": "Bağlantını redaktə et", @@ -780,6 +791,8 @@ "Enter Your Username": "İstifadəçi adınızı daxil edin", "Enter your webhook URL": "Webhook URL-inizi daxil edin", "Entra ID": "Entra ID", + "Environment Variables": "", + "Ephemeral": "", "Error": "Xəta", "ERROR": "XƏTA", "Error accessing directory": "Kataloqa giriş xətası", @@ -856,6 +869,7 @@ "Failed to save connections": "Bağlantılar yadda saxlanılmadı", "Failed to save conversation": "Söhbət yadda saxlanılmadı", "Failed to save models configuration": "Modellərin konfiqurasiyası yadda saxlanılmadı", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "Terminal serverlərini yadda saxlamaq mümkün olmadı", "Failed to unshare chat.": "Çatın paylaşımı dayandırıla bilmədi.", "Failed to update settings": "Ayarlar yenilənmədi", @@ -871,6 +885,7 @@ "Feedback History": "Rəy tarixçəsi", "Feel free to add specific details": "Xüsusi təfərrüatlar əlavə etməkdən çəkinməyin", "Female": "Qadın", + "Fetch URL Content Length Limit": "", "File": "Fayl", "File added successfully.": "Fayl uğurla əlavə edildi.", "File attached to chat": "Fayl çata əlavə olundu", @@ -925,6 +940,7 @@ "Format Lines": "Sətirləri formatla", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "Çıxışdakı sətirləri formatlayın. Standart olaraq False-dur. True seçilərsə, sətirlər daxili riyazi ifadələri və üslubları aşkar etmək üçün formatlanacaq.", "Formatting may be inconsistent from source.": "Formatlaşdırma mənbə ilə uyğunsuz ola bilər.", + "Forward": "", "Forwards system user OAuth access token to authenticate": "Autentifikasiya üçün sistem istifadəçisinin OAuth giriş tokenini yönləndirir", "Forwards system user session credentials to authenticate": "Autentifikasiya üçün sistem istifadəçisinin sessiya məlumatlarını yönləndirir", "Full Context Mode": "Tam kontekst rejimi", @@ -1012,6 +1028,7 @@ "ID": "ID", "ID cannot contain \":\" or \"|\" characters": "ID-də \":\" və ya \"|\" simvolları ola bilməz", "ID copied to clipboard": "ID mübadilə buferinə kopyalandı", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "iframe Sandbox: Formalara icazə ver", "iframe Sandbox Allow Same Origin": "iframe Sandbox: Eyni mənbəyə (Same Origin) icazə ver", "Ignite curiosity": "Marağı alovlandırın", @@ -1182,6 +1199,7 @@ "Max Speakers": "Maksimum natiq sayı", "Max Upload Count": "Maksimum yükləmə sayı", "Max Upload Size": "Maksimum yükləmə ölçüsü", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "Hər qovluq üçün icazə verilən maksimum fayl sayı.", "Maximum number of files per folder is {{max}}.": "Hər qovluq üçün maksimum fayl sayı {{max}}-dır.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Eyni vaxtda maksimum 3 model yüklənə bilər. Zəhmət olmasa bir az sonra yenidən cəhd edin.", @@ -1213,6 +1231,7 @@ "Microsoft OneDrive": "Microsoft OneDrive", "Microsoft OneDrive (personal)": "Microsoft OneDrive (şəxsi)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (iş/məktəb)", + "min": "", "MinerU": "MinerU", "MinerU API Key required for Cloud API mode.": "Bulud API rejimi üçün MinerU API açarı tələb olunur.", "Mistral OCR": "Mistral OCR", @@ -1318,6 +1337,7 @@ "No kernel": "Nüvə (kernel) yoxdur", "No knowledge bases found.": "Bilik bazası tapılmadı.", "No knowledge found": "Bilik tapılmadı", + "No limit": "", "No memories to clear": "Təmizlənməli yaddaş yoxdur", "No model IDs": "Model ID-si yoxdur", "No models available": "Mövcud model yoxdur", @@ -1390,6 +1410,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Vay! Siz dəstəklənməyən bir üsuldan istifadə edirsiniz (yalnız frontend). Zəhmət olmasa WebUI-ni backend-dən işə salın.", "Open file": "Faylı aç", "Open in full screen": "Tam ekranda aç", + "Open in new tab": "", "Open link": "Linki aç", "Open modal to configure connection": "Bağlantını konfiqurasiya etmək üçün pəncərəni aç", "Open Modal To Manage Floating Quick Actions": "Üzən sürətli əməliyyatları idarə etmək üçün pəncərəni aç", @@ -1450,6 +1471,7 @@ "Perplexity Model": "Perplexity Modeli", "Perplexity Search API URL": "Perplexity Axtarış API URL-i", "Perplexity Search Context Usage": "Perplexity Axtarış Kontekst İstifadəsi", + "Persistent": "", "Personalization": "Fərdiləşdirmə", "Pin": "Bərkit", "Pinned": "Bərkidilib", @@ -1486,6 +1508,7 @@ "Please select a valid JSON file": "Zəhmət olmasa etibarlı bir JSON faylı seçin", "Please select at least one user for Direct Message channel.": "Zəhmət olmasa birbaşa mesaj kanalı üçün ən azı bir istifadəçi seçin.", "Please wait until all files are uploaded.": "Zəhmət olmasa bütün fayllar yüklənənə qədər gözləyin.", + "Policy ID": "", "Port": "Port", "Ports": "Portlar", "Positive attitude": "Müsbət yanaşma", @@ -1565,6 +1588,7 @@ "Remove image": "Şəkli sil", "Remove Model": "Modeli Sil", "Rename": "Adını dəyiş", + "Renamed to {{name}}": "", "Render Markdown in Previews": "Önizləmələrdə Markdown-u emal et", "Reorder Models": "Modelləri yenidən sırala", "Reply": "Cavabla", @@ -1630,6 +1654,7 @@ "Search Groups": "Qrupları axtar", "Search In Models": "Modellər daxilində axtar", "Search Knowledge": "Biliklərdə axtar", + "Search Memories": "", "Search Models": "Modelləri axtar", "Search Notes": "Qeydləri axtar", "Search options": "Axtarış seçimləri", @@ -1671,6 +1696,7 @@ "Select a theme": "Mövzu seçin", "Select a tool": "Alət seçin", "Select a voice": "Səs seçin", + "Select All": "", "Select an auth method": "Autentifikasiya üsulu seçin", "Select an embedding model engine": "Yerləşdirmə modeli mühərriki seçin", "Select an engine": "Mühərrik seçin", @@ -1699,6 +1725,7 @@ "Serper API Key": "Serper API Açarı", "Serply API Key": "Serply API Açarı", "Serpstack API Key": "Serpstack API Açarı", + "Server connection failed": "", "Server connection verified": "Server bağlantısı təsdiqləndi", "Session": "Sessiya", "Set as default": "Standart olaraq təyin et", @@ -1800,6 +1827,7 @@ "Stop Download": "Yükləməni dayandır", "Stop Generating": "Generasiyanı dayandır", "Stop Sequence": "Dayandırma ardıcıllığı", + "Storage": "", "Stream Chat Response": "Çat cavabını axınla (stream) ötür", "Stream Delta Chunk Size": "Axın delta parça ölçüsü", "Streamable HTTP": "Axın edilə bilən HTTP", diff --git a/src/lib/i18n/locales/bg-BG/translation.json b/src/lib/i18n/locales/bg-BG/translation.json index 7d5b9cacf8..e42cd85b26 100644 --- a/src/lib/i18n/locales/bg-BG/translation.json +++ b/src/lib/i18n/locales/bg-BG/translation.json @@ -17,6 +17,8 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "{{COUNT}} Отговори", "{{COUNT}} Rows": "", + "{{count}} selected_one": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", "{{COUNT}}d_time_ago": "", @@ -127,6 +129,7 @@ "Allow File Upload": "Разреши качване на файлове", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Разреши нелокални гласове", + "Allow public write access": "", "Allow Rate Response": "", "Allow Regenerate Response": "", "Allow Sharing With Users": "", @@ -181,6 +184,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "Сигурни ли сте, че искате да изтриете този канал?", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "Сигурни ли сте, че искате да изтриете това съобщение?", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +383,7 @@ "Configure": "Конфигуриране", "Confirm": "Потвърди", "Confirm Password": "Потвърди Парола", + "Confirm Prompt from Embed": "", "Confirm your action": "Потвърдете действието си", "Confirm your new password": "Потвърдете новата си парола", "Confirm Your Password": "", @@ -386,6 +392,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "Свържете се със собствени крайни точки на API, съвместими с OpenAI.", "Connect to your own OpenAPI compatible external tool servers.": "", + "Connected ({{type}})": "", "Connection failed": "", "Connection successful": "", "Connection Type": "", @@ -426,6 +433,7 @@ "Copying to clipboard was successful!": "Копирането в клипборда беше успешно!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "CORS трябва да бъде правилно конфигуриран от доставчика, за да позволи заявки от Open WebUI.", "Could not read file.": "", + "CPU": "", "Create": "Създай", "Create a knowledge base": "Създаване на база знания", "Create a model": "Създаване на модел", @@ -497,6 +505,7 @@ "Delete File": "", "Delete folder?": "Изтриване на папката?", "Delete function?": "Изтриване на функцията?", + "Delete Memory?": "", "Delete Message": "Изтриване на съобщение", "Delete message?": "Изтриване на съобщението?", "Delete Model": "", @@ -510,6 +519,7 @@ "Deleted": "", "Deleted {{deleteModelTag}}": "Изтрито {{deleteModelTag}}", "Deleted {{name}}": "Изтрито {{name}}", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "Изтрит потребител", "Deployment names are required for Azure OpenAI": "", "Desc": "", @@ -518,6 +528,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "Опишете вашата база от знания и цели", "Description": "Описание", + "Deselect": "", "Detect Artifacts Automatically": "", "Dictate": "", "Didn't fully follow instructions": "Не следва напълно инструкциите", @@ -780,6 +791,8 @@ "Enter Your Username": "Въведете вашето потребителско име", "Enter your webhook URL": "Въведете вашия URL адрес на webhook", "Entra ID": "", + "Environment Variables": "", + "Ephemeral": "", "Error": "Грешка", "ERROR": "ГРЕШКА", "Error accessing directory": "", @@ -856,6 +869,7 @@ "Failed to save connections": "", "Failed to save conversation": "Неуспешно запазване на разговора", "Failed to save models configuration": "Неуспешно запазване на конфигурацията на моделите", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "Неуспешно актуализиране на настройките", @@ -871,6 +885,7 @@ "Feedback History": "История на обратната връзка", "Feel free to add specific details": "Не се колебайте да добавите конкретни детайли", "Female": "", + "Fetch URL Content Length Limit": "", "File": "Файл", "File added successfully.": "Файлът е добавен успешно.", "File attached to chat": "", @@ -925,6 +940,7 @@ "Format Lines": "", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "", "Formatting may be inconsistent from source.": "", + "Forward": "", "Forwards system user OAuth access token to authenticate": "", "Forwards system user session credentials to authenticate": "", "Full Context Mode": "Режим на пълен контекст", @@ -1012,6 +1028,7 @@ "ID": "ID", "ID cannot contain \":\" or \"|\" characters": "", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "", "iframe Sandbox Allow Same Origin": "", "Ignite curiosity": "Запалете любопитството", @@ -1182,6 +1199,7 @@ "Max Speakers": "", "Max Upload Count": "Максимален брой качвания", "Max Upload Size": "Максимален размер на качване", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Максимум 3 модела могат да бъдат сваляни едновременно. Моля, опитайте отново по-късно.", @@ -1213,6 +1231,7 @@ "Microsoft OneDrive": "", "Microsoft OneDrive (personal)": "", "Microsoft OneDrive (work/school)": "", + "min": "", "MinerU": "", "MinerU API Key required for Cloud API mode.": "", "Mistral OCR": "", @@ -1318,6 +1337,7 @@ "No kernel": "", "No knowledge bases found.": "", "No knowledge found": "Не са намерени знания", + "No limit": "", "No memories to clear": "", "No model IDs": "Няма ИД-та на моделите", "No models available": "", @@ -1390,6 +1410,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Упс! Използвате неподдържан метод (само фронтенд). Моля, сервирайте WebUI от бекенда.", "Open file": "Отвори файл", "Open in full screen": "Отвори на цял екран", + "Open in new tab": "", "Open link": "", "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", @@ -1450,6 +1471,7 @@ "Perplexity Model": "", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "", + "Persistent": "", "Personalization": "Персонализация", "Pin": "Закачи", "Pinned": "Закачено", @@ -1486,6 +1508,7 @@ "Please select a valid JSON file": "", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "", + "Policy ID": "", "Port": "Порт", "Ports": "", "Positive attitude": "Позитивно отношение", @@ -1565,6 +1588,7 @@ "Remove image": "", "Remove Model": "Изтриване на модела", "Rename": "Преименуване", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "Преорганизиране на моделите", "Reply": "", @@ -1630,6 +1654,7 @@ "Search Groups": "", "Search In Models": "", "Search Knowledge": "Търсене в знания", + "Search Memories": "", "Search Models": "Търсене на модели", "Search Notes": "", "Search options": "Опции за търсене", @@ -1671,6 +1696,7 @@ "Select a theme": "", "Select a tool": "Изберете инструмент", "Select a voice": "", + "Select All": "", "Select an auth method": "Изберете метод за удостоверяване", "Select an embedding model engine": "", "Select an engine": "", @@ -1699,6 +1725,7 @@ "Serper API Key": "Serper API ключ", "Serply API Key": "API ключ за Serply", "Serpstack API Key": "Serpstack API ключ", + "Server connection failed": "", "Server connection verified": "Връзката със сървъра е потвърдена", "Session": "", "Set as default": "Задай по подразбиране", @@ -1800,6 +1827,7 @@ "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Стоп последователност", + "Storage": "", "Stream Chat Response": "Поточен чат отговор", "Stream Delta Chunk Size": "", "Streamable HTTP": "", diff --git a/src/lib/i18n/locales/bn-BD/translation.json b/src/lib/i18n/locales/bn-BD/translation.json index f5c7bef4ad..dbe268c355 100644 --- a/src/lib/i18n/locales/bn-BD/translation.json +++ b/src/lib/i18n/locales/bn-BD/translation.json @@ -17,6 +17,8 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "", "{{COUNT}} Rows": "", + "{{count}} selected_one": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", "{{COUNT}}d_time_ago": "", @@ -127,6 +129,7 @@ "Allow File Upload": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "", + "Allow public write access": "", "Allow Rate Response": "", "Allow Regenerate Response": "", "Allow Sharing With Users": "", @@ -181,6 +184,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +383,7 @@ "Configure": "", "Confirm": "", "Confirm Password": "পাসওয়ার্ড নিশ্চিত করুন", + "Confirm Prompt from Embed": "", "Confirm your action": "", "Confirm your new password": "", "Confirm Your Password": "", @@ -386,6 +392,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAPI compatible external tool servers.": "", + "Connected ({{type}})": "", "Connection failed": "", "Connection successful": "", "Connection Type": "", @@ -426,6 +433,7 @@ "Copying to clipboard was successful!": "ক্লিপবোর্ডে কপি করা সফল হয়েছে", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "", "Could not read file.": "", + "CPU": "", "Create": "", "Create a knowledge base": "", "Create a model": "একটি মডেল তৈরি করুন", @@ -497,6 +505,7 @@ "Delete File": "", "Delete folder?": "", "Delete function?": "", + "Delete Memory?": "", "Delete Message": "", "Delete message?": "", "Delete Model": "", @@ -510,6 +519,7 @@ "Deleted": "", "Deleted {{deleteModelTag}}": "{{deleteModelTag}} মুছে ফেলা হয়েছে", "Deleted {{name}}": "{{name}} মোছা হয়েছে", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "", "Deployment names are required for Azure OpenAI": "", "Desc": "", @@ -518,6 +528,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "", "Description": "বিবরণ", + "Deselect": "", "Detect Artifacts Automatically": "", "Dictate": "", "Didn't fully follow instructions": "ইনস্ট্রাকশন সম্পূর্ণ অনুসরণ করা হয়নি", @@ -780,6 +791,8 @@ "Enter Your Username": "", "Enter your webhook URL": "", "Entra ID": "", + "Environment Variables": "", + "Ephemeral": "", "Error": "ত্রুটি", "ERROR": "", "Error accessing directory": "", @@ -856,6 +869,7 @@ "Failed to save connections": "", "Failed to save conversation": "কথোপকথন সংরক্ষণ করতে ব্যর্থ", "Failed to save models configuration": "", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "", @@ -871,6 +885,7 @@ "Feedback History": "", "Feel free to add specific details": "নির্দিষ্ট বিবরণ যোগ করতে বিনা দ্বিধায়", "Female": "", + "Fetch URL Content Length Limit": "", "File": "", "File added successfully.": "", "File attached to chat": "", @@ -925,6 +940,7 @@ "Format Lines": "", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "", "Formatting may be inconsistent from source.": "", + "Forward": "", "Forwards system user OAuth access token to authenticate": "", "Forwards system user session credentials to authenticate": "", "Full Context Mode": "", @@ -1012,6 +1028,7 @@ "ID": "", "ID cannot contain \":\" or \"|\" characters": "", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "", "iframe Sandbox Allow Same Origin": "", "Ignite curiosity": "", @@ -1182,6 +1199,7 @@ "Max Speakers": "", "Max Upload Count": "", "Max Upload Size": "", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "একসঙ্গে সর্বোচ্চ তিনটি মডেল ডাউনলোড করা যায়। দয়া করে পরে আবার চেষ্টা করুন।", @@ -1213,6 +1231,7 @@ "Microsoft OneDrive": "", "Microsoft OneDrive (personal)": "", "Microsoft OneDrive (work/school)": "", + "min": "", "MinerU": "", "MinerU API Key required for Cloud API mode.": "", "Mistral OCR": "", @@ -1318,6 +1337,7 @@ "No kernel": "", "No knowledge bases found.": "", "No knowledge found": "", + "No limit": "", "No memories to clear": "", "No model IDs": "", "No models available": "", @@ -1390,6 +1410,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "আপনি একটা আনসাপোর্টেড পদ্ধতি (শুধু ফ্রন্টএন্ড) ব্যবহার করছেন। দয়া করে WebUI ব্যাকএন্ড থেকে চালনা করুন।", "Open file": "", "Open in full screen": "", + "Open in new tab": "", "Open link": "", "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", @@ -1450,6 +1471,7 @@ "Perplexity Model": "", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "", + "Persistent": "", "Personalization": "ডিজিটাল বাংলা", "Pin": "", "Pinned": "", @@ -1486,6 +1508,7 @@ "Please select a valid JSON file": "", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "", + "Policy ID": "", "Port": "", "Ports": "", "Positive attitude": "পজিটিভ আক্রমণ", @@ -1565,6 +1588,7 @@ "Remove image": "", "Remove Model": "মডেল রিমুভ করুন", "Rename": "রেনেম", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "", "Reply": "", @@ -1630,6 +1654,7 @@ "Search Groups": "", "Search In Models": "", "Search Knowledge": "", + "Search Memories": "", "Search Models": "অনুসন্ধান মডেল", "Search Notes": "", "Search options": "", @@ -1671,6 +1696,7 @@ "Select a theme": "", "Select a tool": "", "Select a voice": "", + "Select All": "", "Select an auth method": "", "Select an embedding model engine": "", "Select an engine": "", @@ -1699,6 +1725,7 @@ "Serper API Key": "Serper API Key", "Serply API Key": "", "Serpstack API Key": "Serpstack API Key", + "Server connection failed": "", "Server connection verified": "সার্ভার কানেকশন যাচাই করা হয়েছে", "Session": "", "Set as default": "ডিফল্ট হিসেবে নির্ধারণ করুন", @@ -1800,6 +1827,7 @@ "Stop Download": "", "Stop Generating": "", "Stop Sequence": "সিকোয়েন্স থামান", + "Storage": "", "Stream Chat Response": "", "Stream Delta Chunk Size": "", "Streamable HTTP": "", diff --git a/src/lib/i18n/locales/bo-TB/translation.json b/src/lib/i18n/locales/bo-TB/translation.json index 768a0de0ca..2f9aaceb94 100644 --- a/src/lib/i18n/locales/bo-TB/translation.json +++ b/src/lib/i18n/locales/bo-TB/translation.json @@ -17,6 +17,7 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "ལན་ {{COUNT}}", "{{COUNT}} Rows": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", "{{COUNT}}d_time_ago": "", @@ -127,6 +128,7 @@ "Allow File Upload": "ཡིག་ཆ་སྤར་བར་གནང་བ་སྤྲོད་པ།", "Allow Multiple Models in Chat": "", "Allow non-local voices": "ས་གནས་མིན་པའི་སྐད་གདངས་ལ་གནང་བ་སྤྲོད་པ།", + "Allow public write access": "", "Allow Rate Response": "", "Allow Regenerate Response": "", "Allow Sharing With Users": "", @@ -181,6 +183,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "ཁྱེད་ཀྱིས་བགྲོ་གླེང་འདི་བསུབ་འདོད་ངེས་ཡིན་ནམ།", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "འཕྲིན་འདི་བསུབ་འདོད་ངེས་ཡིན་ནམ།", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +382,7 @@ "Configure": "སྒྲིག་འགོད།", "Confirm": "གཏན་འཁེལ།", "Confirm Password": "གསང་གྲངས་གཏན་འཁེལ།", + "Confirm Prompt from Embed": "", "Confirm your action": "ཁྱེད་ཀྱི་བྱ་སྤྱོད་གཏན་འཁེལ།", "Confirm your new password": "ཁྱེད་ཀྱི་གསང་གྲངས་གསར་པ་གཏན་འཁེལ།", "Confirm Your Password": "", @@ -386,6 +391,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "ཁྱེད་རང་གི་ OpenAI དང་མཐུན་པའི་ API མཇུག་མཐུད་ལ་སྦྲེལ་བ།", "Connect to your own OpenAPI compatible external tool servers.": "ཁྱེད་རང་གི་ OpenAPI དང་མཐུན་པའི་ཕྱི་རོལ་ལག་ཆའི་སར་བར་ལ་སྦྲེལ་བ།", + "Connected ({{type}})": "", "Connection failed": "", "Connection successful": "", "Connection Type": "", @@ -426,6 +432,7 @@ "Copying to clipboard was successful!": "སྦྱར་སྡེར་དུ་འདྲ་བཤུས་བྱེད་པ་ལེགས་འགྲུབ་བྱུང་།", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "Open WebUI ནས་རེ་ཞུ་གཏོང་བར་གནང་བ་སྤྲོད་ཆེད། CORS ངེས་པར་དུ་མཁོ་སྤྲོད་པས་འགྲིག་པོར་སྒྲིག་འགོད་བྱེད་དགོས།", "Could not read file.": "", + "CPU": "", "Create": "གསར་བཟོ།", "Create a knowledge base": "ཤེས་བྱའི་རྟེན་གཞི་ཞིག་གསར་བཟོ་བྱེད་པ།", "Create a model": "དཔེ་དབྱིབས་ཤིག་གསར་བཟོ་བྱེད་པ།", @@ -497,6 +504,7 @@ "Delete File": "", "Delete folder?": "ཡིག་སྣོད་བསུབ་པ།?", "Delete function?": "ལས་འགན་བསུབ་པ།?", + "Delete Memory?": "", "Delete Message": "འཕྲིན་བསུབ་པ།", "Delete message?": "འཕྲིན་བསུབ་པ།?", "Delete Model": "", @@ -510,6 +518,7 @@ "Deleted": "", "Deleted {{deleteModelTag}}": "{{deleteModelTag}} བསུབས་ཟིན།", "Deleted {{name}}": "{{name}} བསུབས་ཟིན།", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "བེད་སྤྱོད་མཁན་བསུབས་ཟིན།", "Deployment names are required for Azure OpenAI": "", "Desc": "", @@ -518,6 +527,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "ཁྱེད་ཀྱི་ཤེས་བྱའི་རྟེན་གཞི་དང་དམིགས་ཡུལ་འགྲེལ་བཤད་བྱེད་པ།", "Description": "འགྲེལ་བཤད།", + "Deselect": "", "Detect Artifacts Automatically": "", "Dictate": "", "Didn't fully follow instructions": "ལམ་སྟོན་ཡོངས་སུ་མ་བསྒྲུབས།", @@ -780,6 +790,8 @@ "Enter Your Username": "ཁྱེད་ཀྱི་བེད་སྤྱོད་མིང་འཇུག་པ།", "Enter your webhook URL": "ཁྱེད་ཀྱི་ Webhook URL འཇུག་པ།", "Entra ID": "", + "Environment Variables": "", + "Ephemeral": "", "Error": "ནོར་འཁྲུལ།", "ERROR": "ནོར་འཁྲུལ།", "Error accessing directory": "", @@ -856,6 +868,7 @@ "Failed to save connections": "", "Failed to save conversation": "གླེང་མོལ་ཉར་ཚགས་བྱེད་མ་ཐུབ།", "Failed to save models configuration": "དཔེ་དབྱིབས་སྒྲིག་འགོད་ཉར་ཚགས་བྱེད་མ་ཐུབ།", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "སྒྲིག་འགོད་གསར་སྒྱུར་བྱེད་མ་ཐུབ།", @@ -871,6 +884,7 @@ "Feedback History": "བསམ་འཆར་གྱི་ལོ་རྒྱུས།", "Feel free to add specific details": "ཞིབ་ཕྲ་ངེས་ཅན་སྣོན་པར་སེམས་ཁྲལ་མེད།", "Female": "", + "Fetch URL Content Length Limit": "", "File": "ཡིག་ཆ།", "File added successfully.": "ཡིག་ཆ་ལེགས་པར་བསྣན་ཟིན།", "File attached to chat": "", @@ -925,6 +939,7 @@ "Format Lines": "", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "", "Formatting may be inconsistent from source.": "", + "Forward": "", "Forwards system user OAuth access token to authenticate": "", "Forwards system user session credentials to authenticate": "", "Full Context Mode": "ནང་དོན་ཆ་ཚང་མ་དཔེ།", @@ -1012,6 +1027,7 @@ "ID": "ID", "ID cannot contain \":\" or \"|\" characters": "", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "", "iframe Sandbox Allow Same Origin": "", "Ignite curiosity": "ཤེས་འདོད་སློང་བ།", @@ -1182,6 +1198,7 @@ "Max Speakers": "", "Max Upload Count": "སྤར་བའི་གྲངས་མང་ཤོས།", "Max Upload Size": "སྤར་བའི་ཆེ་ཆུང་མང་ཤོས།", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "དཔེ་དབྱིབས་ ༣ ལས་མང་བ་མཉམ་དུ་ཕབ་ལེན་བྱེད་མི་ཐུབ། རྗེས་སུ་ཡང་བསྐྱར་ཚོད་ལྟ་བྱེད་རོགས།", @@ -1213,6 +1230,7 @@ "Microsoft OneDrive": "", "Microsoft OneDrive (personal)": "", "Microsoft OneDrive (work/school)": "", + "min": "", "MinerU": "", "MinerU API Key required for Cloud API mode.": "", "Mistral OCR": "", @@ -1318,6 +1336,7 @@ "No kernel": "", "No knowledge bases found.": "", "No knowledge found": "ཤེས་བྱ་མ་རྙེད།", + "No limit": "", "No memories to clear": "གཙང་སེལ་བྱེད་རྒྱུའི་དྲན་ཤེས་མེད།", "No model IDs": "དཔེ་དབྱིབས་ཀྱི་ ID མེད།", "No models available": "", @@ -1390,6 +1409,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "ཨོའོ། ཁྱེད་ཀྱིས་རྒྱབ་སྐྱོར་མེད་པའི་ཐབས་ལམ་ཞིག་ (མདུན་ངོས་ཁོ་ན།) བེད་སྤྱོད་གཏོང་བཞིན་འདུག རྒྱབ་སྣེ་ནས་ WebUI མཁོ་སྤྲོད་བྱེད་རོགས།", "Open file": "ཡིག་ཆ་ཁ་ཕྱེ་བ།", "Open in full screen": "ཡོངས་གནས་ངོས་སུ་ཁ་ཕྱེ་བ།", + "Open in new tab": "", "Open link": "", "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", @@ -1450,6 +1470,7 @@ "Perplexity Model": "", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "", + "Persistent": "", "Personalization": "སྒེར་སྤྱོད་ཅན།", "Pin": "གདབ་པ།", "Pinned": "གདབ་ཟིན།", @@ -1486,6 +1507,7 @@ "Please select a valid JSON file": "", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "", + "Policy ID": "", "Port": "Port", "Ports": "", "Positive attitude": "ལྟ་སྟངས་དགེ་མཚན།", @@ -1565,6 +1587,7 @@ "Remove image": "", "Remove Model": "དཔེ་དབྱིབས་འདོར་བ།", "Rename": "མིང་བསྐྱར་འདོགས།", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "དཔེ་དབྱིབས་བསྐྱར་སྒྲིག", "Reply": "", @@ -1629,6 +1652,7 @@ "Search Groups": "", "Search In Models": "", "Search Knowledge": "ཤེས་བྱ་འཚོལ་བཤེར།", + "Search Memories": "", "Search Models": "དཔེ་དབྱིབས་འཚོལ་བཤེར།", "Search Notes": "", "Search options": "འཚོལ་བཤེར་འདེམས་ཀ", @@ -1670,6 +1694,7 @@ "Select a theme": "", "Select a tool": "ལག་ཆ་ཞིག་གདམ་པ།", "Select a voice": "", + "Select All": "", "Select an auth method": "auth ཐབས་ལམ་ཞིག་གདམ་པ།", "Select an embedding model engine": "", "Select an engine": "", @@ -1698,6 +1723,7 @@ "Serper API Key": "Serper API ལྡེ་མིག", "Serply API Key": "Serply API ལྡེ་མིག", "Serpstack API Key": "Serpstack API ལྡེ་མིག", + "Server connection failed": "", "Server connection verified": "སར་བར་སྦྲེལ་མཐུད་ར་སྤྲོད་བྱས།", "Session": "", "Set as default": "སྔོན་སྒྲིག་ཏུ་འཇོག་པ།", @@ -1799,6 +1825,7 @@ "Stop Download": "", "Stop Generating": "", "Stop Sequence": "མཚམས་འཇོག་རིམ་པ།", + "Storage": "", "Stream Chat Response": "ཁ་བརྡའི་ལན་རྒྱུག་པ།", "Stream Delta Chunk Size": "", "Streamable HTTP": "", diff --git a/src/lib/i18n/locales/bs-BA/translation.json b/src/lib/i18n/locales/bs-BA/translation.json index 1b694a5478..f8e72d8529 100644 --- a/src/lib/i18n/locales/bs-BA/translation.json +++ b/src/lib/i18n/locales/bs-BA/translation.json @@ -17,6 +17,9 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "", "{{COUNT}} Rows": "", + "{{count}} selected_one": "", + "{{count}} selected_few": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", "{{COUNT}}d_time_ago": "", @@ -127,6 +130,7 @@ "Allow File Upload": "", "Allow Multiple Models in Chat": "Dozvoli vise modela u jednom chatu", "Allow non-local voices": "Dopusti nelokalne glasove", + "Allow public write access": "", "Allow Rate Response": "", "Allow Regenerate Response": "Dozvoli Regeneraciju Odgovora", "Allow Sharing With Users": "", @@ -181,6 +185,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +384,7 @@ "Configure": "Promijeni", "Confirm": "Potvrdi", "Confirm Password": "Potvrdite lozinku", + "Confirm Prompt from Embed": "", "Confirm your action": "Potvrdi radnju", "Confirm your new password": "Potvrdi novu sifru", "Confirm Your Password": "Potvrdi sifru", @@ -386,6 +393,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAPI compatible external tool servers.": "", + "Connected ({{type}})": "", "Connection failed": "Konekcija nije uspjela", "Connection successful": "Konekcija uspjesna", "Connection Type": "Tip Konekcije", @@ -426,6 +434,7 @@ "Copying to clipboard was successful!": "Kopiranje u međuspremnik je uspješno!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "", "Could not read file.": "", + "CPU": "", "Create": "", "Create a knowledge base": "", "Create a model": "Izradite model", @@ -497,6 +506,7 @@ "Delete File": "", "Delete folder?": "", "Delete function?": "", + "Delete Memory?": "", "Delete Message": "", "Delete message?": "", "Delete Model": "", @@ -510,6 +520,7 @@ "Deleted": "", "Deleted {{deleteModelTag}}": "Izbrisan {{deleteModelTag}}", "Deleted {{name}}": "Izbrisano {{name}}", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "", "Deployment names are required for Azure OpenAI": "", "Desc": "", @@ -518,6 +529,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "", "Description": "Opis", + "Deselect": "", "Detect Artifacts Automatically": "", "Dictate": "", "Didn't fully follow instructions": "Nije u potpunosti slijedio upute", @@ -780,6 +792,8 @@ "Enter Your Username": "", "Enter your webhook URL": "", "Entra ID": "", + "Environment Variables": "", + "Ephemeral": "", "Error": "Greška", "ERROR": "", "Error accessing directory": "", @@ -856,6 +870,7 @@ "Failed to save connections": "", "Failed to save conversation": "Neuspješno spremanje razgovora", "Failed to save models configuration": "", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "Greška kod ažuriranja postavki", @@ -871,6 +886,7 @@ "Feedback History": "", "Feel free to add specific details": "Slobodno dodajte specifične detalje", "Female": "", + "Fetch URL Content Length Limit": "", "File": "", "File added successfully.": "", "File attached to chat": "", @@ -925,6 +941,7 @@ "Format Lines": "", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "", "Formatting may be inconsistent from source.": "", + "Forward": "", "Forwards system user OAuth access token to authenticate": "", "Forwards system user session credentials to authenticate": "", "Full Context Mode": "", @@ -1012,6 +1029,7 @@ "ID": "", "ID cannot contain \":\" or \"|\" characters": "", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "", "iframe Sandbox Allow Same Origin": "", "Ignite curiosity": "", @@ -1182,6 +1200,7 @@ "Max Speakers": "", "Max Upload Count": "", "Max Upload Size": "", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maksimalno 3 modela se mogu preuzeti istovremeno. Pokušajte ponovo kasnije.", @@ -1213,6 +1232,7 @@ "Microsoft OneDrive": "", "Microsoft OneDrive (personal)": "", "Microsoft OneDrive (work/school)": "", + "min": "", "MinerU": "", "MinerU API Key required for Cloud API mode.": "", "Mistral OCR": "", @@ -1318,6 +1338,7 @@ "No kernel": "", "No knowledge bases found.": "", "No knowledge found": "", + "No limit": "", "No memories to clear": "", "No model IDs": "", "No models available": "", @@ -1390,6 +1411,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Ups! Koristite nepodržanu metodu (samo frontend). Molimo poslužite WebUI s backend-a.", "Open file": "", "Open in full screen": "", + "Open in new tab": "", "Open link": "", "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", @@ -1450,6 +1472,7 @@ "Perplexity Model": "", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "", + "Persistent": "", "Personalization": "Prilagodba", "Pin": "", "Pinned": "", @@ -1486,6 +1509,7 @@ "Please select a valid JSON file": "", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "", + "Policy ID": "", "Port": "", "Ports": "", "Positive attitude": "Pozitivan stav", @@ -1565,6 +1589,7 @@ "Remove image": "", "Remove Model": "Ukloni model", "Rename": "Preimenuj", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "", "Reply": "", @@ -1631,6 +1656,7 @@ "Search Groups": "", "Search In Models": "", "Search Knowledge": "", + "Search Memories": "", "Search Models": "Pretražite modele", "Search Notes": "", "Search options": "", @@ -1672,6 +1698,7 @@ "Select a theme": "", "Select a tool": "", "Select a voice": "", + "Select All": "", "Select an auth method": "", "Select an embedding model engine": "", "Select an engine": "", @@ -1700,6 +1727,7 @@ "Serper API Key": "Serper API ključ", "Serply API Key": "Serply API ključ", "Serpstack API Key": "Serpstack API API ključ", + "Server connection failed": "", "Server connection verified": "Veza s poslužiteljem potvrđena", "Session": "", "Set as default": "Postavi kao zadano", @@ -1801,6 +1829,7 @@ "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Zaustavi sekvencu", + "Storage": "", "Stream Chat Response": "", "Stream Delta Chunk Size": "", "Streamable HTTP": "", diff --git a/src/lib/i18n/locales/ca-ES/translation.json b/src/lib/i18n/locales/ca-ES/translation.json index 03d460190b..f30a33c13d 100644 --- a/src/lib/i18n/locales/ca-ES/translation.json +++ b/src/lib/i18n/locales/ca-ES/translation.json @@ -17,6 +17,9 @@ "{{COUNT}} members": "{{COUNT}} membres", "{{COUNT}} Replies": "{{COUNT}} respostes", "{{COUNT}} Rows": "{{COUNT}} files", + "{{count}} selected_one": "", + "{{count}} selected_many": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "{{COUNT}} fonts", "{{COUNT}} words": "{{COUNT}} paraules", "{{COUNT}}d_time_ago": "{{COUNT}}d", @@ -127,6 +130,7 @@ "Allow File Upload": "Permetre la pujada d'arxius", "Allow Multiple Models in Chat": "Permetre múltiple models al xat", "Allow non-local voices": "Permetre veus no locals", + "Allow public write access": "", "Allow Rate Response": "Permetre valorar les respostes", "Allow Regenerate Response": "Permetre regenerar respostes", "Allow Sharing With Users": "Permetre compartir amb usuaris", @@ -181,6 +185,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "Estàs segur que vols eliminar \"{{NAME}}\"?", "Are you sure you want to delete all chats? This action cannot be undone.": "Estàs segur que vols suprimir tots els xats? Aquesta acció no es pot desfer.", "Are you sure you want to delete this channel?": "Estàs segur que vols eliminar aquest canal?", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "Estàs segur que vols eliminar aquest missatge?", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "Estàs segur que vols suprimir aquesta versió? Les versions filles es tornaran a enllaçar amb la versió principal d'aquesta versió.", "Are you sure you want to delete this?": "Estàs segur que vols eliminar això", @@ -378,6 +384,7 @@ "Configure": "Configurar", "Confirm": "Confirmar", "Confirm Password": "Confirmar la contrasenya", + "Confirm Prompt from Embed": "", "Confirm your action": "Confirma la teva acció", "Confirm your new password": "Confirma la teva nova contrasenya", "Confirm Your Password": "Confirma la teva contrasenya", @@ -386,6 +393,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "Connecta't a instàncies d'Open Terminal. Tots els usuaris tindran accés a la navegació de fitxers i a les eines del terminal a través d'aquests servidors.", "Connect to your own OpenAI compatible API endpoints.": "Connecta als teus propis punts de connexió de l'API compatible amb OpenAI", "Connect to your own OpenAPI compatible external tool servers.": "Connecta als teus propis servidors d'eines externs compatibles amb OpenAPI", + "Connected ({{type}})": "", "Connection failed": "La connexió ha fallat", "Connection successful": "Connexió correcta", "Connection Type": "Tipus de connexió", @@ -426,6 +434,7 @@ "Copying to clipboard was successful!": "La còpia al porta-retalls s'ha realitzat correctament", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "CORS ha de ser configurat correctament pel proveïdor per permetre les sol·licituds d'Open WebUI", "Could not read file.": "No s'ha pogut llegir l'arxiu", + "CPU": "", "Create": "Crear", "Create a knowledge base": "Crear una base de coneixement", "Create a model": "Crear un model", @@ -497,6 +506,7 @@ "Delete File": "Eliminar el fitxer", "Delete folder?": "Eliminar la carpeta?", "Delete function?": "Eliminar funció?", + "Delete Memory?": "", "Delete Message": "Eliminar el missatge", "Delete message?": "Eliminar el missatge?", "Delete Model": "Eliminar model", @@ -510,6 +520,7 @@ "Deleted": "Eliminat", "Deleted {{deleteModelTag}}": "S'ha eliminat {{deleteModelTag}}", "Deleted {{name}}": "S'ha eliminat {{name}}", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "Usuari eliminat", "Deployment names are required for Azure OpenAI": "Els noms de desplegament són requerits per Azure OpenAI", "Desc": "Descendent", @@ -518,6 +529,7 @@ "Describe what changed...": "Descriu què ha canviat...", "Describe your knowledge base and objectives": "Descriu la teva base de coneixement i objectius", "Description": "Descripció", + "Deselect": "", "Detect Artifacts Automatically": "Detectar automàticament els artefactes", "Dictate": "Dictar", "Didn't fully follow instructions": "No s'han seguit les instruccions completament", @@ -780,6 +792,8 @@ "Enter Your Username": "Introdueix el teu nom d'usuari", "Enter your webhook URL": "Introdueix la URL del webhook", "Entra ID": "Introdueix l'ID", + "Environment Variables": "", + "Ephemeral": "", "Error": "Error", "ERROR": "ERROR", "Error accessing directory": "Error en accedir al directori", @@ -856,6 +870,7 @@ "Failed to save connections": "No s'han pogut desar les connexions", "Failed to save conversation": "No s'ha pogut desar la conversa", "Failed to save models configuration": "No s'ha pogut desar la configuració dels models", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "No s'han pogut desar els servidors de terminal", "Failed to unshare chat.": "No s'ha pogut deixar de compartir el xat.", "Failed to update settings": "No s'han pogut actualitzar les preferències", @@ -871,6 +886,7 @@ "Feedback History": "Històric de comentaris", "Feel free to add specific details": "Sent-te lliure d'afegir detalls específics", "Female": "Dona", + "Fetch URL Content Length Limit": "", "File": "Arxiu", "File added successfully.": "L'arxiu s'ha afegit correctament.", "File attached to chat": "L'arxiu s'ha adjuntat al xat", @@ -925,6 +941,7 @@ "Format Lines": "Formatar les línies", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "Formata les línies a la sortida. Per defecte, és Fals. Si es defineix com a Cert, les línies es formataran per detectar matemàtiques i estils en línia.", "Formatting may be inconsistent from source.": "La formatació pot ser inconsistent amb l'origen", + "Forward": "", "Forwards system user OAuth access token to authenticate": "Reenvia el testimoni d'accés OAuth de l'usuari del sistema per autenticar-se.", "Forwards system user session credentials to authenticate": "Envia les credencials de l'usuari del sistema per autenticar", "Full Context Mode": "Mode de context complert", @@ -1012,6 +1029,7 @@ "ID": "ID", "ID cannot contain \":\" or \"|\" characters": "L'ID no pot contenir caràcters \":\" ni \"|\"", "ID copied to clipboard": "L'ID s'ha copiat al portaretalls", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "Permetre formularis sandbox iframe", "iframe Sandbox Allow Same Origin": "Permetre same-origin sandbox iframe", "Ignite curiosity": "Despertar la curiositat", @@ -1182,6 +1200,7 @@ "Max Speakers": "Nombre màxim d'altaveus", "Max Upload Count": "Nombre màxim de càrregues", "Max Upload Size": "Mida màxima de càrrega", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "Nombre màxim de fitxers permès per carpeta.", "Maximum number of files per folder is {{max}}.": "El nombre màxim de fitxers per carpeta és {{max}}.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Es poden descarregar un màxim de 3 models simultàniament. Si us plau, prova-ho més tard.", @@ -1213,6 +1232,7 @@ "Microsoft OneDrive": "Microsoft OneDrive", "Microsoft OneDrive (personal)": "Microsoft OneDrive (personal)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (feina/escola)", + "min": "", "MinerU": "MinerU", "MinerU API Key required for Cloud API mode.": "És necessària la clau API de MinerU pel mode Cloud API", "Mistral OCR": "Mistral OCR", @@ -1318,6 +1338,7 @@ "No kernel": "No hi ha cap kernel", "No knowledge bases found.": "No s'han trobat bases de coneixement.", "No knowledge found": "No s'ha trobat Coneixement", + "No limit": "", "No memories to clear": "No hi ha memòries per netejar", "No model IDs": "No hi ha IDs de model", "No models available": "No hi ha models disponibles", @@ -1390,6 +1411,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Ui! Estàs utilitzant un mètode no suportat (només frontend). Si us plau, serveix la WebUI des del backend.", "Open file": "Obrir arxiu", "Open in full screen": "Obrir en pantalla complerta", + "Open in new tab": "", "Open link": "Obrir l'enllaç", "Open modal to configure connection": "Obre el modal per configurar la connexió", "Open Modal To Manage Floating Quick Actions": "Obre el model per configurar les Accions ràpides flotants", @@ -1450,6 +1472,7 @@ "Perplexity Model": "Model de Perplexity", "Perplexity Search API URL": "URL API per a Perplexity Search", "Perplexity Search Context Usage": "Utilització del context de cerca de Perplexity", + "Persistent": "", "Personalization": "Personalització", "Pin": "Fixar", "Pinned": "Fixat", @@ -1486,6 +1509,7 @@ "Please select a valid JSON file": "Si us plau, selecciona un arxiu JSON vàlid", "Please select at least one user for Direct Message channel.": "Selecciona com a mínim un usuari per al canal de missatge directe.", "Please wait until all files are uploaded.": "Si us plau, espera fins que s'hagin carregat tots els fitxers.", + "Policy ID": "", "Port": "Port", "Ports": "Ports", "Positive attitude": "Actitud positiva", @@ -1565,6 +1589,7 @@ "Remove image": "Eliminar imatge", "Remove Model": "Eliminar el model", "Rename": "Canviar el nom", + "Renamed to {{name}}": "", "Render Markdown in Previews": "Compila el Markdown a les previsualitzacions", "Reorder Models": "Reordenar els models", "Reply": "Respondre", @@ -1631,6 +1656,7 @@ "Search Groups": "Cercar grups", "Search In Models": "Cercar als models", "Search Knowledge": "Cercar coneixement", + "Search Memories": "", "Search Models": "Cercar models", "Search Notes": "Cercar notes", "Search options": "Opcions de cerca", @@ -1672,6 +1698,7 @@ "Select a theme": "Seleccionar un tema", "Select a tool": "Seleccionar una eina", "Select a voice": "Seleccionar una veu", + "Select All": "", "Select an auth method": "Seleccionar un mètode d'autenticació", "Select an embedding model engine": "Seleccionar un motor d'incrustació", "Select an engine": "Seleccionar un motor", @@ -1700,6 +1727,7 @@ "Serper API Key": "Clau API de Serper", "Serply API Key": "Clau API de Serply", "Serpstack API Key": "Clau API de Serpstack", + "Server connection failed": "", "Server connection verified": "Connexió al servidor verificada", "Session": "Sessió", "Set as default": "Establir com a predeterminat", @@ -1801,6 +1829,7 @@ "Stop Download": "Aturar la descàrrega", "Stop Generating": "Aturar la generació", "Stop Sequence": "Atura la seqüència", + "Storage": "", "Stream Chat Response": "Fer streaming de la resposta del xat", "Stream Delta Chunk Size": "Mida del fragment Delta del flux", "Streamable HTTP": "HTTP en estríming", diff --git a/src/lib/i18n/locales/ceb-PH/translation.json b/src/lib/i18n/locales/ceb-PH/translation.json index eed49b3f14..905e451fd8 100644 --- a/src/lib/i18n/locales/ceb-PH/translation.json +++ b/src/lib/i18n/locales/ceb-PH/translation.json @@ -17,6 +17,8 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "", "{{COUNT}} Rows": "", + "{{count}} selected_one": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", "{{COUNT}}d_time_ago": "", @@ -127,6 +129,7 @@ "Allow File Upload": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "", + "Allow public write access": "", "Allow Rate Response": "", "Allow Regenerate Response": "", "Allow Sharing With Users": "", @@ -181,6 +184,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +383,7 @@ "Configure": "", "Confirm": "", "Confirm Password": "Kumpirma ang password", + "Confirm Prompt from Embed": "", "Confirm your action": "", "Confirm your new password": "", "Confirm Your Password": "", @@ -386,6 +392,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAPI compatible external tool servers.": "", + "Connected ({{type}})": "", "Connection failed": "", "Connection successful": "", "Connection Type": "", @@ -426,6 +433,7 @@ "Copying to clipboard was successful!": "Ang pagkopya sa clipboard malampuson!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "", "Could not read file.": "", + "CPU": "", "Create": "", "Create a knowledge base": "", "Create a model": "", @@ -497,6 +505,7 @@ "Delete File": "", "Delete folder?": "", "Delete function?": "", + "Delete Memory?": "", "Delete Message": "", "Delete message?": "", "Delete Model": "", @@ -510,6 +519,7 @@ "Deleted": "", "Deleted {{deleteModelTag}}": "{{deleteModelTag}} gipapas", "Deleted {{name}}": "", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "", "Deployment names are required for Azure OpenAI": "", "Desc": "", @@ -518,6 +528,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "", "Description": "Deskripsyon", + "Deselect": "", "Detect Artifacts Automatically": "", "Dictate": "", "Didn't fully follow instructions": "", @@ -780,6 +791,8 @@ "Enter Your Username": "", "Enter your webhook URL": "", "Entra ID": "", + "Environment Variables": "", + "Ephemeral": "", "Error": "", "ERROR": "", "Error accessing directory": "", @@ -856,6 +869,7 @@ "Failed to save connections": "", "Failed to save conversation": "Napakyas sa pagtipig sa panag-istorya", "Failed to save models configuration": "", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "", @@ -871,6 +885,7 @@ "Feedback History": "", "Feel free to add specific details": "", "Female": "", + "Fetch URL Content Length Limit": "", "File": "", "File added successfully.": "", "File attached to chat": "", @@ -925,6 +940,7 @@ "Format Lines": "", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "", "Formatting may be inconsistent from source.": "", + "Forward": "", "Forwards system user OAuth access token to authenticate": "", "Forwards system user session credentials to authenticate": "", "Full Context Mode": "", @@ -1012,6 +1028,7 @@ "ID": "", "ID cannot contain \":\" or \"|\" characters": "", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "", "iframe Sandbox Allow Same Origin": "", "Ignite curiosity": "", @@ -1182,6 +1199,7 @@ "Max Speakers": "", "Max Upload Count": "", "Max Upload Size": "", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Ang labing taas nga 3 nga mga disenyo mahimong ma-download nga dungan. ", @@ -1213,6 +1231,7 @@ "Microsoft OneDrive": "", "Microsoft OneDrive (personal)": "", "Microsoft OneDrive (work/school)": "", + "min": "", "MinerU": "", "MinerU API Key required for Cloud API mode.": "", "Mistral OCR": "", @@ -1318,6 +1337,7 @@ "No kernel": "", "No knowledge bases found.": "", "No knowledge found": "", + "No limit": "", "No memories to clear": "", "No model IDs": "", "No models available": "", @@ -1390,6 +1410,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Oops! ", "Open file": "", "Open in full screen": "", + "Open in new tab": "", "Open link": "", "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", @@ -1450,6 +1471,7 @@ "Perplexity Model": "", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "", + "Persistent": "", "Personalization": "", "Pin": "", "Pinned": "", @@ -1486,6 +1508,7 @@ "Please select a valid JSON file": "", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "", + "Policy ID": "", "Port": "", "Ports": "", "Positive attitude": "", @@ -1565,6 +1588,7 @@ "Remove image": "", "Remove Model": "", "Rename": "", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "", "Reply": "", @@ -1630,6 +1654,7 @@ "Search Groups": "", "Search In Models": "", "Search Knowledge": "", + "Search Memories": "", "Search Models": "", "Search Notes": "", "Search options": "", @@ -1671,6 +1696,7 @@ "Select a theme": "", "Select a tool": "", "Select a voice": "", + "Select All": "", "Select an auth method": "", "Select an embedding model engine": "", "Select an engine": "", @@ -1699,6 +1725,7 @@ "Serper API Key": "", "Serply API Key": "", "Serpstack API Key": "", + "Server connection failed": "", "Server connection verified": "Gipamatud-an nga koneksyon sa server", "Session": "", "Set as default": "Define pinaagi sa default", @@ -1800,6 +1827,7 @@ "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Pagkasunod-sunod sa pagsira", + "Storage": "", "Stream Chat Response": "", "Stream Delta Chunk Size": "", "Streamable HTTP": "", diff --git a/src/lib/i18n/locales/cs-CZ/translation.json b/src/lib/i18n/locales/cs-CZ/translation.json index f8c4ea4007..2e4e5477ba 100644 --- a/src/lib/i18n/locales/cs-CZ/translation.json +++ b/src/lib/i18n/locales/cs-CZ/translation.json @@ -17,6 +17,10 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "{{COUNT}} odpovědí", "{{COUNT}} Rows": "", + "{{count}} selected_one": "", + "{{count}} selected_few": "", + "{{count}} selected_many": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "{{COUNT}} slov", "{{COUNT}}d_time_ago": "", @@ -127,6 +131,7 @@ "Allow File Upload": "Povolit nahrávání souborů", "Allow Multiple Models in Chat": "Povolit více modelů v chatu", "Allow non-local voices": "Povolit nelokální hlasy", + "Allow public write access": "", "Allow Rate Response": "", "Allow Regenerate Response": "", "Allow Sharing With Users": "", @@ -181,6 +186,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "Opravdu chcete smazat tento kanál?", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "Opravdu chcete smazat tuto zprávu?", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +385,7 @@ "Configure": "Konfigurovat", "Confirm": "Potvrdit", "Confirm Password": "Potvrdit heslo", + "Confirm Prompt from Embed": "", "Confirm your action": "Potvrďte svou akci", "Confirm your new password": "Potvrďte své nové heslo", "Confirm Your Password": "Potvrďte své heslo", @@ -386,6 +394,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "Připojte se k vlastním koncovým bodům API kompatibilním s OpenAI.", "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 successful": "Připojení úspěšné", "Connection Type": "Typ připojení", @@ -426,6 +435,7 @@ "Copying to clipboard was successful!": "Kopírování do schránky bylo úspěšné!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "CORS musí být správně nakonfigurován poskytovatelem, aby povolil požadavky z Open WebUI.", "Could not read file.": "", + "CPU": "", "Create": "Vytvořit", "Create a knowledge base": "Vytvořit znalostní bázi", "Create a model": "Vytvořit model", @@ -497,6 +507,7 @@ "Delete File": "", "Delete folder?": "Smazat složku?", "Delete function?": "Smazat funkci?", + "Delete Memory?": "", "Delete Message": "Smazat zprávu", "Delete message?": "Smazat zprávu?", "Delete Model": "Smazat model", @@ -510,6 +521,7 @@ "Deleted": "", "Deleted {{deleteModelTag}}": "Smazáno {{deleteModelTag}}", "Deleted {{name}}": "Smazáno {{name}}", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "Smazaný uživatel", "Deployment names are required for Azure OpenAI": "Pro Azure OpenAI jsou vyžadovány názvy nasazení", "Desc": "", @@ -518,6 +530,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "Popište svou znalostní bázi a cíle", "Description": "Popis", + "Deselect": "", "Detect Artifacts Automatically": "Automaticky detekovat artefakty", "Dictate": "Diktovat", "Didn't fully follow instructions": "Nedodržel plně pokyny", @@ -780,6 +793,8 @@ "Enter Your Username": "Zadejte své uživatelské jméno", "Enter your webhook URL": "Zadejte URL svého webhooku", "Entra ID": "", + "Environment Variables": "", + "Ephemeral": "", "Error": "Chyba", "ERROR": "CHYBA", "Error accessing directory": "Chyba při přístupu k adresáři", @@ -856,6 +871,7 @@ "Failed to save connections": "Nepodařilo se uložit připojení", "Failed to save conversation": "Nepodařilo se uložit konverzaci", "Failed to save models configuration": "Nepodařilo se uložit konfiguraci modelů", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "Nepodařilo se aktualizovat nastavení", @@ -871,6 +887,7 @@ "Feedback History": "Historie zpětné vazby", "Feel free to add specific details": "Neváhejte přidat konkrétní detaily.", "Female": "Žena", + "Fetch URL Content Length Limit": "", "File": "Soubor", "File added successfully.": "Soubor byl úspěšně přidán.", "File attached to chat": "", @@ -925,6 +942,7 @@ "Format Lines": "Formátovat řádky", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "Formátovat řádky ve výstupu. Výchozí hodnota je False. Pokud je nastaveno na True, řádky budou formátovány pro detekci vložené matematiky a stylů.", "Formatting may be inconsistent from source.": "", + "Forward": "", "Forwards system user OAuth access token to authenticate": "", "Forwards system user session credentials to authenticate": "Přeposílá přihlašovací údaje relace systémového uživatele pro ověření", "Full Context Mode": "Režim plného kontextu", @@ -1012,6 +1030,7 @@ "ID": "ID", "ID cannot contain \":\" or \"|\" characters": "", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "Povolit formuláře v sandboxu iframe", "iframe Sandbox Allow Same Origin": "Povolit stejný původ v sandboxu iframe", "Ignite curiosity": "Probuďte zvědavost", @@ -1182,6 +1201,7 @@ "Max Speakers": "Max. mluvčích", "Max Upload Count": "Maximální počet nahrání", "Max Upload Size": "Maximální velikost nahrávaných souborů", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Současně lze stahovat maximálně 3 modely. Zkuste to prosím později.", @@ -1213,6 +1233,7 @@ "Microsoft OneDrive": "Microsoft OneDrive", "Microsoft OneDrive (personal)": "Microsoft OneDrive (osobní)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (pracovní/školní)", + "min": "", "MinerU": "", "MinerU API Key required for Cloud API mode.": "", "Mistral OCR": "Mistral OCR", @@ -1318,6 +1339,7 @@ "No kernel": "", "No knowledge bases found.": "", "No knowledge found": "Nebyly nalezeny žádné znalosti", + "No limit": "", "No memories to clear": "Žádné vzpomínky k vymazání", "No model IDs": "Žádná ID modelů", "No models available": "", @@ -1390,6 +1412,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Jejda! Používáte nepodporovanou metodu (pouze frontend). Spusťte prosím WebUI z backendu.", "Open file": "Otevřít soubor", "Open in full screen": "Otevřít na celou obrazovku", + "Open in new tab": "", "Open link": "Otevřít link", "Open modal to configure connection": "Otevřít modální okno pro konfiguraci připojení", "Open Modal To Manage Floating Quick Actions": "Otevřít modální okno pro správu plovoucích rychlých akcí", @@ -1450,6 +1473,7 @@ "Perplexity Model": "Model Perplexity", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "Využití kontextu vyhledávání Perplexity", + "Persistent": "", "Personalization": "Personalizace", "Pin": "Připnout", "Pinned": "Připnuto", @@ -1486,6 +1510,7 @@ "Please select a valid JSON file": "", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "Prosím počkejte dokud nebudou všechny soubory nahrány.", + "Policy ID": "", "Port": "Port", "Ports": "", "Positive attitude": "Pozitivní přístup", @@ -1565,6 +1590,7 @@ "Remove image": "Odebrat obrázek", "Remove Model": "Odebrat model", "Rename": "Přejmenovat", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "Změnit pořadí modelů", "Reply": "", @@ -1632,6 +1658,7 @@ "Search Groups": "", "Search In Models": "Hledat v modelech", "Search Knowledge": "Hledat ve znalostech", + "Search Memories": "", "Search Models": "Hledat modely", "Search Notes": "Hledat poznámky", "Search options": "Možnosti vyhledávání", @@ -1673,6 +1700,7 @@ "Select a theme": "Vyberte motiv", "Select a tool": "Vyberte nástroj", "Select a voice": "Vyberte hlas", + "Select All": "", "Select an auth method": "Vyberte metodu ověření", "Select an embedding model engine": "Vyberte jádro modelu pro vektorizaci", "Select an engine": "Vyberte jádro", @@ -1701,6 +1729,7 @@ "Serper API Key": "API klíč pro Serper", "Serply API Key": "API klíč pro Serply", "Serpstack API Key": "API klíč pro Serpstack", + "Server connection failed": "", "Server connection verified": "Připojení k serveru ověřeno", "Session": "Relace", "Set as default": "Nastavit jako výchozí", @@ -1802,6 +1831,7 @@ "Stop Download": "", "Stop Generating": "", "Stop Sequence": "stop sequence", + "Storage": "", "Stream Chat Response": "stream chat response", "Stream Delta Chunk Size": "stream delta chunk size", "Streamable HTTP": "", diff --git a/src/lib/i18n/locales/da-DK/translation.json b/src/lib/i18n/locales/da-DK/translation.json index 343a79c33c..08d951f817 100644 --- a/src/lib/i18n/locales/da-DK/translation.json +++ b/src/lib/i18n/locales/da-DK/translation.json @@ -17,6 +17,8 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "{{COUNT}} svar", "{{COUNT}} Rows": "", + "{{count}} selected_one": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "{{COUNT}} kilder", "{{COUNT}} words": "{{COUNT}} ord", "{{COUNT}}d_time_ago": "", @@ -127,6 +129,7 @@ "Allow File Upload": "Tillad upload af fil", "Allow Multiple Models in Chat": "Tillad flere modeller i chats", "Allow non-local voices": "Tillad ikke-lokale stemmer", + "Allow public write access": "", "Allow Rate Response": "Tillad vurdering af svar", "Allow Regenerate Response": "Tillad regenerering af svar", "Allow Sharing With Users": "", @@ -181,6 +184,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "Er du sikker på at du vil slette \"{{NAME}}\"?", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "Er du sikker på du vil slette denne kanal?", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "Er du sikker på du vil slette denne besked?", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +383,7 @@ "Configure": "Konfigurer", "Confirm": "Bekræft", "Confirm Password": "Bekræft password", + "Confirm Prompt from Embed": "", "Confirm your action": "Bekræft din handling", "Confirm your new password": "Bekræft dit nye password", "Confirm Your Password": "Bekræft dit password", @@ -386,6 +392,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "Opret forbindelse til din egen OpenAI kompatible API endpoints.", "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 successful": "Forbindelse lykkedes", "Connection Type": "Forbindelsestype", @@ -426,6 +433,7 @@ "Copying to clipboard was successful!": "Kopieret til udklipsholder!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "CORS skal være korrekt konfigureret af udbyderen for at tillade anmodninger fra Open WebUI.", "Could not read file.": "", + "CPU": "", "Create": "Opret", "Create a knowledge base": "Opret en videnbase", "Create a model": "Lav en model", @@ -497,6 +505,7 @@ "Delete File": "", "Delete folder?": "Slet mappe?", "Delete function?": "Slet funktion?", + "Delete Memory?": "", "Delete Message": "Slet besked", "Delete message?": "Slet besked?", "Delete Model": "Slet model", @@ -510,6 +519,7 @@ "Deleted": "", "Deleted {{deleteModelTag}}": "Slettede {{deleteModelTag}}", "Deleted {{name}}": "Slettede {{name}}", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "Slettede bruger", "Deployment names are required for Azure OpenAI": "Deployment-navne er påkrævet for Azure OpenAI", "Desc": "", @@ -518,6 +528,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "Beskriv din videnbase og mål", "Description": "Beskrivelse", + "Deselect": "", "Detect Artifacts Automatically": "Genkend artifakter automatisk", "Dictate": "Dikter", "Didn't fully follow instructions": "Fulgte ikke instruktioner", @@ -780,6 +791,8 @@ "Enter Your Username": "Indtast dit brugernavn", "Enter your webhook URL": "Indtast din webhook URL", "Entra ID": "Entra ID", + "Environment Variables": "", + "Ephemeral": "", "Error": "Fejl", "ERROR": "FEJL", "Error accessing directory": "Fejl ved adgang til mappe", @@ -856,6 +869,7 @@ "Failed to save connections": "Kunne ikke gemme forbindelser", "Failed to save conversation": "Kunne ikke gemme samtalen", "Failed to save models configuration": "Kunne ikke gemme modeller konfiguration", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "Kunne ikke opdatere indstillinger", @@ -871,6 +885,7 @@ "Feedback History": "Feedback historik", "Feel free to add specific details": "Du er velkommen til at tilføje specifikke detaljer", "Female": "Kvinde", + "Fetch URL Content Length Limit": "", "File": "Fil", "File added successfully.": "Fil tilføjet.", "File attached to chat": "", @@ -925,6 +940,7 @@ "Format Lines": "Formatér linjer", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "Formatér linjerne i outputtet. Standardværdi er False. Hvis denne er sat til True vil linjerne blive formateret til at opdage inline matematik og styling.", "Formatting may be inconsistent from source.": "Formattering kan være inkonsekvent fra kilden.", + "Forward": "", "Forwards system user OAuth access token to authenticate": "Videresender system bruger OAuth access token til autentificering", "Forwards system user session credentials to authenticate": "Videresender system bruger session credentials til autentificering", "Full Context Mode": "Fuld kontekst tilstand", @@ -1012,6 +1028,7 @@ "ID": "ID", "ID cannot contain \":\" or \"|\" characters": "ID må ikke indeholde tegnene \":\" eller \"|\"", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "iframe Sandbox tillad formularer", "iframe Sandbox Allow Same Origin": "iframe Sandbox tillad samme oprindelse", "Ignite curiosity": "Antænd nysgerrighed", @@ -1182,6 +1199,7 @@ "Max Speakers": "Max talere", "Max Upload Count": "Maks. uploadantal", "Max Upload Size": "Maks. uploadstørrelse", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Højst 3 modeller kan downloades samtidigt. Prøv igen senere.", @@ -1213,6 +1231,7 @@ "Microsoft OneDrive": "Microsoft OneDrive", "Microsoft OneDrive (personal)": "Microsoft OneDrive (personlig)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (arbejde/skole)", + "min": "", "MinerU": "MinerU", "MinerU API Key required for Cloud API mode.": "MinerU API nøgle påkrævet for Cloud API tilstand.", "Mistral OCR": "Mistral OCR", @@ -1318,6 +1337,7 @@ "No kernel": "", "No knowledge bases found.": "", "No knowledge found": "Ingen viden fundet", + "No limit": "", "No memories to clear": "Ingen hukommelser at ryde", "No model IDs": "Ingen model-ID'er", "No models available": "", @@ -1390,6 +1410,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Ups! Du bruger en metode, der ikke understøttes (kun frontend). Kør WebUI fra backend.", "Open file": "Åbn fil", "Open in full screen": "Åbn i fuld skærm", + "Open in new tab": "", "Open link": "Åbn link", "Open modal to configure connection": "Åbn modal for at konfigurere forbindelse", "Open Modal To Manage Floating Quick Actions": "Åbn modal for at styre flydende hurtig-handlinger", @@ -1450,6 +1471,7 @@ "Perplexity Model": "Perplexity model", "Perplexity Search API URL": "Perplexity Search API URL", "Perplexity Search Context Usage": "Perplexity søgekontekst brug", + "Persistent": "", "Personalization": "Personalisering", "Pin": "Fastgør", "Pinned": "Fastgjort", @@ -1486,6 +1508,7 @@ "Please select a valid JSON file": "Vælg en valid JSON-fil", "Please select at least one user for Direct Message channel.": "Vælg mindst én bruger til direkte besked-kanal.", "Please wait until all files are uploaded.": "Vent venligst indtil alle filerne er uploadet.", + "Policy ID": "", "Port": "Port", "Ports": "", "Positive attitude": "Positiv holdning", @@ -1565,6 +1588,7 @@ "Remove image": "Fjern billede", "Remove Model": "Fjern model", "Rename": "Omdøb", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "Omarranger modeller", "Reply": "Svar", @@ -1630,6 +1654,7 @@ "Search Groups": "", "Search In Models": "Søg i modeller", "Search Knowledge": "Søg i viden", + "Search Memories": "", "Search Models": "Søg i modeller", "Search Notes": "Søg i noter", "Search options": "Søgemuligheder", @@ -1671,6 +1696,7 @@ "Select a theme": "Vælg et tema", "Select a tool": "Vælg et værktøj", "Select a voice": "Vælg en stemme", + "Select All": "", "Select an auth method": "Vælg en godkendelsesmetode", "Select an embedding model engine": "Vælg en embedding model engine", "Select an engine": "Vælg en engine", @@ -1699,6 +1725,7 @@ "Serper API Key": "Serper API-nøgle", "Serply API Key": "Serply API-nøgle", "Serpstack API Key": "Serpstack API-nøgle", + "Server connection failed": "", "Server connection verified": "Serverforbindelse bekræftet", "Session": "Session", "Set as default": "Indstil som standard", @@ -1800,6 +1827,7 @@ "Stop Download": "", "Stop Generating": "Stop generering", "Stop Sequence": "Stopsekvens", + "Storage": "", "Stream Chat Response": "Stream chatsvar", "Stream Delta Chunk Size": "Stream Delta Chunk Size", "Streamable HTTP": "Streamable HTTP", diff --git a/src/lib/i18n/locales/de-DE/translation.json b/src/lib/i18n/locales/de-DE/translation.json index 672f451bcf..03b1def775 100644 --- a/src/lib/i18n/locales/de-DE/translation.json +++ b/src/lib/i18n/locales/de-DE/translation.json @@ -17,6 +17,8 @@ "{{COUNT}} members": "{{COUNT}} Mitglieder", "{{COUNT}} Replies": "{{COUNT}} Antworten", "{{COUNT}} Rows": "{{COUNT}} Reihen", + "{{count}} selected_one": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "{{COUNT}} Quellen", "{{COUNT}} words": "{{COUNT}} Wörter", "{{COUNT}}d_time_ago": "{{COUNT}} T", @@ -127,6 +129,7 @@ "Allow File Upload": "Dateiupload erlauben", "Allow Multiple Models in Chat": "Mehrere Modelle im Chat erlauben", "Allow non-local voices": "Nicht-lokale Stimmen erlauben", + "Allow public write access": "", "Allow Rate Response": "Antwortbewertung erlauben", "Allow Regenerate Response": "Antwort-Neugenerierung erlauben", "Allow Sharing With Users": "Erlaube Teilen mit Nutzern", @@ -181,6 +184,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "Sind Sie sicher, dass Sie \"{{NAME}}\" löschen möchten?", "Are you sure you want to delete all chats? This action cannot be undone.": "Sind Sie sicher, dass Sie alle Chats löschen wollen? Dieser Vorgang kann nicht rückgängig gemacht werden.", "Are you sure you want to delete this channel?": "Sind Sie sicher, dass Sie diesen Kanal löschen möchten?", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "Sind Sie sicher, dass Sie diese Nachricht löschen möchten?", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "Sind Sie sicher, dass Sie diese Version löschen wollen? Child-Versionen werden zu dem Parent dieser Version verlinkt.", "Are you sure you want to delete this?": "", @@ -378,6 +383,7 @@ "Configure": "Konfigurieren", "Confirm": "Bestätigen", "Confirm Password": "Passwort bestätigen", + "Confirm Prompt from Embed": "", "Confirm your action": "Bitte bestätigen", "Confirm your new password": "Neues Passwort bestätigen", "Confirm Your Password": "Passwort bestätigen", @@ -386,6 +392,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "Verbinde zu Open Terminal Instanzen. AAlle Nutzer werden Zugriff auf die Dateien und Terminal Werkzeige durch diese Server bekommen.", "Connect to your own OpenAI compatible API endpoints.": "Verbinden Sie Ihre eigenen OpenAI-kompatiblen API-Endpunkte.", "Connect to your own OpenAPI compatible external tool servers.": "Verbinden Sie Ihre eigenen OpenAPI-kompatiblen externen Tool-Server.", + "Connected ({{type}})": "", "Connection failed": "Verbindung fehlgeschlagen", "Connection successful": "Verbindung erfolgreich", "Connection Type": "Verbindungstyp", @@ -426,6 +433,7 @@ "Copying to clipboard was successful!": "Erfolgreich in die Zwischenablage kopiert!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "CORS muss vom Anbieter korrekt konfiguriert sein, um Anfragen von Open WebUI zuzulassen.", "Could not read file.": "Datei konnte nicht gelesen werden.", + "CPU": "", "Create": "Erstellen", "Create a knowledge base": "Wissensspeicher erstellen", "Create a model": "Modell erstellen", @@ -497,6 +505,7 @@ "Delete File": "Datei löschen", "Delete folder?": "Ordner löschen?", "Delete function?": "Funktion löschen?", + "Delete Memory?": "", "Delete Message": "Nachricht löschen", "Delete message?": "Nachricht löschen?", "Delete Model": "Modell löschen", @@ -510,6 +519,7 @@ "Deleted": "Gelöscht", "Deleted {{deleteModelTag}}": "{{deleteModelTag}} gelöscht", "Deleted {{name}}": "{{name}} gelöscht", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "Gelöschter Benutzer", "Deployment names are required for Azure OpenAI": "Deployment-Namen sind für Azure OpenAI erforderlich", "Desc": "Absteigend", @@ -518,6 +528,7 @@ "Describe what changed...": "Beschreibe was sich verändert hat...", "Describe your knowledge base and objectives": "Beschreiben Sie Ihren Wissensspeicher und Ziele", "Description": "Beschreibung", + "Deselect": "", "Detect Artifacts Automatically": "Artefakte automatisch erkennen", "Dictate": "Diktieren", "Didn't fully follow instructions": "Anweisungen nicht vollständig befolgt", @@ -780,6 +791,8 @@ "Enter Your Username": "Ihren Benutzernamen eingeben", "Enter your webhook URL": "Webhook-URL eingeben", "Entra ID": "Entra ID", + "Environment Variables": "", + "Ephemeral": "", "Error": "Fehler", "ERROR": "FEHLER", "Error accessing directory": "Fehler beim Zugriff auf das Verzeichnis", @@ -856,6 +869,7 @@ "Failed to save connections": "Verbindungen konnten nicht gespeichert werden", "Failed to save conversation": "Unterhaltung konnte nicht gespeichert werden", "Failed to save models configuration": "Modellkonfiguration konnte nicht gespeichert werden", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "Terminal Server konnten nicht gespeichert werden", "Failed to unshare chat.": "Chat-Freigabe konnte nicht entfernt werden", "Failed to update settings": "Einstellungen konnten nicht aktualisiert werden", @@ -871,6 +885,7 @@ "Feedback History": "Feedback-Verlauf", "Feel free to add specific details": "Fügen Sie gerne Details hinzu", "Female": "Weiblich", + "Fetch URL Content Length Limit": "", "File": "Datei", "File added successfully.": "Datei erfolgreich hinzugefügt.", "File attached to chat": "Datei in Chat hinzugefügt", @@ -925,6 +940,7 @@ "Format Lines": "Zeilen formatieren", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "Formatiert Zeilen in der Ausgabe (z. B. Mathe, Stile). Standard: False.", "Formatting may be inconsistent from source.": "Formatierung kann von der Quelle abweichen.", + "Forward": "", "Forwards system user OAuth access token to authenticate": "Leitet OAuth-Zugriffstoken des Systembenutzers zur Authentifizierung weiter", "Forwards system user session credentials to authenticate": "Leitet Sitzungsdaten des Systembenutzers zur Authentifizierung weiter", "Full Context Mode": "Vollkontext-Modus", @@ -1012,6 +1028,7 @@ "ID": "ID", "ID cannot contain \":\" or \"|\" characters": "ID darf keine \":\" oder \"|\" Zeichen enthalten", "ID copied to clipboard": "ID in die Zwischenablage kopiert", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "iFrame Sandbox: Formulare erlauben", "iframe Sandbox Allow Same Origin": "iFrame Sandbox: Gleichen Ursprung erlauben", "Ignite curiosity": "Neugier wecken", @@ -1182,6 +1199,7 @@ "Max Speakers": "Max. Sprecher", "Max Upload Count": "Max. Anzahl Uploads", "Max Upload Size": "Max. Uploadgröße", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "Maximale Anzahl der pro Ordner erlaubten Dateien.", "Maximum number of files per folder is {{max}}.": "Die maximale Anzahl der Dateien pro Ordner ist {{max}}.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Es können maximal 3 Modelle gleichzeitig heruntergeladen werden. Bitte versuchen Sie es später erneut.", @@ -1213,6 +1231,7 @@ "Microsoft OneDrive": "Microsoft OneDrive", "Microsoft OneDrive (personal)": "Microsoft OneDrive (persönlich)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (Arbeit/Schule)", + "min": "", "MinerU": "MinerU", "MinerU API Key required for Cloud API mode.": "MinerU-API-Schlüssel für den Cloud-API-Modus erforderlich.", "Mistral OCR": "Mistral OCR", @@ -1318,6 +1337,7 @@ "No kernel": "Kein Kernel", "No knowledge bases found.": "Keine Wissensspeicher gefunden.", "No knowledge found": "Kein Wissen gefunden", + "No limit": "", "No memories to clear": "Keine Erinnerungen zum Löschen", "No model IDs": "Keine Modell-IDs", "No models available": "Keine Modelle verfügbar", @@ -1390,6 +1410,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Ups! Sie verwenden eine nicht unterstützte Methode (nur Frontend). Bitte stellen Sie die WebUI über das Backend bereit.", "Open file": "Datei öffnen", "Open in full screen": "Im Vollbildmodus öffnen", + "Open in new tab": "", "Open link": "Link öffnen", "Open modal to configure connection": "Verbindungskonfiguration öffnen", "Open Modal To Manage Floating Quick Actions": "Verwaltung der Schnellaktionen öffnen", @@ -1450,6 +1471,7 @@ "Perplexity Model": "Perplexity-Modell", "Perplexity Search API URL": "Perplexity Search API-URL", "Perplexity Search Context Usage": "Perplexity-Suchkontext-Nutzung", + "Persistent": "", "Personalization": "Personalisierung", "Pin": "Anheften", "Pinned": "Angeheftet", @@ -1486,6 +1508,7 @@ "Please select a valid JSON file": "Bitte wählen Sie eine gültige JSON-Datei aus", "Please select at least one user for Direct Message channel.": "Bitte wählen Sie mindestens einen Benutzer für den Direktnachrichten-Kanal aus.", "Please wait until all files are uploaded.": "Bitte warten Sie, bis alle Dateien hochgeladen sind.", + "Policy ID": "", "Port": "Port", "Ports": "Ports", "Positive attitude": "Positive Einstellung", @@ -1565,6 +1588,7 @@ "Remove image": "Bild entfernen", "Remove Model": "Modell entfernen", "Rename": "Umbenennen", + "Renamed to {{name}}": "", "Render Markdown in Previews": "Markdown in der Vorschau rendern", "Reorder Models": "Modelle neu anordnen", "Reply": "Antworten", @@ -1630,6 +1654,7 @@ "Search Groups": "Gruppen durchsuchen", "Search In Models": "In Modellen suchen...", "Search Knowledge": "Wissen durchsuchen", + "Search Memories": "", "Search Models": "Modelle durchsuchen...", "Search Notes": "Notizen durchsuchen...", "Search options": "Suchoptionen", @@ -1671,6 +1696,7 @@ "Select a theme": "Wählen Sie ein Design", "Select a tool": "Wählen Sie ein Werkzeug", "Select a voice": "Wählen Sie eine Stimme", + "Select All": "", "Select an auth method": "Wählen Sie eine Authentifizierungsmethode", "Select an embedding model engine": "Wählen Sie eine Embedding-Modell-Engine", "Select an engine": "Wählen Sie eine Engine", @@ -1699,6 +1725,7 @@ "Serper API Key": "Serper-API-Schlüssel", "Serply API Key": "Serply-API-Schlüssel", "Serpstack API Key": "Serpstack-API-Schlüssel", + "Server connection failed": "", "Server connection verified": "Serververbindung überprüft", "Session": "Sitzung", "Set as default": "Als Standard festlegen", @@ -1800,6 +1827,7 @@ "Stop Download": "Download stoppen", "Stop Generating": "Generierung stoppen", "Stop Sequence": "Stoppsequenz", + "Storage": "", "Stream Chat Response": "Chat-Antwort streamen", "Stream Delta Chunk Size": "Stream-Delta-Chunk-Größe", "Streamable HTTP": "Streambares HTTP", diff --git a/src/lib/i18n/locales/dg-DG/translation.json b/src/lib/i18n/locales/dg-DG/translation.json index 11ebfa8b75..0f0dcf3a90 100644 --- a/src/lib/i18n/locales/dg-DG/translation.json +++ b/src/lib/i18n/locales/dg-DG/translation.json @@ -17,6 +17,8 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "", "{{COUNT}} Rows": "", + "{{count}} selected_one": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", "{{COUNT}}d_time_ago": "", @@ -127,6 +129,7 @@ "Allow File Upload": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "", + "Allow public write access": "", "Allow Rate Response": "", "Allow Regenerate Response": "", "Allow Sharing With Users": "", @@ -181,6 +184,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +383,7 @@ "Configure": "", "Confirm": "", "Confirm Password": "Confirm Password", + "Confirm Prompt from Embed": "", "Confirm your action": "", "Confirm your new password": "", "Confirm Your Password": "", @@ -386,6 +392,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAPI compatible external tool servers.": "", + "Connected ({{type}})": "", "Connection failed": "", "Connection successful": "", "Connection Type": "", @@ -426,6 +433,7 @@ "Copying to clipboard was successful!": "Copying to clipboard was success! Very success!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "", "Could not read file.": "", + "CPU": "", "Create": "", "Create a knowledge base": "", "Create a model": "", @@ -497,6 +505,7 @@ "Delete File": "", "Delete folder?": "", "Delete function?": "", + "Delete Memory?": "", "Delete Message": "", "Delete message?": "", "Delete Model": "", @@ -510,6 +519,7 @@ "Deleted": "", "Deleted {{deleteModelTag}}": "Deleted {{deleteModelTag}}", "Deleted {{name}}": "", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "", "Deployment names are required for Azure OpenAI": "", "Desc": "", @@ -518,6 +528,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "", "Description": "Description", + "Deselect": "", "Detect Artifacts Automatically": "", "Dictate": "", "Didn't fully follow instructions": "", @@ -780,6 +791,8 @@ "Enter Your Username": "", "Enter your webhook URL": "", "Entra ID": "", + "Environment Variables": "", + "Ephemeral": "", "Error": "", "ERROR": "", "Error accessing directory": "", @@ -856,6 +869,7 @@ "Failed to save connections": "", "Failed to save conversation": "Failed to save conversation borks", "Failed to save models configuration": "", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "", @@ -871,6 +885,7 @@ "Feedback History": "", "Feel free to add specific details": "", "Female": "", + "Fetch URL Content Length Limit": "", "File": "", "File added successfully.": "", "File attached to chat": "", @@ -925,6 +940,7 @@ "Format Lines": "", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "", "Formatting may be inconsistent from source.": "", + "Forward": "", "Forwards system user OAuth access token to authenticate": "", "Forwards system user session credentials to authenticate": "", "Full Context Mode": "", @@ -1012,6 +1028,7 @@ "ID": "", "ID cannot contain \":\" or \"|\" characters": "", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "", "iframe Sandbox Allow Same Origin": "", "Ignite curiosity": "", @@ -1182,6 +1199,7 @@ "Max Speakers": "", "Max Upload Count": "", "Max Upload Size": "", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maximum of 3 models can be downloaded simultaneously. Please try again later.", @@ -1213,6 +1231,7 @@ "Microsoft OneDrive": "", "Microsoft OneDrive (personal)": "", "Microsoft OneDrive (work/school)": "", + "min": "", "MinerU": "", "MinerU API Key required for Cloud API mode.": "", "Mistral OCR": "", @@ -1318,6 +1337,7 @@ "No kernel": "", "No knowledge bases found.": "", "No knowledge found": "", + "No limit": "", "No memories to clear": "", "No model IDs": "", "No models available": "", @@ -1390,6 +1410,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.", "Open file": "", "Open in full screen": "", + "Open in new tab": "", "Open link": "", "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", @@ -1450,6 +1471,7 @@ "Perplexity Model": "", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "", + "Persistent": "", "Personalization": "Personalization", "Pin": "", "Pinned": "", @@ -1486,6 +1508,7 @@ "Please select a valid JSON file": "", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "", + "Policy ID": "", "Port": "", "Ports": "", "Positive attitude": "", @@ -1565,6 +1588,7 @@ "Remove image": "", "Remove Model": "", "Rename": "", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "", "Reply": "", @@ -1630,6 +1654,7 @@ "Search Groups": "", "Search In Models": "", "Search Knowledge": "", + "Search Memories": "", "Search Models": "", "Search Notes": "", "Search options": "", @@ -1671,6 +1696,7 @@ "Select a theme": "", "Select a tool": "", "Select a voice": "", + "Select All": "", "Select an auth method": "", "Select an embedding model engine": "", "Select an engine": "", @@ -1699,6 +1725,7 @@ "Serper API Key": "", "Serply API Key": "", "Serpstack API Key": "", + "Server connection failed": "", "Server connection verified": "Server connection verified much secure", "Session": "", "Set as default": "Set as default very default", @@ -1800,6 +1827,7 @@ "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Stop Sequence much stop", + "Storage": "", "Stream Chat Response": "", "Stream Delta Chunk Size": "", "Streamable HTTP": "", diff --git a/src/lib/i18n/locales/el-GR/translation.json b/src/lib/i18n/locales/el-GR/translation.json index d017f2531e..0f3d9c20eb 100644 --- a/src/lib/i18n/locales/el-GR/translation.json +++ b/src/lib/i18n/locales/el-GR/translation.json @@ -17,6 +17,8 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "", "{{COUNT}} Rows": "", + "{{count}} selected_one": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", "{{COUNT}}d_time_ago": "", @@ -127,6 +129,7 @@ "Allow File Upload": "Επιτρέπεται το Ανέβασμα Αρχείων", "Allow Multiple Models in Chat": "Επιτρέπεται η χρήση πολλαπλών μοντέλων στη συνομιλία", "Allow non-local voices": "Επιτρέπονται μη τοπικές φωνές", + "Allow public write access": "", "Allow Rate Response": "Επιτρέπεται η Αξιολόγηση Απάντησης", "Allow Regenerate Response": "Επιτρέπεται η Επαναδημιουργία Απάντησης", "Allow Sharing With Users": "", @@ -181,6 +184,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το κανάλι;", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το μήνυμα;", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +383,7 @@ "Configure": "Διαμόρφωση", "Confirm": "Επιβεβαίωση", "Confirm Password": "Επιβεβαίωση Κωδικού", + "Confirm Prompt from Embed": "", "Confirm your action": "Επιβεβαιώστε την ενέργειά σας", "Confirm your new password": "Επιβεβαιώστε τον νέο σας κωδικό", "Confirm Your Password": "Επιβεβαιώστε τον Κωδικό σας", @@ -386,6 +392,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAPI compatible external tool servers.": "Συνδεθείτε στους δικούς σας διακομιστές εξωτερικών εργαλείων συμβατών με OpenAPI.", + "Connected ({{type}})": "", "Connection failed": "Σύνδεση απέτυχε", "Connection successful": "Σύνδεση επιτυχής", "Connection Type": "Είδος Σύνδεσης", @@ -426,6 +433,7 @@ "Copying to clipboard was successful!": "Η αντιγραφή στο πρόχειρο ήταν επιτυχής!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "", "Could not read file.": "", + "CPU": "", "Create": "Δημιουργία", "Create a knowledge base": "Δημιουργία βάσης γνώσης", "Create a model": "Δημιουργία μοντέλου", @@ -497,6 +505,7 @@ "Delete File": "", "Delete folder?": "Διαγραφή φακέλου;", "Delete function?": "Διαγραφή λειτουργίας;", + "Delete Memory?": "", "Delete Message": "Διαγραφή Μηνύματος", "Delete message?": "Διαγραφή μηνύματος;", "Delete Model": "Διαγραφή Μοντέλου", @@ -510,6 +519,7 @@ "Deleted": "", "Deleted {{deleteModelTag}}": "Διαγράφηκε το {{deleteModelTag}}", "Deleted {{name}}": "Διαγράφηκε το {{name}}", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "Διαγράφηκε ο Χρήστης", "Deployment names are required for Azure OpenAI": "", "Desc": "", @@ -518,6 +528,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "Περιγράψτε τη βάση γνώσης και τους στόχους σας", "Description": "Περιγραφή", + "Deselect": "", "Detect Artifacts Automatically": "", "Dictate": "Υπαγόρευση", "Didn't fully follow instructions": "Δεν ακολούθησε πλήρως τις οδηγίες", @@ -780,6 +791,8 @@ "Enter Your Username": "Εισάγετε το Όνομα Χρήστη σας", "Enter your webhook URL": "Εισάγετε το URL του webhook σας", "Entra ID": "Εισάγετε το ID", + "Environment Variables": "", + "Ephemeral": "", "Error": "Σφάλμα", "ERROR": "ΣΦΑΛΜΑ", "Error accessing directory": "", @@ -856,6 +869,7 @@ "Failed to save connections": "Αποτυχία αποθήκευσης συνδέσεων", "Failed to save conversation": "Αποτυχία αποθήκευσης συνομιλίας", "Failed to save models configuration": "Αποτυχία αποθήκευσης ρυθμίσεων μοντέλων", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "Αποτυχία ενημέρωσης ρυθμίσεων", @@ -871,6 +885,7 @@ "Feedback History": "Ιστορικό Ανατροφοδότησης", "Feel free to add specific details": "Νιώστε ελεύθεροι να προσθέσετε συγκεκριμένες λεπτομέρειες", "Female": "Γυναίκα", + "Fetch URL Content Length Limit": "", "File": "Αρχείο", "File added successfully.": "Το αρχείο προστέθηκε με επιτυχία.", "File attached to chat": "", @@ -925,6 +940,7 @@ "Format Lines": "", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "", "Formatting may be inconsistent from source.": "", + "Forward": "", "Forwards system user OAuth access token to authenticate": "", "Forwards system user session credentials to authenticate": "", "Full Context Mode": "Λειτουργία χρήσης όλων των συμφραζομένων", @@ -1012,6 +1028,7 @@ "ID": "ID", "ID cannot contain \":\" or \"|\" characters": "", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "", "iframe Sandbox Allow Same Origin": "", "Ignite curiosity": "Ξύπνημα της περιέργειας", @@ -1182,6 +1199,7 @@ "Max Speakers": "Μέγιστο Πλήθος Ομιλητών", "Max Upload Count": "Μέγιστος Αριθμός Ανεβάσματος", "Max Upload Size": "Μέγιστο Μέγεθος Αρχείου", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Μέγιστο των 3 μοντέλων μπορούν να κατεβούν ταυτόχρονα. Παρακαλώ δοκιμάστε ξανά αργότερα.", @@ -1213,6 +1231,7 @@ "Microsoft OneDrive": "", "Microsoft OneDrive (personal)": "", "Microsoft OneDrive (work/school)": "", + "min": "", "MinerU": "", "MinerU API Key required for Cloud API mode.": "", "Mistral OCR": "", @@ -1318,6 +1337,7 @@ "No kernel": "", "No knowledge bases found.": "", "No knowledge found": "Δεν βρέθηκε Knowledge", + "No limit": "", "No memories to clear": "", "No model IDs": "Δεν υπάρχουν IDs μοντέλων", "No models available": "", @@ -1390,6 +1410,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Ωχ! Χρησιμοποιείτε μια μη υποστηριζόμενη μέθοδο (μόνο frontend). Παρακαλώ σερβίρετε το WebUI από το backend.", "Open file": "Άνοιγμα αρχείου", "Open in full screen": "Άνοιγμα σε πλήρη οθόνη", + "Open in new tab": "", "Open link": "Άνοιγμα συνδέσμου", "Open modal to configure connection": "Άνοιγμα παραθύρου διαλόγου για διαχείριση σύνδεσης", "Open Modal To Manage Floating Quick Actions": "", @@ -1450,6 +1471,7 @@ "Perplexity Model": "Perplexity Μοντέλο", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "", + "Persistent": "", "Personalization": "Προσωποποίηση", "Pin": "Καρφίτσωμα", "Pinned": "Καρφιτσωμένο", @@ -1486,6 +1508,7 @@ "Please select a valid JSON file": "", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "", + "Policy ID": "", "Port": "Θύρα", "Ports": "", "Positive attitude": "Θετική στάση", @@ -1565,6 +1588,7 @@ "Remove image": "Αφαίρεση εικόνας", "Remove Model": "Αφαίρεση Μοντέλου", "Rename": "Μετονομασία", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "Επαναταξινόμηση Μοντέλων", "Reply": "Απάντηση", @@ -1630,6 +1654,7 @@ "Search Groups": "", "Search In Models": "Αναζήτηση στα Μοντέλα", "Search Knowledge": "Αναζήτηση Knowledge", + "Search Memories": "", "Search Models": "Αναζήτηση Μοντέλων", "Search Notes": "Αναζήτηση Σημειώσεων", "Search options": "Επιλογές Αναζήτησης", @@ -1671,6 +1696,7 @@ "Select a theme": "Επιλέξτε ένα θέμα", "Select a tool": "Επιλέξτε ένα εργαλείο", "Select a voice": "Επιλέξτε μια φωνή", + "Select All": "", "Select an auth method": "Επιλέξτε μια μέθοδο ταυτοποίησης", "Select an embedding model engine": "", "Select an engine": "Επιλέξτε μια μηχανή", @@ -1699,6 +1725,7 @@ "Serper API Key": "Κλειδί API Serper", "Serply API Key": "Κλειδί API Serply", "Serpstack API Key": "Κλειδί API Serpstack", + "Server connection failed": "", "Server connection verified": "Η σύνδεση διακομιστή επαληθεύθηκε", "Session": "", "Set as default": "Ορισμός ως προεπιλογή", @@ -1800,6 +1827,7 @@ "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Σειρά Παύσης", + "Storage": "", "Stream Chat Response": "Ροή Δεδομένων Απαντήσεων", "Stream Delta Chunk Size": "Δέλτα Μεγέθους Τμήματος Ροής", "Streamable HTTP": "", diff --git a/src/lib/i18n/locales/en-GB/translation.json b/src/lib/i18n/locales/en-GB/translation.json index 8738a4e69a..dd996a0bec 100644 --- a/src/lib/i18n/locales/en-GB/translation.json +++ b/src/lib/i18n/locales/en-GB/translation.json @@ -17,6 +17,8 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "", "{{COUNT}} Rows": "", + "{{count}} selected_one": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", "{{COUNT}}d_time_ago": "", @@ -127,6 +129,7 @@ "Allow File Upload": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "", + "Allow public write access": "", "Allow Rate Response": "", "Allow Regenerate Response": "", "Allow Sharing With Users": "", @@ -181,6 +184,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +383,7 @@ "Configure": "", "Confirm": "", "Confirm Password": "", + "Confirm Prompt from Embed": "", "Confirm your action": "", "Confirm your new password": "", "Confirm Your Password": "", @@ -386,6 +392,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAPI compatible external tool servers.": "", + "Connected ({{type}})": "", "Connection failed": "", "Connection successful": "", "Connection Type": "", @@ -426,6 +433,7 @@ "Copying to clipboard was successful!": "", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "", "Could not read file.": "", + "CPU": "", "Create": "", "Create a knowledge base": "", "Create a model": "", @@ -497,6 +505,7 @@ "Delete File": "", "Delete folder?": "", "Delete function?": "", + "Delete Memory?": "", "Delete Message": "", "Delete message?": "", "Delete Model": "", @@ -510,6 +519,7 @@ "Deleted": "", "Deleted {{deleteModelTag}}": "", "Deleted {{name}}": "", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "", "Deployment names are required for Azure OpenAI": "", "Desc": "", @@ -518,6 +528,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "", "Description": "", + "Deselect": "", "Detect Artifacts Automatically": "", "Dictate": "", "Didn't fully follow instructions": "", @@ -780,6 +791,8 @@ "Enter Your Username": "", "Enter your webhook URL": "", "Entra ID": "", + "Environment Variables": "", + "Ephemeral": "", "Error": "", "ERROR": "", "Error accessing directory": "", @@ -856,6 +869,7 @@ "Failed to save connections": "", "Failed to save conversation": "", "Failed to save models configuration": "", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "", @@ -871,6 +885,7 @@ "Feedback History": "", "Feel free to add specific details": "", "Female": "", + "Fetch URL Content Length Limit": "", "File": "", "File added successfully.": "", "File attached to chat": "", @@ -925,6 +940,7 @@ "Format Lines": "", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "", "Formatting may be inconsistent from source.": "", + "Forward": "", "Forwards system user OAuth access token to authenticate": "", "Forwards system user session credentials to authenticate": "", "Full Context Mode": "", @@ -1012,6 +1028,7 @@ "ID": "", "ID cannot contain \":\" or \"|\" characters": "", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "", "iframe Sandbox Allow Same Origin": "", "Ignite curiosity": "", @@ -1182,6 +1199,7 @@ "Max Speakers": "", "Max Upload Count": "", "Max Upload Size": "", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "", @@ -1213,6 +1231,7 @@ "Microsoft OneDrive": "", "Microsoft OneDrive (personal)": "", "Microsoft OneDrive (work/school)": "", + "min": "", "MinerU": "", "MinerU API Key required for Cloud API mode.": "", "Mistral OCR": "", @@ -1318,6 +1337,7 @@ "No kernel": "", "No knowledge bases found.": "", "No knowledge found": "", + "No limit": "", "No memories to clear": "", "No model IDs": "", "No models available": "", @@ -1390,6 +1410,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "", "Open file": "", "Open in full screen": "", + "Open in new tab": "", "Open link": "", "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", @@ -1450,6 +1471,7 @@ "Perplexity Model": "", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "", + "Persistent": "", "Personalization": "Personalisation", "Pin": "", "Pinned": "", @@ -1486,6 +1508,7 @@ "Please select a valid JSON file": "", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "", + "Policy ID": "", "Port": "", "Ports": "", "Positive attitude": "", @@ -1565,6 +1588,7 @@ "Remove image": "", "Remove Model": "", "Rename": "", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "", "Reply": "", @@ -1630,6 +1654,7 @@ "Search Groups": "", "Search In Models": "", "Search Knowledge": "", + "Search Memories": "", "Search Models": "", "Search Notes": "", "Search options": "", @@ -1671,6 +1696,7 @@ "Select a theme": "", "Select a tool": "", "Select a voice": "", + "Select All": "", "Select an auth method": "", "Select an embedding model engine": "", "Select an engine": "", @@ -1699,6 +1725,7 @@ "Serper API Key": "", "Serply API Key": "", "Serpstack API Key": "", + "Server connection failed": "", "Server connection verified": "", "Session": "", "Set as default": "", @@ -1800,6 +1827,7 @@ "Stop Download": "", "Stop Generating": "", "Stop Sequence": "", + "Storage": "", "Stream Chat Response": "", "Stream Delta Chunk Size": "", "Streamable HTTP": "", diff --git a/src/lib/i18n/locales/en-US/translation.json b/src/lib/i18n/locales/en-US/translation.json index 40b81d8712..e748261a9d 100644 --- a/src/lib/i18n/locales/en-US/translation.json +++ b/src/lib/i18n/locales/en-US/translation.json @@ -17,6 +17,8 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "", "{{COUNT}} Rows": "", + "{{count}} selected_one": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", "{{COUNT}}d_time_ago": "", @@ -127,6 +129,7 @@ "Allow File Upload": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "", + "Allow public write access": "", "Allow Rate Response": "", "Allow Regenerate Response": "", "Allow Sharing With Users": "", @@ -181,6 +184,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +383,7 @@ "Configure": "", "Confirm": "", "Confirm Password": "", + "Confirm Prompt from Embed": "", "Confirm your action": "", "Confirm your new password": "", "Confirm Your Password": "", @@ -386,6 +392,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAPI compatible external tool servers.": "", + "Connected ({{type}})": "", "Connection failed": "", "Connection successful": "", "Connection Type": "", @@ -426,6 +433,7 @@ "Copying to clipboard was successful!": "", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "", "Could not read file.": "", + "CPU": "", "Create": "", "Create a knowledge base": "", "Create a model": "", @@ -497,6 +505,7 @@ "Delete File": "", "Delete folder?": "", "Delete function?": "", + "Delete Memory?": "", "Delete Message": "", "Delete message?": "", "Delete Model": "", @@ -510,6 +519,7 @@ "Deleted": "", "Deleted {{deleteModelTag}}": "", "Deleted {{name}}": "", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "", "Deployment names are required for Azure OpenAI": "", "Desc": "", @@ -518,6 +528,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "", "Description": "", + "Deselect": "", "Detect Artifacts Automatically": "", "Dictate": "", "Didn't fully follow instructions": "", @@ -780,6 +791,8 @@ "Enter Your Username": "", "Enter your webhook URL": "", "Entra ID": "", + "Environment Variables": "", + "Ephemeral": "", "Error": "", "ERROR": "", "Error accessing directory": "", @@ -856,6 +869,7 @@ "Failed to save connections": "", "Failed to save conversation": "", "Failed to save models configuration": "", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "", @@ -871,6 +885,7 @@ "Feedback History": "", "Feel free to add specific details": "", "Female": "", + "Fetch URL Content Length Limit": "", "File": "", "File added successfully.": "", "File attached to chat": "", @@ -925,6 +940,7 @@ "Format Lines": "", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "", "Formatting may be inconsistent from source.": "", + "Forward": "", "Forwards system user OAuth access token to authenticate": "", "Forwards system user session credentials to authenticate": "", "Full Context Mode": "", @@ -1012,6 +1028,7 @@ "ID": "", "ID cannot contain \":\" or \"|\" characters": "", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "", "iframe Sandbox Allow Same Origin": "", "Ignite curiosity": "", @@ -1182,6 +1199,7 @@ "Max Speakers": "", "Max Upload Count": "", "Max Upload Size": "", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "", @@ -1213,6 +1231,7 @@ "Microsoft OneDrive": "", "Microsoft OneDrive (personal)": "", "Microsoft OneDrive (work/school)": "", + "min": "", "MinerU": "", "MinerU API Key required for Cloud API mode.": "", "Mistral OCR": "", @@ -1318,6 +1337,7 @@ "No kernel": "", "No knowledge bases found.": "", "No knowledge found": "", + "No limit": "", "No memories to clear": "", "No model IDs": "", "No models available": "", @@ -1390,6 +1410,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "", "Open file": "", "Open in full screen": "", + "Open in new tab": "", "Open link": "", "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", @@ -1450,6 +1471,7 @@ "Perplexity Model": "", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "", + "Persistent": "", "Personalization": "", "Pin": "", "Pinned": "", @@ -1486,6 +1508,7 @@ "Please select a valid JSON file": "", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "", + "Policy ID": "", "Port": "", "Ports": "", "Positive attitude": "", @@ -1565,6 +1588,7 @@ "Remove image": "", "Remove Model": "", "Rename": "", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "", "Reply": "", @@ -1630,6 +1654,7 @@ "Search Groups": "", "Search In Models": "", "Search Knowledge": "", + "Search Memories": "", "Search Models": "", "Search Notes": "", "Search options": "", @@ -1671,6 +1696,7 @@ "Select a theme": "", "Select a tool": "", "Select a voice": "", + "Select All": "", "Select an auth method": "", "Select an embedding model engine": "", "Select an engine": "", @@ -1699,6 +1725,7 @@ "Serper API Key": "", "Serply API Key": "", "Serpstack API Key": "", + "Server connection failed": "", "Server connection verified": "", "Session": "", "Set as default": "", @@ -1800,6 +1827,7 @@ "Stop Download": "", "Stop Generating": "", "Stop Sequence": "", + "Storage": "", "Stream Chat Response": "", "Stream Delta Chunk Size": "", "Streamable HTTP": "", diff --git a/src/lib/i18n/locales/es-ES/translation.json b/src/lib/i18n/locales/es-ES/translation.json index 289d5f38d6..ca92bbbca1 100644 --- a/src/lib/i18n/locales/es-ES/translation.json +++ b/src/lib/i18n/locales/es-ES/translation.json @@ -17,6 +17,9 @@ "{{COUNT}} members": "{{COUNT}} miembros", "{{COUNT}} Replies": "{{COUNT}} Respuestas", "{{COUNT}} Rows": "{{COUNT}} filas", + "{{count}} selected_one": "", + "{{count}} selected_many": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "{{COUNT}} Fuentes", "{{COUNT}} words": "{{COUNT}} palabras", "{{COUNT}}d_time_ago": "", @@ -127,6 +130,7 @@ "Allow File Upload": "Permitir Subida de Archivos", "Allow Multiple Models in Chat": "Permitir Chat con Múltiples Modelos", "Allow non-local voices": "Permitir voces no locales", + "Allow public write access": "", "Allow Rate Response": "Permitir Calificar Respuesta", "Allow Regenerate Response": "Permitir Regenerar Respuesta", "Allow Sharing With Users": "", @@ -181,6 +185,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "¿Seguro de que quieres eliminar \"{{NAME}}\"?", "Are you sure you want to delete all chats? This action cannot be undone.": "¿Seguro que quieres borrar todos los chats? Esta acción no se puede deshacer.", "Are you sure you want to delete this channel?": "¿Seguro de que quieres eliminar este canal?", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "¿Seguro de que quieres eliminar este mensaje? ", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "¿Seguro que desea eliminar esta versión? Las versiones secundarias se vincularán a la versión principal de esta.", "Are you sure you want to delete this?": "", @@ -378,6 +384,7 @@ "Configure": "Configurar", "Confirm": "Confirmar", "Confirm Password": "Confirma Contraseña", + "Confirm Prompt from Embed": "", "Confirm your action": "Confirma tu acción", "Confirm your new password": "Confirma tu nueva contraseña", "Confirm Your Password": "Confirma Tu Contraseña", @@ -386,6 +393,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "Conectar a tus propios API endpoints compatibles con OpenAI.", "Connect to your own OpenAPI compatible external tool servers.": "Conectar a tus propios endpoints externos de herramientas compatibles con OpenAPI.", + "Connected ({{type}})": "", "Connection failed": "Conexión fallida", "Connection successful": "Conexión realizada", "Connection Type": "Tipo de Conexión", @@ -426,6 +434,7 @@ "Copying to clipboard was successful!": "¡La copia al portapapeles se ha realizado correctamente!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "El protocolo CORS debe estar configurado correctamente por el proveedor para permitir solicitudes desde Open WebUI.", "Could not read file.": "", + "CPU": "", "Create": "Crear", "Create a knowledge base": "Crea una Base de Conocimiento", "Create a model": "Crea un modelo", @@ -497,6 +506,7 @@ "Delete File": "Borrar Fichero", "Delete folder?": "¿Borrar carpeta?", "Delete function?": "Borrar la función?", + "Delete Memory?": "", "Delete Message": "Borrar mensaje", "Delete message?": "¿Borrar mensaje?", "Delete Model": "Borrar Modelo", @@ -510,6 +520,7 @@ "Deleted": "Borrado", "Deleted {{deleteModelTag}}": "{{deleteModelTag}} Borrado", "Deleted {{name}}": "{{nombre}} Borrado", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "Usuario Borrado", "Deployment names are required for Azure OpenAI": "Azure OpenAI requiere nombres de implementación", "Desc": "Desc", @@ -518,6 +529,7 @@ "Describe what changed...": "Describe lo cambiado...", "Describe your knowledge base and objectives": "Describe tu Base de Conocimientos y sus objetivos", "Description": "Descripción", + "Deselect": "", "Detect Artifacts Automatically": "Detectar Artefactos Automáticamente", "Dictate": "Dictar", "Didn't fully follow instructions": "No seguiste completamente las instrucciones", @@ -780,6 +792,8 @@ "Enter Your Username": "Ingresa tu nombre de usuario", "Enter your webhook URL": "Ingresa tu URL de webhook", "Entra ID": "ID de Entra", + "Environment Variables": "", + "Ephemeral": "", "Error": "Error", "ERROR": "ERROR", "Error accessing directory": "Error accediendo al directorio", @@ -856,6 +870,7 @@ "Failed to save connections": "Fallo al guardar las conexiones", "Failed to save conversation": "Fallo al guardar la conversación", "Failed to save models configuration": "Fallo al guardar la configuración de los modelos", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "Fallo al descompartir chat.", "Failed to update settings": "Fallo al actualizar los ajustes", @@ -871,6 +886,7 @@ "Feedback History": "Historia de la Opiniones", "Feel free to add specific details": "Añade libremente detalles específicos", "Female": "Mujer", + "Fetch URL Content Length Limit": "", "File": "Archivo", "File added successfully.": "Archivo añadido correctamente.", "File attached to chat": "", @@ -925,6 +941,7 @@ "Format Lines": "Formatear Líneas", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "Formatear las lineas en la salida. Por defecto, False. Si la opción es True, las líneas se formatearán detectando estilos e 'inline math'", "Formatting may be inconsistent from source.": "El formato puede ser inconsistente con el original", + "Forward": "", "Forwards system user OAuth access token to authenticate": "Reenvía el token de acceso OAuth del usuario del sistema para autenticarse", "Forwards system user session credentials to authenticate": "Reenvío de las credenciales de la sesión del usuario del sistema para autenticación", "Full Context Mode": "Modo Contexto Completo", @@ -1012,6 +1029,7 @@ "ID": "ID", "ID cannot contain \":\" or \"|\" characters": "ID no puede contener los caracteres \":\" o \"|\"", "ID copied to clipboard": "ID copiado al portapapeles", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "iframe Sandbox Allow Forms", "iframe Sandbox Allow Same Origin": "iframe Sandbox Allow Same Origin", "Ignite curiosity": "Encender la curiosidad", @@ -1182,6 +1200,7 @@ "Max Speakers": "Max Interlocutores", "Max Upload Count": "Número Max de Subidas", "Max Upload Size": "Tamaño Max de Subidas", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "Número máximo de archivos permitidos por carpeta", "Maximum number of files per folder is {{max}}.": "El número máximo de archivos permitidos por carpeta es {{max}}.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Se puede descargar un máximo de 3 modelos simultáneamente. Por favor, reinténtelo más tarde.", @@ -1213,6 +1232,7 @@ "Microsoft OneDrive": "Microsoft OneDrive", "Microsoft OneDrive (personal)": "Microsoft OneDrive (personal)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (trabajo/estudio)", + "min": "", "MinerU": "MinerU", "MinerU API Key required for Cloud API mode.": "La clave API de MinerU es necesaria para el modo Cloud API", "Mistral OCR": "OCR Mistral", @@ -1318,6 +1338,7 @@ "No kernel": "", "No knowledge bases found.": "No se encontraron bases de conocimiento", "No knowledge found": "No se encontró ningún conocimiento", + "No limit": "", "No memories to clear": "No hay memorias para borrar", "No model IDs": "No hay IDs de modelo", "No models available": "No hay modelos disponibles", @@ -1390,6 +1411,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "¡vaya! Estás usando un método no soportado (solo interfaz frontal-frontend). Por favor sirve WebUI desde el interfaz trasero (servidor backend).", "Open file": "Abrir archivo", "Open in full screen": "Abrir en pantalla completa", + "Open in new tab": "", "Open link": "Abrir enlace", "Open modal to configure connection": "Abrir modal para configurar la conexión", "Open Modal To Manage Floating Quick Actions": "Abrir Modal para Gestionar Acciones Rápidas Flotantes", @@ -1450,6 +1472,7 @@ "Perplexity Model": "Perplexity Modelo", "Perplexity Search API URL": "URL de la API de la Búsqueda de Perplexity", "Perplexity Search Context Usage": "Perplexity Usar Busqueda en Contexto", + "Persistent": "", "Personalization": "Personalización", "Pin": "Fijar", "Pinned": "Fijado", @@ -1486,6 +1509,7 @@ "Please select a valid JSON file": "Por favor selecciona un archivo JSON válido", "Please select at least one user for Direct Message channel.": "Por favor selecciona al menos un usuario para el canal de Mensajes Directos", "Please wait until all files are uploaded.": "Por favor, espera a que todos los archivos se acaben de subir", + "Policy ID": "", "Port": "Puerto", "Ports": "", "Positive attitude": "Actitud Positiva", @@ -1565,6 +1589,7 @@ "Remove image": "Eliminar imagen", "Remove Model": "Eliminar Modelo", "Rename": "Renombrar", + "Renamed to {{name}}": "", "Render Markdown in Previews": "Renderizar Markdown en Vista Previa", "Reorder Models": "Reordenar Modelos", "Reply": "Responder", @@ -1631,6 +1656,7 @@ "Search Groups": "Buscar Grupos", "Search In Models": "Buscar Modelos", "Search Knowledge": "Buscar Conocimiento", + "Search Memories": "", "Search Models": "Buscar Modelos", "Search Notes": "Buscar Notas", "Search options": "Opciones de Búsqueda", @@ -1672,6 +1698,7 @@ "Select a theme": "Seleccionar un tema", "Select a tool": "Seleccionar una herramienta", "Select a voice": "Seleccionar una voz", + "Select All": "", "Select an auth method": "Seleccionar un método de autentificación", "Select an embedding model engine": "Seleccionar un motor de modelos de incrustación", "Select an engine": "Seleccionar un motor", @@ -1700,6 +1727,7 @@ "Serper API Key": "Clave API de Serper", "Serply API Key": "Clave API de Serply", "Serpstack API Key": "Clave API de Serpstack", + "Server connection failed": "", "Server connection verified": "Conexión al servidor verificada", "Session": "Sesión", "Set as default": "Establecer como Predeterminado", @@ -1801,6 +1829,7 @@ "Stop Download": "Detener la Descarga", "Stop Generating": "Parar la Generación", "Stop Sequence": "Secuencia de Parada", + "Storage": "", "Stream Chat Response": "Transmisión Directa de la Respuesta del Chat", "Stream Delta Chunk Size": "Tamaño del Fragmentado Incremental para la Transmisión Directa", "Streamable HTTP": "Transmisión directa en HTTP", diff --git a/src/lib/i18n/locales/et-EE/translation.json b/src/lib/i18n/locales/et-EE/translation.json index 7fc6f5853d..c67d1978ca 100644 --- a/src/lib/i18n/locales/et-EE/translation.json +++ b/src/lib/i18n/locales/et-EE/translation.json @@ -17,6 +17,8 @@ "{{COUNT}} members": "{{COUNT}} liiget", "{{COUNT}} Replies": "{{COUNT}} vastust", "{{COUNT}} Rows": "{{COUNT}} rida", + "{{count}} selected_one": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "{{COUNT}} allikat", "{{COUNT}} words": "{{COUNT}} sõna", "{{COUNT}}d_time_ago": "{{COUNT}}p tagasi", @@ -127,6 +129,7 @@ "Allow File Upload": "Luba failide üleslaadimine", "Allow Multiple Models in Chat": "Luba mitu mudelit vestluses", "Allow non-local voices": "Luba mitte-lokaalsed hääled", + "Allow public write access": "", "Allow Rate Response": "Luba vastuse hindamine", "Allow Regenerate Response": "Luba vastuse uuestigenereerimine", "Allow Sharing With Users": "Luba jagamine kasutajatega", @@ -181,6 +184,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "Kas olete kindel, et soovite kustutada \"{{NAME}}\"?", "Are you sure you want to delete all chats? This action cannot be undone.": "Kas olete kindel, et soovite kustutada kõik vestlused? Seda toimingut ei saa tagasi võtta.", "Are you sure you want to delete this channel?": "Kas olete kindel, et soovite selle kanali kustutada?", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "Kas olete kindel, et soovite selle sõnumi kustutada?", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "Kas olete kindel, et soovite selle versiooni kustutada? Alamversioonid seotakse uuesti selle versiooni vanemaga.", "Are you sure you want to delete this?": "Kas olete kindel, et soovite selle kustutada?", @@ -378,6 +383,7 @@ "Configure": "Konfigureeri", "Confirm": "Kinnita", "Confirm Password": "Kinnita parool", + "Confirm Prompt from Embed": "", "Confirm your action": "Kinnita oma toiming", "Confirm your new password": "Kinnita oma uus parool", "Confirm Your Password": "Kinnita oma parool", @@ -386,6 +392,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "Ühenduge Open Terminali instantsidega. Kõigil kasutajatel on juurdepääs failide sirvimisele ja terminali tööriistadele nende serverite kaudu.", "Connect to your own OpenAI compatible API endpoints.": "Ühendu oma OpenAI-ga ühilduvate API lõpp-punktidega.", "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 successful": "Ühendus õnnestus", "Connection Type": "Ühenduse tüüp", @@ -426,6 +433,7 @@ "Copying to clipboard was successful!": "Lõikelauale kopeerimine õnnestus!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "Teenusepakkuja peab nõuetekohaselt konfigureerima CORS-i, et lubada päringuid Open WebUI-lt.", "Could not read file.": "Faili ei saanud lugeda.", + "CPU": "", "Create": "Loo", "Create a knowledge base": "Loo teadmiste baas", "Create a model": "Loo mudel", @@ -497,6 +505,7 @@ "Delete File": "Kustuta fail", "Delete folder?": "Kustutada kaust?", "Delete function?": "Kustutada funktsioon?", + "Delete Memory?": "", "Delete Message": "Kustuta sõnum", "Delete message?": "Kustutada sõnum?", "Delete Model": "Kustuta mudel", @@ -510,6 +519,7 @@ "Deleted": "Kustutatud", "Deleted {{deleteModelTag}}": "Kustutatud {{deleteModelTag}}", "Deleted {{name}}": "Kustutatud {{name}}", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "Kustutatud kasutaja", "Deployment names are required for Azure OpenAI": "Azure OpenAI jaoks on nõutavad juurutuse nimed", "Desc": "Kahanev", @@ -518,6 +528,7 @@ "Describe what changed...": "Kirjelda, mis muutus...", "Describe your knowledge base and objectives": "Kirjeldage oma teadmiste baasi ja eesmärke", "Description": "Kirjeldus", + "Deselect": "", "Detect Artifacts Automatically": "Tuvasta artefaktid automaatselt", "Dictate": "Dikteeri", "Didn't fully follow instructions": "Ei järginud täielikult juhiseid", @@ -780,6 +791,8 @@ "Enter Your Username": "Sisestage oma kasutajanimi", "Enter your webhook URL": "Sisestage oma webhook URL", "Entra ID": "Entra ID", + "Environment Variables": "", + "Ephemeral": "", "Error": "Viga", "ERROR": "VIGA", "Error accessing directory": "Viga kataloogi juurdepääsul", @@ -856,6 +869,7 @@ "Failed to save connections": "Ühenduste salvestamine ebaõnnestus", "Failed to save conversation": "Vestluse salvestamine ebaõnnestus", "Failed to save models configuration": "Mudelite konfiguratsiooni salvestamine ebaõnnestus", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "Terminali serverite salvestamine ebaõnnestus", "Failed to unshare chat.": "Vestluse jagamise lõpetamine ebaõnnestus.", "Failed to update settings": "Seadete uuendamine ebaõnnestus", @@ -871,6 +885,7 @@ "Feedback History": "Tagasiside ajalugu", "Feel free to add specific details": "Võite lisada konkreetseid üksikasju", "Female": "Naine", + "Fetch URL Content Length Limit": "", "File": "Fail", "File added successfully.": "Fail edukalt lisatud.", "File attached to chat": "Fail lisatud vestlusesse", @@ -925,6 +940,7 @@ "Format Lines": "Vorminda read", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "Vorminda read väljundis. Vaikimisi välja lülitatud. Kui seatud väärtusele True, vormindatakse read, et tuvastada tekstisisest matemaatikat ja stiile.", "Formatting may be inconsistent from source.": "Vormindus võib allikast sõltuvalt erineda.", + "Forward": "", "Forwards system user OAuth access token to authenticate": "Edastab süsteemikasutaja OAuthi juurdepääsumärgi autentimiseks", "Forwards system user session credentials to authenticate": "Edastab süsteemikasutaja seansi mandaadid autentimiseks", "Full Context Mode": "Täiskonteksti režiim", @@ -1012,6 +1028,7 @@ "ID": "ID", "ID cannot contain \":\" or \"|\" characters": "ID ei tohi sisaldada märke \":\" ega \"|\"", "ID copied to clipboard": "ID kopeeritud lõikelauale", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "iframe liivakast: luba vormid", "iframe Sandbox Allow Same Origin": "iframe liivakast: luba sama päritolu", "Ignite curiosity": "Süüta uudishimu", @@ -1182,6 +1199,7 @@ "Max Speakers": "Maksimaalne kõnelejate arv", "Max Upload Count": "Maksimaalne üleslaadimiste arv", "Max Upload Size": "Maksimaalne üleslaadimise suurus", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "Maksimaalne lubatud failide arv kausta kohta.", "Maximum number of files per folder is {{max}}.": "Maksimaalne failide arv kausta kohta on {{max}}.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Korraga saab alla laadida maksimaalselt 3 mudelit. Palun proovige hiljem uuesti.", @@ -1213,6 +1231,7 @@ "Microsoft OneDrive": "Microsoft OneDrive", "Microsoft OneDrive (personal)": "Microsoft OneDrive (isiklik)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (töö/kool)", + "min": "", "MinerU": "MinerU", "MinerU API Key required for Cloud API mode.": "Pilve API režiimis on nõutav MinerU API võti.", "Mistral OCR": "Mistral OCR", @@ -1318,6 +1337,7 @@ "No kernel": "Kernel puudub", "No knowledge bases found.": "Teadmiste baase ei leitud.", "No knowledge found": "Teadmisi ei leitud", + "No limit": "", "No memories to clear": "Pole mälestusi, mida kustutada", "No model IDs": "Mudeli ID-d puuduvad", "No models available": "Mudeleid pole saadaval", @@ -1390,6 +1410,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Oih! Kasutate toetamatut meetodit (ainult kasutajaliides). Palun serveerige WebUI tagarakendusest.", "Open file": "Ava fail", "Open in full screen": "Ava täisekraanil", + "Open in new tab": "", "Open link": "Ava link", "Open modal to configure connection": "Ava modaal ühenduse seadistamiseks", "Open Modal To Manage Floating Quick Actions": "Ava modaal hõljuvate kiirtoimingute haldamiseks", @@ -1450,6 +1471,7 @@ "Perplexity Model": "Perplexity mudel", "Perplexity Search API URL": "Perplexity otsingu API URL", "Perplexity Search Context Usage": "Perplexity otsingu konteksti kasutus", + "Persistent": "", "Personalization": "Isikupärastamine", "Pin": "Kinnita", "Pinned": "Kinnitatud", @@ -1486,6 +1508,7 @@ "Please select a valid JSON file": "Palun valige kehtiv JSON-fail", "Please select at least one user for Direct Message channel.": "Palun valige otsesõnumi kanali jaoks vähemalt üks kasutaja.", "Please wait until all files are uploaded.": "Palun oodake, kuni kõik failid on üles laaditud.", + "Policy ID": "", "Port": "Port", "Ports": "Pordid", "Positive attitude": "Positiivne suhtumine", @@ -1565,6 +1588,7 @@ "Remove image": "Eemalda pilt", "Remove Model": "Eemalda mudel", "Rename": "Nimeta ümber", + "Renamed to {{name}}": "", "Render Markdown in Previews": "Renderda Markdown eelvaadetes", "Reorder Models": "Muuda mudelite järjekorda", "Reply": "Vasta", @@ -1630,6 +1654,7 @@ "Search Groups": "Otsi gruppe", "Search In Models": "Otsi mudelitest", "Search Knowledge": "Otsi teadmisi", + "Search Memories": "", "Search Models": "Otsi mudeleid", "Search Notes": "Otsi märkmeid", "Search options": "Otsingu valikud", @@ -1671,6 +1696,7 @@ "Select a theme": "Valige teema", "Select a tool": "Valige tööriist", "Select a voice": "Valige hääl", + "Select All": "", "Select an auth method": "Valige autentimismeetod", "Select an embedding model engine": "Valige manustamise mudeli mootor", "Select an engine": "Valige mootor", @@ -1699,6 +1725,7 @@ "Serper API Key": "Serper API võti", "Serply API Key": "Serply API võti", "Serpstack API Key": "Serpstack API võti", + "Server connection failed": "", "Server connection verified": "Serveri ühendus kontrollitud", "Session": "Seanss", "Set as default": "Määra vaikimisi", @@ -1800,6 +1827,7 @@ "Stop Download": "Peata allalaadimine", "Stop Generating": "Peata genereerimine", "Stop Sequence": "Lõpetamise järjestus", + "Storage": "", "Stream Chat Response": "Voogedasta vestluse vastust", "Stream Delta Chunk Size": "Voo delta tüki suurus", "Streamable HTTP": "Streamable HTTP", diff --git a/src/lib/i18n/locales/eu-ES/translation.json b/src/lib/i18n/locales/eu-ES/translation.json index acac50bbda..adedb6c990 100644 --- a/src/lib/i18n/locales/eu-ES/translation.json +++ b/src/lib/i18n/locales/eu-ES/translation.json @@ -17,6 +17,8 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "", "{{COUNT}} Rows": "", + "{{count}} selected_one": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", "{{COUNT}}d_time_ago": "", @@ -127,6 +129,7 @@ "Allow File Upload": "Baimendu Fitxategiak Igotzea", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Baimendu urruneko ahotsak", + "Allow public write access": "", "Allow Rate Response": "", "Allow Regenerate Response": "", "Allow Sharing With Users": "", @@ -181,6 +184,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +383,7 @@ "Configure": "Konfiguratu", "Confirm": "Berretsi", "Confirm Password": "Berretsi Pasahitza", + "Confirm Prompt from Embed": "", "Confirm your action": "Berretsi zure ekintza", "Confirm your new password": "", "Confirm Your Password": "", @@ -386,6 +392,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAPI compatible external tool servers.": "", + "Connected ({{type}})": "", "Connection failed": "", "Connection successful": "", "Connection Type": "", @@ -426,6 +433,7 @@ "Copying to clipboard was successful!": "Arbelera kopiatzea arrakastatsua izan da!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "", "Could not read file.": "", + "CPU": "", "Create": "Sortu", "Create a knowledge base": "Sortu ezagutza-base bat", "Create a model": "Sortu eredu bat", @@ -497,6 +505,7 @@ "Delete File": "", "Delete folder?": "Ezabatu karpeta?", "Delete function?": "Ezabatu funtzioa?", + "Delete Memory?": "", "Delete Message": "", "Delete message?": "", "Delete Model": "", @@ -510,6 +519,7 @@ "Deleted": "", "Deleted {{deleteModelTag}}": "{{deleteModelTag}} ezabatu da", "Deleted {{name}}": "{{name}} ezabatu da", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "Ezabatutako Erabiltzailea", "Deployment names are required for Azure OpenAI": "", "Desc": "", @@ -518,6 +528,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "Deskribatu zure ezagutza-basea eta helburuak", "Description": "Deskribapena", + "Deselect": "", "Detect Artifacts Automatically": "", "Dictate": "", "Didn't fully follow instructions": "Ez ditu jarraibideak guztiz jarraitu", @@ -780,6 +791,8 @@ "Enter Your Username": "Sartu Zure Erabiltzaile-izena", "Enter your webhook URL": "", "Entra ID": "", + "Environment Variables": "", + "Ephemeral": "", "Error": "Errorea", "ERROR": "ERROREA", "Error accessing directory": "", @@ -856,6 +869,7 @@ "Failed to save connections": "", "Failed to save conversation": "Huts egin du elkarrizketa gordetzean", "Failed to save models configuration": "Huts egin du ereduen konfigurazioa gordetzean", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "Huts egin du ezarpenak eguneratzean", @@ -871,6 +885,7 @@ "Feedback History": "Feedbacken Historia", "Feel free to add specific details": "Gehitu xehetasun zehatzak nahi izanez gero", "Female": "", + "Fetch URL Content Length Limit": "", "File": "Fitxategia", "File added successfully.": "Fitxategia ongi gehitu da.", "File attached to chat": "", @@ -925,6 +940,7 @@ "Format Lines": "", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "", "Formatting may be inconsistent from source.": "", + "Forward": "", "Forwards system user OAuth access token to authenticate": "", "Forwards system user session credentials to authenticate": "", "Full Context Mode": "", @@ -1012,6 +1028,7 @@ "ID": "IDa", "ID cannot contain \":\" or \"|\" characters": "", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "", "iframe Sandbox Allow Same Origin": "", "Ignite curiosity": "Piztu jakin-mina", @@ -1182,6 +1199,7 @@ "Max Speakers": "", "Max Upload Count": "Karga kopuru maximoa", "Max Upload Size": "Karga tamaina maximoa", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Gehienez 3 modelo deskarga daitezke aldi berean. Saiatu berriro geroago.", @@ -1213,6 +1231,7 @@ "Microsoft OneDrive": "", "Microsoft OneDrive (personal)": "", "Microsoft OneDrive (work/school)": "", + "min": "", "MinerU": "", "MinerU API Key required for Cloud API mode.": "", "Mistral OCR": "", @@ -1318,6 +1337,7 @@ "No kernel": "", "No knowledge bases found.": "", "No knowledge found": "Ez da ezagutzarik aurkitu", + "No limit": "", "No memories to clear": "", "No model IDs": "Ez dago modelo IDrik", "No models available": "", @@ -1390,6 +1410,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Ui! Onartzen ez den metodo bat erabiltzen ari zara (frontend soilik). Mesedez, zerbitzatu WebUI-a backendetik.", "Open file": "Ireki fitxategia", "Open in full screen": "Ireki pantaila osoan", + "Open in new tab": "", "Open link": "", "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", @@ -1450,6 +1471,7 @@ "Perplexity Model": "", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "", + "Persistent": "", "Personalization": "Pertsonalizazioa", "Pin": "Ainguratu", "Pinned": "Ainguratuta", @@ -1486,6 +1508,7 @@ "Please select a valid JSON file": "", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "", + "Policy ID": "", "Port": "Ataka", "Ports": "", "Positive attitude": "Jarrera positiboa", @@ -1565,6 +1588,7 @@ "Remove image": "", "Remove Model": "Kendu modeloa", "Rename": "Berrizendatu", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "Berrantolatu modeloak", "Reply": "", @@ -1630,6 +1654,7 @@ "Search Groups": "", "Search In Models": "", "Search Knowledge": "Bilatu ezagutza", + "Search Memories": "", "Search Models": "Bilatu modeloak", "Search Notes": "", "Search options": "Bilaketa aukerak", @@ -1671,6 +1696,7 @@ "Select a theme": "", "Select a tool": "Hautatu tresna bat", "Select a voice": "", + "Select All": "", "Select an auth method": "", "Select an embedding model engine": "", "Select an engine": "", @@ -1699,6 +1725,7 @@ "Serper API Key": "Serper API gakoa", "Serply API Key": "Serply API gakoa", "Serpstack API Key": "Serpstack API gakoa", + "Server connection failed": "", "Server connection verified": "Zerbitzari konexioa egiaztatuta", "Session": "", "Set as default": "Ezarri lehenetsi gisa", @@ -1800,6 +1827,7 @@ "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Gelditzeko sekuentzia", + "Storage": "", "Stream Chat Response": "Transmititu txat erantzuna", "Stream Delta Chunk Size": "", "Streamable HTTP": "", diff --git a/src/lib/i18n/locales/fa-IR/translation.json b/src/lib/i18n/locales/fa-IR/translation.json index c14f225200..e4edad356f 100644 --- a/src/lib/i18n/locales/fa-IR/translation.json +++ b/src/lib/i18n/locales/fa-IR/translation.json @@ -17,6 +17,8 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "{{COUNT}} پاسخ", "{{COUNT}} Rows": "", + "{{count}} selected_one": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "{{COUNT}} منبع", "{{COUNT}} words": "{{COUNT}} کلمه", "{{COUNT}}d_time_ago": "", @@ -127,6 +129,7 @@ "Allow File Upload": "اجازه بارگذاری فایل", "Allow Multiple Models in Chat": "اجازه استفاده از چند مدل در گفتگو", "Allow non-local voices": "اجازه صداهای غیر محلی", + "Allow public write access": "", "Allow Rate Response": "مجاز کردن امتیازدهی به پاسخ", "Allow Regenerate Response": "مجاز کردن بازتولید پاسخ", "Allow Sharing With Users": "", @@ -181,6 +184,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "آیا مطمئن هستید که می\u200cخواهید این کانال را حذف کنید؟", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "آیا مطمئن هستید که می\u200cخواهید این پیام را حذف کنید؟", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +383,7 @@ "Configure": "پیکربندی", "Confirm": "تایید", "Confirm Password": "تایید رمز عبور", + "Confirm Prompt from Embed": "", "Confirm your action": "عملیات خود را تایید کنید", "Confirm your new password": "رمز عبور جدید خود را تایید کنید", "Confirm Your Password": "تأیید رمز عبور", @@ -386,6 +392,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "به نقاط پایانی API سازگار با OpenAI خود متصل شوید.", "Connect to your own OpenAPI compatible external tool servers.": "به سرورهای ابزار خارجی سازگار با OpenAPI خود متصل شوید.", + "Connected ({{type}})": "", "Connection failed": "اتصال ناموفق بود", "Connection successful": "اتصال موفقیت\u200cآمیز بود", "Connection Type": "نوع اتصال", @@ -426,6 +433,7 @@ "Copying to clipboard was successful!": "کپی کردن در کلیپ بورد با موفقیت انجام شد!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "CORS باید توسط ارائه\u200cدهنده به درستی پیکربندی شود تا درخواست\u200cها از Open WebUI مجاز باشند.", "Could not read file.": "", + "CPU": "", "Create": "ایجاد", "Create a knowledge base": "ایجاد یک پایگاه دانش", "Create a model": "ایجاد یک مدل", @@ -497,6 +505,7 @@ "Delete File": "", "Delete folder?": "پوشه حذف شود؟", "Delete function?": "تابع حذف شود؟", + "Delete Memory?": "", "Delete Message": "حذف پیام", "Delete message?": "پیام حذف شود؟", "Delete Model": "حذف مدل", @@ -510,6 +519,7 @@ "Deleted": "", "Deleted {{deleteModelTag}}": "{{deleteModelTag}} پاک شد", "Deleted {{name}}": "حذف شده {{name}}", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "کاربر حذف شده", "Deployment names are required for Azure OpenAI": "نام\u200cهای استقرار برای Azure OpenAI مورد نیاز هستند", "Desc": "", @@ -518,6 +528,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "پایگاه دانش و اهداف خود را توصیف کنید", "Description": "توضیحات", + "Deselect": "", "Detect Artifacts Automatically": "تشخیص خودکار مصنوعات", "Dictate": "دیکته کردن", "Didn't fully follow instructions": "نمی تواند دستورالعمل را کامل پیگیری کند", @@ -780,6 +791,8 @@ "Enter Your Username": "نام کاربری خود را وارد کنید", "Enter your webhook URL": "آدرس وب\u200cهوک خود را وارد کنید", "Entra ID": "شناسه Entra", + "Environment Variables": "", + "Ephemeral": "", "Error": "خطا", "ERROR": "خطا", "Error accessing directory": "خطا در دسترسی به دایرکتوری", @@ -856,6 +869,7 @@ "Failed to save connections": "خطا در ذخیره\u200cسازی اتصالات", "Failed to save conversation": "خطا در ذخیره\u200cسازی گفت\u200cوگو", "Failed to save models configuration": "خطا در ذخیره\u200cسازی پیکربندی مدل\u200cها", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "خطا در به\u200cروزرسانی تنظیمات", @@ -871,6 +885,7 @@ "Feedback History": "تاریخچهٔ بازخورد", "Feel free to add specific details": "اگر به دلخواه، معلومات خاصی اضافه کنید", "Female": "زن", + "Fetch URL Content Length Limit": "", "File": "پرونده", "File added successfully.": "پرونده با موفقیت افزوده شد.", "File attached to chat": "", @@ -925,6 +940,7 @@ "Format Lines": "قالب\u200cبندی خطوط", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "قالب\u200cبندی خطوط در خروجی. پیش\u200cفرض: False. اگر روی True تنظیم شود، خطوط برای تشخیص ریاضیات و استایل\u200cهای درون\u200cخطی قالب\u200cبندی خواهند شد.", "Formatting may be inconsistent from source.": "قالب\u200cبندی ممکن است با منبع ناسازگار باشد.", + "Forward": "", "Forwards system user OAuth access token to authenticate": "ارسال توکن دسترسی OAuth کاربر سیستم برای احراز هویت", "Forwards system user session credentials to authenticate": "اعتبارنامه\u200cهای نشست کاربر سیستم را برای احراز هویت ارسال می\u200cکند", "Full Context Mode": "حالت متن کامل", @@ -1012,6 +1028,7 @@ "ID": "شناسه", "ID cannot contain \":\" or \"|\" characters": "شناسه نمی\u200cتواند حاوی کاراکترهای \":\" یا \"|\" باشد", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "اجازه فرم\u200cها در سندباکس iframe", "iframe Sandbox Allow Same Origin": "اجازه منشأ یکسان در سندباکس iframe", "Ignite curiosity": "کنجکاوی را برانگیزید", @@ -1182,6 +1199,7 @@ "Max Speakers": "حداکثر تعداد بلندگوها", "Max Upload Count": "حداکثر تعداد آپلود", "Max Upload Size": "حداکثر اندازه آپلود", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "حداکثر 3 مدل را می توان به طور همزمان دانلود کرد. لطفاً بعداً دوباره امتحان کنید.", @@ -1213,6 +1231,7 @@ "Microsoft OneDrive": "وان\u200cدرایو مایکروسافت", "Microsoft OneDrive (personal)": "وان\u200cدرایو مایکروسافت (شخصی)", "Microsoft OneDrive (work/school)": "وان\u200cدرایو مایکروسافت (کار/مدرسه)", + "min": "", "MinerU": "MinerU", "MinerU API Key required for Cloud API mode.": "کلید API MinerU برای حالت Cloud API مورد نیاز است.", "Mistral OCR": "تشخیص متن میسترال", @@ -1318,6 +1337,7 @@ "No kernel": "", "No knowledge bases found.": "", "No knowledge found": "دانشی یافت نشد", + "No limit": "", "No memories to clear": "حافظه\u200cای برای پاک کردن وجود ندارد", "No model IDs": "شناسه مدلی وجود ندارد", "No models available": "", @@ -1390,6 +1410,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "اوه! شما از یک روش پشتیبانی نشده (فقط frontend) استفاده می کنید. لطفاً WebUI را از بکند اجرا کنید.", "Open file": "باز کردن فایل", "Open in full screen": "باز کردن در تمام صفحه", + "Open in new tab": "", "Open link": "باز کردن لینک", "Open modal to configure connection": "باز کردن مودال برای پیکربندی اتصال", "Open Modal To Manage Floating Quick Actions": "باز کردن مودال برای مدیریت اقدامات سریع شناور", @@ -1450,6 +1471,7 @@ "Perplexity Model": "مدل پرپلکسیتی", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "استفاده از زمینه جستجوی پرپلکسیتی", + "Persistent": "", "Personalization": "شخصی سازی", "Pin": "پین کردن", "Pinned": "پین شده", @@ -1486,6 +1508,7 @@ "Please select a valid JSON file": "لطفاً یک فایل JSON معتبر انتخاب کنید", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "لطفاً منتظر بمانید تا همه فایل\u200cها آپلود شوند.", + "Policy ID": "", "Port": "پورت", "Ports": "", "Positive attitude": "نظرات مثبت", @@ -1565,6 +1588,7 @@ "Remove image": "حذف تصویر", "Remove Model": "حذف مدل", "Rename": "تغییر نام", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "ترتیب مجدد مدل\u200cها", "Reply": "پاسخ", @@ -1630,6 +1654,7 @@ "Search Groups": "", "Search In Models": "جستجو در مدل\u200cها", "Search Knowledge": "جستجوی دانش", + "Search Memories": "", "Search Models": "جستجوی مدل\u200cها", "Search Notes": "جستجوی یادداشت\u200cها", "Search options": "گزینه\u200cهای جستجو", @@ -1671,6 +1696,7 @@ "Select a theme": "یک تم انتخاب کنید", "Select a tool": "انتخاب یک ابقزار", "Select a voice": "یک صدا انتخاب کنید", + "Select All": "", "Select an auth method": "یک روش احراز هویت را انتخاب کنید", "Select an embedding model engine": "یک موتور مدل جاسازی انتخاب کنید", "Select an engine": "یک موتور انتخاب کنید", @@ -1699,6 +1725,7 @@ "Serper API Key": "کلید API Serper", "Serply API Key": "کلید API سرپلی", "Serpstack API Key": "کلید API Serpstack", + "Server connection failed": "", "Server connection verified": "اتصال سرور تأیید شد", "Session": "جلسه", "Set as default": "تنظیم به عنوان پیشفرض", @@ -1800,6 +1827,7 @@ "Stop Download": "", "Stop Generating": "توقف تولید", "Stop Sequence": "توقف توالی", + "Storage": "", "Stream Chat Response": "پاسخ چت جریانی", "Stream Delta Chunk Size": "اندازه دلتا تکه جریانی", "Streamable HTTP": "HTTP قابل جریان", diff --git a/src/lib/i18n/locales/fi-FI/translation.json b/src/lib/i18n/locales/fi-FI/translation.json index bea880c152..c706b0629c 100644 --- a/src/lib/i18n/locales/fi-FI/translation.json +++ b/src/lib/i18n/locales/fi-FI/translation.json @@ -17,6 +17,8 @@ "{{COUNT}} members": "{{COUNT}} jäsentä", "{{COUNT}} Replies": "{{COUNT}} vastausta", "{{COUNT}} Rows": "{{COUNT}} riviä", + "{{count}} selected_one": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "{{COUNT}} lähdettä", "{{COUNT}} words": "{{COUNT}} sanaa", "{{COUNT}}d_time_ago": "", @@ -127,6 +129,7 @@ "Allow File Upload": "Salli tiedostojen lataus", "Allow Multiple Models in Chat": "Salli useampi malli keskustelussa", "Allow non-local voices": "Salli ei-paikalliset äänet", + "Allow public write access": "", "Allow Rate Response": "Salli viestien arviointi", "Allow Regenerate Response": "Salli uudelleen regenerointi", "Allow Sharing With Users": "Salli jakaminen käyttäjien kesken", @@ -181,6 +184,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "Haluatko varmasti poistaa \"{{NAME}}\"?", "Are you sure you want to delete all chats? This action cannot be undone.": "Haluatko varamsti poistaa kaikki keskustelut? Tätä toimintoa ei voi peruuttaa.", "Are you sure you want to delete this channel?": "Haluatko varmasti poistaa tämän kanavan?", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "Haluatko varmasti poistaa tämän viestin?", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "Haluatko varamsti poistaa tämän version? Alaversiot linkitetään uudelleen tämän version ylätason versioon.", "Are you sure you want to delete this?": "Haluatko varmasti poistää tämän?", @@ -378,6 +383,7 @@ "Configure": "Määritä", "Confirm": "Vahvista", "Confirm Password": "Vahvista salasana", + "Confirm Prompt from Embed": "", "Confirm your action": "Vahvista toimintasi", "Confirm your new password": "Vahvista uusi salasanasi", "Confirm Your Password": "Vahvista salasanasi", @@ -386,6 +392,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "Yhdistä Open Terminal -instansseihin. Kaikilla käyttäjillä on pääsy tiedostojen selaamiseen ja päätetyökaluihin näiden palvelimien kautta.", "Connect to your own OpenAI compatible API endpoints.": "Yhdistä omat OpenAI yhteensopivat API päätepisteet.", "Connect to your own OpenAPI compatible external tool servers.": "Yhdistä omat ulkopuoliset OpenAPI yhteensopivat työkalu palvelimet.", + "Connected ({{type}})": "", "Connection failed": "Yhteys epäonnistui", "Connection successful": "Yhteys onnistui", "Connection Type": "Yhteystyyppi", @@ -426,6 +433,7 @@ "Copying to clipboard was successful!": "Kopioiminen leikepöydälle onnistui!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "CORS täytyy olla konfiguroitu palveluntarjoajan toimesta pyyntöjen hyväksymiseksi Open WebUI:sta.", "Could not read file.": "Tiedostoa ei voitu lukea.", + "CPU": "", "Create": "Luo", "Create a knowledge base": "Luo tietokanta", "Create a model": "Luo malli", @@ -497,6 +505,7 @@ "Delete File": "Poista tiedosto", "Delete folder?": "Haluatko varmasti poistaa tämän kansion?", "Delete function?": "Haluatko varmasti poistaa tämän toiminnon?", + "Delete Memory?": "", "Delete Message": "Poista viesti", "Delete message?": "Poista viesti?", "Delete Model": "Poista malli", @@ -510,6 +519,7 @@ "Deleted": "Poistettu", "Deleted {{deleteModelTag}}": "Poistettu {{deleteModelTag}}", "Deleted {{name}}": "Poistettu {{nimi}}", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "Käyttäjä poistettu", "Deployment names are required for Azure OpenAI": "Azure OpenAI:lle vaaditaan käyttöönottojen nimet", "Desc": "Laskeva", @@ -518,6 +528,7 @@ "Describe what changed...": "Kuvaile mikä muuttui...", "Describe your knowledge base and objectives": "Kuvaa tietokantasi ja tavoitteesi", "Description": "Kuvaus", + "Deselect": "", "Detect Artifacts Automatically": "Tunnista artefaktit automaattisesti", "Dictate": "Sanele", "Didn't fully follow instructions": "Ei noudattanut ohjeita täysin", @@ -780,6 +791,8 @@ "Enter Your Username": "Kirjoita käyttäjätunnuksesi", "Enter your webhook URL": "Kirjoita webhook osoitteesi", "Entra ID": "Entra ID", + "Environment Variables": "", + "Ephemeral": "", "Error": "Virhe", "ERROR": "VIRHE", "Error accessing directory": "Virhe hakemistoa avattaessa", @@ -856,6 +869,7 @@ "Failed to save connections": "Yhteyksien tallentaminen epäonnistui", "Failed to save conversation": "Keskustelun tallentaminen epäonnistui", "Failed to save models configuration": "Mallien määrityksen tallentaminen epäonnistui", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "Päätepalvelimien tallennus epäonnistui", "Failed to unshare chat.": "Jaon lopettaminen epäonnistui.", "Failed to update settings": "Asetusten päivittäminen epäonnistui", @@ -871,6 +885,7 @@ "Feedback History": "Palautehistoria", "Feel free to add specific details": "Voit lisätä tarkempia tietoja", "Female": "Nainen", + "Fetch URL Content Length Limit": "", "File": "Tiedosto", "File added successfully.": "Tiedosto lisätty onnistuneesti.", "File attached to chat": "Tiedosto liitety keskusteluun", @@ -925,6 +940,7 @@ "Format Lines": "Muotoile rivit", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "Muotoile rivit. Oletusarvo on False. Jos arvo on True, rivit muotoillaan siten, että ne havaitsevat riviin liitetyn matematiikan ja tyylit.", "Formatting may be inconsistent from source.": "Muotoilu voi poiketa alkuperäisestä.", + "Forward": "", "Forwards system user OAuth access token to authenticate": "Välittää järjestelmä käyttäjän OAuth tunniste todennuksessa", "Forwards system user session credentials to authenticate": "Välittää järjestelmän käyttäjän istunnon tunnistetiedot todennusta varten", "Full Context Mode": "Koko kontekstitila", @@ -1012,6 +1028,7 @@ "ID": "Tunnus", "ID cannot contain \":\" or \"|\" characters": "ID ei voi sisältää \":\" tai \"|\" kirjaimia", "ID copied to clipboard": "ID kopioitu leikepöydälle", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "Salli lomakkeet iframe hiekkalaatikossa", "iframe Sandbox Allow Same Origin": "Salli iframe hiekkalaatikko samasta alkuperästä", "Ignite curiosity": "Sytytä uteliaisuus", @@ -1182,6 +1199,7 @@ "Max Speakers": "Puhujien enimmäismäärä", "Max Upload Count": "Latausten enimmäismäärä", "Max Upload Size": "Latausten enimmäiskoko", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "Kansiota kohden sallittujen tiedostojen enimmäismäärä.", "Maximum number of files per folder is {{max}}.": "Tiedostojen enimmäismäärä kansiossa on {{max}}.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Enintään 3 mallia voidaan ladata samanaikaisesti. Yritä myöhemmin uudelleen.", @@ -1213,6 +1231,7 @@ "Microsoft OneDrive": "", "Microsoft OneDrive (personal)": "", "Microsoft OneDrive (work/school)": "", + "min": "", "MinerU": "MinerU", "MinerU API Key required for Cloud API mode.": "MinerU API-avain vaaditaan pilvi API:ssa", "Mistral OCR": "Mistral OCR", @@ -1318,6 +1337,7 @@ "No kernel": "Ei kerneliä", "No knowledge bases found.": "Tietokantoja ei löytynyt.", "No knowledge found": "Tietoa ei löytynyt", + "No limit": "", "No memories to clear": "Ei muistia tyhjennettäväksi", "No model IDs": "Ei mallitunnuksia", "No models available": "Malleja ei saatavilla", @@ -1390,6 +1410,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Hups! Käytät ei-tuettua menetelmää (vain frontend). Palvele WebUI:ta backendistä.", "Open file": "Avaa tiedosto", "Open in full screen": "Avaa koko näytön tilaan", + "Open in new tab": "", "Open link": "Avaa linkki", "Open modal to configure connection": "Avaa modaali yhteyden määrittämiseksi", "Open Modal To Manage Floating Quick Actions": "Avaa modaali kelluvien pikatoimintojen hallitsemiseksi", @@ -1450,6 +1471,7 @@ "Perplexity Model": "Perplexity malli", "Perplexity Search API URL": "Perplexity Search API verkko-osoite", "Perplexity Search Context Usage": "Perplexity Search kontekstin käyttö", + "Persistent": "", "Personalization": "Personointi", "Pin": "Kiinnitä", "Pinned": "Kiinnitetty", @@ -1486,6 +1508,7 @@ "Please select a valid JSON file": "Valitse kelvollinen JSON-tiedosto", "Please select at least one user for Direct Message channel.": "Valitse vähintään yksi käyttäjä suoraviestikanavalle.", "Please wait until all files are uploaded.": "Odota kunnes kaikki tiedostot ovat ladattu.", + "Policy ID": "", "Port": "Portti", "Ports": "Portit", "Positive attitude": "Positiivinen asenne", @@ -1565,6 +1588,7 @@ "Remove image": "Poista kuva", "Remove Model": "Poista malli", "Rename": "Nimeä uudelleen", + "Renamed to {{name}}": "", "Render Markdown in Previews": "Renderöi Markdown esikatseluissa", "Reorder Models": "Uudelleenjärjestä malleja", "Reply": "Vastaa", @@ -1630,6 +1654,7 @@ "Search Groups": "Etsi ryhmiä", "Search In Models": "Hae mallleista", "Search Knowledge": "Hae tietämystä", + "Search Memories": "", "Search Models": "Hae malleja", "Search Notes": "Hae muistiinpanoista", "Search options": "Hakuvaihtoehdot", @@ -1671,6 +1696,7 @@ "Select a theme": "Valitse teema", "Select a tool": "Valitse työkalu", "Select a voice": "Valitse ääni", + "Select All": "", "Select an auth method": "Valitse kirjautumistapa", "Select an embedding model engine": "Valitse upotusmallin moottori", "Select an engine": "Valitse moottori", @@ -1699,6 +1725,7 @@ "Serper API Key": "Serper API -avain", "Serply API Key": "Serply API -avain", "Serpstack API Key": "Serpstack API -avain", + "Server connection failed": "", "Server connection verified": "Palvelinyhteys vahvistettu", "Session": "Istunto", "Set as default": "Aseta oletukseksi", @@ -1800,6 +1827,7 @@ "Stop Download": "Lopeta lataus", "Stop Generating": "Lopeta generointi", "Stop Sequence": "Lopetussekvenssi", + "Storage": "", "Stream Chat Response": "Striimaa keskusteluvastaus", "Stream Delta Chunk Size": "Striimin delta-lohkon koko", "Streamable HTTP": "Streamable HTTP", diff --git a/src/lib/i18n/locales/fr-CA/translation.json b/src/lib/i18n/locales/fr-CA/translation.json index 66df34c8f7..d9c82c73a9 100644 --- a/src/lib/i18n/locales/fr-CA/translation.json +++ b/src/lib/i18n/locales/fr-CA/translation.json @@ -17,6 +17,9 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "{{COUNT}} réponses", "{{COUNT}} Rows": "", + "{{count}} selected_one": "", + "{{count}} selected_many": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", "{{COUNT}}d_time_ago": "", @@ -127,6 +130,7 @@ "Allow File Upload": "Autoriser le téléversement de fichiers", "Allow Multiple Models in Chat": "Autoriser plusieurs modèles dans la conversation", "Allow non-local voices": "Autoriser les voix non locales", + "Allow public write access": "", "Allow Rate Response": "", "Allow Regenerate Response": "", "Allow Sharing With Users": "", @@ -181,6 +185,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "Êtes-vous sûr de vouloir supprimer ce canal ?", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "Êtes-vous sûr de vouloir supprimer ce message ?", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +384,7 @@ "Configure": "Configurer", "Confirm": "Confirmer", "Confirm Password": "Confirmer le mot de passe", + "Confirm Prompt from Embed": "", "Confirm your action": "Confirmer votre action", "Confirm your new password": "Confirmer votre nouveau mot de passe", "Confirm Your Password": "", @@ -386,6 +393,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "Connectez-vous à vos points d'extension API compatibles OpenAI.", "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 successful": "Connexion réussie", "Connection Type": "Type de connexion", @@ -426,6 +434,7 @@ "Copying to clipboard was successful!": "La copie dans le presse-papiers a réussi !", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "Le réglage CORS doit être correctement configuré par le fournisseur pour autoriser les requêtes provenant de l'Open WebUI.", "Could not read file.": "", + "CPU": "", "Create": "Créer", "Create a knowledge base": "Créer une base de connaissances", "Create a model": "Créer un modèle", @@ -497,6 +506,7 @@ "Delete File": "", "Delete folder?": "Supprimer le dossier ?", "Delete function?": "Supprimer la fonction ?", + "Delete Memory?": "", "Delete Message": "Supprimer le message", "Delete message?": "Supprimer le message ?", "Delete Model": "", @@ -510,6 +520,7 @@ "Deleted": "", "Deleted {{deleteModelTag}}": "Supprimé {{deleteModelTag}}", "Deleted {{name}}": "Supprimé {{name}}", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "Utilisateur supprimé", "Deployment names are required for Azure OpenAI": "Les noms de déploiement sont requis pour Azure OpenAI", "Desc": "", @@ -518,6 +529,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "Décrivez votre base de connaissances et vos objectifs", "Description": "Description", + "Deselect": "", "Detect Artifacts Automatically": "Détection automatique des Artifacts", "Dictate": "Dicter", "Didn't fully follow instructions": "N'a pas entièrement respecté les instructions", @@ -780,6 +792,8 @@ "Enter Your Username": "Entrez votre nom d'utilisateur", "Enter your webhook URL": "Entrez l'URL de votre webhook", "Entra ID": "", + "Environment Variables": "", + "Ephemeral": "", "Error": "Erreur", "ERROR": "ERREUR", "Error accessing directory": "", @@ -856,6 +870,7 @@ "Failed to save connections": "Échec de la sauvegarde des connexions", "Failed to save conversation": "Échec de la sauvegarde de la conversation", "Failed to save models configuration": "Échec de la sauvegarde de la configuration des modèles", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "Échec de la mise à jour des réglages", @@ -871,6 +886,7 @@ "Feedback History": "Historique des avis", "Feel free to add specific details": "N'hésitez pas à ajouter des détails spécifiques", "Female": "", + "Fetch URL Content Length Limit": "", "File": "Fichier", "File added successfully.": "Fichier ajouté avec succès.", "File attached to chat": "", @@ -925,6 +941,7 @@ "Format Lines": "", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "", "Formatting may be inconsistent from source.": "", + "Forward": "", "Forwards system user OAuth access token to authenticate": "", "Forwards system user session credentials to authenticate": "Transmet les identifiants de session de l'utilisateur pour l'authentification", "Full Context Mode": "Mode avec injection complète dans le Context", @@ -1012,6 +1029,7 @@ "ID": "ID", "ID cannot contain \":\" or \"|\" characters": "", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "Autoriser les formulaires dans l'iframe sandbox", "iframe Sandbox Allow Same Origin": "Autoriser même origine dans l'iframe sandbox", "Ignite curiosity": "Éveiller la curiosité", @@ -1182,6 +1200,7 @@ "Max Speakers": "Nombre maximal d'intervenants", "Max Upload Count": "Nombre maximal de téléversements", "Max Upload Size": "Limite de taille de téléversement", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Un maximum de 3 modèles peut être téléchargé en même temps. Veuillez réessayer ultérieurement.", @@ -1213,6 +1232,7 @@ "Microsoft OneDrive": "Microsoft OneDrive", "Microsoft OneDrive (personal)": "Microsoft OneDrive (personnel)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (travail/école)", + "min": "", "MinerU": "", "MinerU API Key required for Cloud API mode.": "", "Mistral OCR": "Mistral OCR", @@ -1318,6 +1338,7 @@ "No kernel": "", "No knowledge bases found.": "", "No knowledge found": "Aucune connaissance trouvée", + "No limit": "", "No memories to clear": "Aucun souvenir à effacer", "No model IDs": "Aucun ID de modèle", "No models available": "", @@ -1390,6 +1411,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Oups ! Vous utilisez une méthode non prise en charge (frontend uniquement). Veuillez servir l'interface Web à partir du backend.", "Open file": "Ouvrir le fichier", "Open in full screen": "Ouvrir en plein écran", + "Open in new tab": "", "Open link": "", "Open modal to configure connection": "Ouvrir la fenêtre modale pour configurer la connexion", "Open Modal To Manage Floating Quick Actions": "", @@ -1450,6 +1472,7 @@ "Perplexity Model": "Modèle de Perplexity", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "Utilisation du contexte de recherche de Perplexity", + "Persistent": "", "Personalization": "Personnalisation", "Pin": "Épingler", "Pinned": "Épinglé", @@ -1486,6 +1509,7 @@ "Please select a valid JSON file": "", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "", + "Policy ID": "", "Port": "Port", "Ports": "", "Positive attitude": "Attitude positive", @@ -1565,6 +1589,7 @@ "Remove image": "Retirer l'image", "Remove Model": "Retirer le modèle", "Rename": "Renommer", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "Réorganiser les modèles", "Reply": "", @@ -1631,6 +1656,7 @@ "Search Groups": "", "Search In Models": "", "Search Knowledge": "Rechercher des connaissances", + "Search Memories": "", "Search Models": "Rechercher des modèles", "Search Notes": "", "Search options": "Options de recherche", @@ -1672,6 +1698,7 @@ "Select a theme": "", "Select a tool": "Sélectionnez un outil", "Select a voice": "", + "Select All": "", "Select an auth method": "Veuillez sélectionner une méthode de connexion", "Select an embedding model engine": "", "Select an engine": "", @@ -1700,6 +1727,7 @@ "Serper API Key": "Clé API Serper", "Serply API Key": "Clé API Serply", "Serpstack API Key": "Clé API Serpstack", + "Server connection failed": "", "Server connection verified": "Connexion au serveur vérifiée", "Session": "", "Set as default": "Définir comme valeur par défaut", @@ -1801,6 +1829,7 @@ "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Séquence d'arrêt", + "Storage": "", "Stream Chat Response": "Streamer la réponse de la conversation", "Stream Delta Chunk Size": "", "Streamable HTTP": "", diff --git a/src/lib/i18n/locales/fr-FR/translation.json b/src/lib/i18n/locales/fr-FR/translation.json index 1319fab8d1..aaeae16670 100644 --- a/src/lib/i18n/locales/fr-FR/translation.json +++ b/src/lib/i18n/locales/fr-FR/translation.json @@ -17,6 +17,9 @@ "{{COUNT}} members": "{{COUNT}} membres", "{{COUNT}} Replies": "{{COUNT}} réponses", "{{COUNT}} Rows": "{{COUNT}} lignes", + "{{count}} selected_one": "", + "{{count}} selected_many": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "{{COUNT}} Sources", "{{COUNT}} words": "{{COUNT}} mots", "{{COUNT}}d_time_ago": "{{COUNT}}j", @@ -127,6 +130,7 @@ "Allow File Upload": "Autoriser le téléversement de fichiers", "Allow Multiple Models in Chat": "Autoriser plusieurs modèles dans la conversation", "Allow non-local voices": "Autoriser les voix non locales", + "Allow public write access": "", "Allow Rate Response": "Autoriser l'évaluation de la réponse", "Allow Regenerate Response": "Autoriser la regénération de la réponse", "Allow Sharing With Users": "Autoriser le partage aux utilisateurs", @@ -181,6 +185,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "Êtes-vous sûr de vouloir supprimer \"{{NAME}}\" ?", "Are you sure you want to delete all chats? This action cannot be undone.": "Êtes-vous sûr de vouloir supprimer toutes les conversations ? Cette action est irréversible.", "Are you sure you want to delete this channel?": "Êtes-vous sûr de vouloir supprimer ce canal ?", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "Êtes-vous sûr de vouloir supprimer ce message ?", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "Êtes-vous sûr de vouloir supprimer cette version ? Les versions enfants seront rattachées à la version parente.", "Are you sure you want to delete this?": "Êtes-vous sûr de vouloir supprimer ceci ?", @@ -378,6 +384,7 @@ "Configure": "Configurer", "Confirm": "Confirmer", "Confirm Password": "Confirmer le mot de passe", + "Confirm Prompt from Embed": "", "Confirm your action": "Confirmer votre action", "Confirm your new password": "Confirmer votre nouveau mot de passe", "Confirm Your Password": "Confirmez votre mot de passe", @@ -386,6 +393,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "Connectez-vous à des instances Open Terminal. Tous les utilisateurs auront accès à la navigation de fichiers et aux outils de terminal via ces serveurs.", "Connect to your own OpenAI compatible API endpoints.": "Connectez-vous à vos points d'extension API compatibles OpenAI.", "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 successful": "Connexion réussie", "Connection Type": "Type de connexion", @@ -426,6 +434,7 @@ "Copying to clipboard was successful!": "La copie dans le presse-papiers a réussi !", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "Le réglage CORS doit être correctement configuré par le fournisseur pour autoriser les requêtes provenant de l'Open WebUI.", "Could not read file.": "Impossible de lire le fichier.", + "CPU": "", "Create": "Créer", "Create a knowledge base": "Créer une base de connaissances", "Create a model": "Créer un modèle", @@ -497,6 +506,7 @@ "Delete File": "Supprimer le fichier", "Delete folder?": "Supprimer le dossier ?", "Delete function?": "Supprimer la fonction ?", + "Delete Memory?": "", "Delete Message": "Supprimer le message", "Delete message?": "Supprimer le message ?", "Delete Model": "Supprimer le modèle", @@ -510,6 +520,7 @@ "Deleted": "Supprimé", "Deleted {{deleteModelTag}}": "Supprimé {{deleteModelTag}}", "Deleted {{name}}": "Supprimé {{name}}", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "Utilisateur supprimé", "Deployment names are required for Azure OpenAI": "Les noms de déploiement sont requis pour Azure OpenAI", "Desc": "Décroissant", @@ -518,6 +529,7 @@ "Describe what changed...": "Décrivez ce qui a changé...", "Describe your knowledge base and objectives": "Décrivez votre base de connaissances et vos objectifs", "Description": "Description", + "Deselect": "", "Detect Artifacts Automatically": "Détection automatique des Artifacts", "Dictate": "Dicter", "Didn't fully follow instructions": "N'a pas entièrement respecté les instructions", @@ -780,6 +792,8 @@ "Enter Your Username": "Entrez votre nom d'utilisateur", "Enter your webhook URL": "Entrez l'URL de votre webhook", "Entra ID": "Entra ID", + "Environment Variables": "", + "Ephemeral": "", "Error": "Erreur", "ERROR": "ERREUR", "Error accessing directory": "Erreur d'accès au répertoire", @@ -856,6 +870,7 @@ "Failed to save connections": "Échec de la sauvegarde des connexions", "Failed to save conversation": "Échec de la sauvegarde de la conversation", "Failed to save models configuration": "Échec de la sauvegarde de la configuration des modèles", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "Échec de la sauvegarde des serveurs de terminal", "Failed to unshare chat.": "Échec de l'annulation du partage de la conversation.", "Failed to update settings": "Échec de la mise à jour des réglages", @@ -871,6 +886,7 @@ "Feedback History": "Historique des avis", "Feel free to add specific details": "N'hésitez pas à ajouter des détails spécifiques", "Female": "Femme", + "Fetch URL Content Length Limit": "", "File": "Fichier", "File added successfully.": "Fichier ajouté avec succès.", "File attached to chat": "Fichier joint à la conversation", @@ -925,6 +941,7 @@ "Format Lines": "Formatter les lignes", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "Formate les lignes dans la sortie. Désactivé par défaut. Si activé, les lignes seront formatées pour détecter les formules mathématiques et les styles.", "Formatting may be inconsistent from source.": "Le formatage peut être incohérent par rapport à la source.", + "Forward": "", "Forwards system user OAuth access token to authenticate": "Transfère le jeton d'accès OAuth de l'utilisateur système pour l'authentification", "Forwards system user session credentials to authenticate": "Transmet les identifiants de session de l'utilisateur pour l'authentification", "Full Context Mode": "Mode avec injection complète dans le contexte", @@ -1012,6 +1029,7 @@ "ID": "ID", "ID cannot contain \":\" or \"|\" characters": "L'ID ne peut pas contenir les caractères « : » ou « | »", "ID copied to clipboard": "ID copié dans le presse-papiers", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "Autoriser les formulaires dans l'iframe sandbox", "iframe Sandbox Allow Same Origin": "Autoriser même origine dans l'iframe sandbox", "Ignite curiosity": "Éveiller la curiosité", @@ -1182,6 +1200,7 @@ "Max Speakers": "Nombre maximal d'intervenants", "Max Upload Count": "Nombre maximal de téléversements", "Max Upload Size": "Limite de taille de téléversement", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "Nombre maximum de fichiers autorisés par dossier.", "Maximum number of files per folder is {{max}}.": "Le nombre maximum de fichiers par dossier est de {{max}}.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Un maximum de 3 modèles peut être téléchargé en même temps. Veuillez réessayer ultérieurement.", @@ -1213,6 +1232,7 @@ "Microsoft OneDrive": "Microsoft OneDrive", "Microsoft OneDrive (personal)": "Microsoft OneDrive (personnel)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (travail/école)", + "min": "", "MinerU": "MinerU", "MinerU API Key required for Cloud API mode.": "Clé API MinerU requise pour le mode API Cloud.", "Mistral OCR": "Mistral OCR", @@ -1318,6 +1338,7 @@ "No kernel": "Aucun noyau", "No knowledge bases found.": "Aucune base de connaissances trouvée.", "No knowledge found": "Aucune connaissance trouvée", + "No limit": "", "No memories to clear": "Aucun souvenir à effacer", "No model IDs": "Aucun ID de modèle", "No models available": "Aucun modèle disponible", @@ -1390,6 +1411,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Oups ! Vous utilisez une méthode non prise en charge (frontend uniquement). Veuillez servir l'interface Web à partir du backend.", "Open file": "Ouvrir le fichier", "Open in full screen": "Ouvrir en plein écran", + "Open in new tab": "", "Open link": "Ouvrir le lien", "Open modal to configure connection": "Ouvrir la fenêtre modale pour configurer la connexion", "Open Modal To Manage Floating Quick Actions": "Ouvrir la fenêtre de gestion des actions rapides flottantes", @@ -1450,6 +1472,7 @@ "Perplexity Model": "Modèle de Perplexity", "Perplexity Search API URL": "URL de l'API Perplexity Search", "Perplexity Search Context Usage": "Utilisation du contexte de recherche de Perplexity", + "Persistent": "", "Personalization": "Personnalisation", "Pin": "Épingler", "Pinned": "Épinglé", @@ -1486,6 +1509,7 @@ "Please select a valid JSON file": "Veuillez sélectionner un fichier JSON valide", "Please select at least one user for Direct Message channel.": "Veuillez sélectionner au moins un utilisateur pour un canal de message direct.", "Please wait until all files are uploaded.": "Veuillez patienter jusqu'à ce que tous les fichiers soient téléchargés.", + "Policy ID": "", "Port": "Port", "Ports": "Ports", "Positive attitude": "Attitude positive", @@ -1565,6 +1589,7 @@ "Remove image": "Retirer l'image", "Remove Model": "Retirer le modèle", "Rename": "Renommer", + "Renamed to {{name}}": "", "Render Markdown in Previews": "Afficher le Markdown dans les aperçus", "Reorder Models": "Réorganiser les modèles", "Reply": "Répondre", @@ -1631,6 +1656,7 @@ "Search Groups": "Rechercher des groupes", "Search In Models": "Rechercher dans les modèles", "Search Knowledge": "Rechercher des connaissances", + "Search Memories": "", "Search Models": "Rechercher des modèles", "Search Notes": "Rechercher des notes", "Search options": "Options de recherche", @@ -1672,6 +1698,7 @@ "Select a theme": "Sélectionnez un thème", "Select a tool": "Sélectionnez un outil", "Select a voice": "Sélectionnez une voix", + "Select All": "", "Select an auth method": "Veuillez sélectionner une méthode de connexion", "Select an embedding model engine": "Sélectionnez un moteur de modèle d'embedding", "Select an engine": "Sélectionnez un moteur", @@ -1700,6 +1727,7 @@ "Serper API Key": "Clé API Serper", "Serply API Key": "Clé API Serply", "Serpstack API Key": "Clé API Serpstack", + "Server connection failed": "", "Server connection verified": "Connexion au serveur vérifiée", "Session": "Session", "Set as default": "Définir comme valeur par défaut", @@ -1801,6 +1829,7 @@ "Stop Download": "Arrêter le téléchargement", "Stop Generating": "Arrêter la génération", "Stop Sequence": "Séquence d'arrêt", + "Storage": "", "Stream Chat Response": "Streamer la réponse de la conversation", "Stream Delta Chunk Size": "Taille des blocs delta du streaming", "Streamable HTTP": "Streamable HTTP", diff --git a/src/lib/i18n/locales/gl-ES/translation.json b/src/lib/i18n/locales/gl-ES/translation.json index e2425db491..88825cb831 100644 --- a/src/lib/i18n/locales/gl-ES/translation.json +++ b/src/lib/i18n/locales/gl-ES/translation.json @@ -17,6 +17,8 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "{{COUNT}} Respostas", "{{COUNT}} Rows": "", + "{{count}} selected_one": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", "{{COUNT}}d_time_ago": "", @@ -127,6 +129,7 @@ "Allow File Upload": "Permitir asubida de Arquivos", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Permitir voces non locales", + "Allow public write access": "", "Allow Rate Response": "", "Allow Regenerate Response": "", "Allow Sharing With Users": "", @@ -181,6 +184,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "¿Seguro que queres eliminar este canal?", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "¿Seguro que queres eliminar este mensaxe? ", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +383,7 @@ "Configure": "Configurar", "Confirm": "Confirmar", "Confirm Password": "Confirmar Contrasinal ", + "Confirm Prompt from Embed": "", "Confirm your action": "Confirma a tua acción", "Confirm your new password": "Confirmar o teu novo contrasinal ", "Confirm Your Password": "", @@ -386,6 +392,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "Conecta os teus propios Api compatibles con OpenAI.", "Connect to your own OpenAPI compatible external tool servers.": "", + "Connected ({{type}})": "", "Connection failed": "", "Connection successful": "", "Connection Type": "", @@ -426,6 +433,7 @@ "Copying to clipboard was successful!": "!A copia o portapapeis realizouse correctamente!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "O CORS debe estar debidamente configurado polo provedor para permitir solicitudes desde Open WebUI.", "Could not read file.": "", + "CPU": "", "Create": "Xerar", "Create a knowledge base": "Xerar base de conocemento", "Create a model": "Xerar un modelo", @@ -497,6 +505,7 @@ "Delete File": "", "Delete folder?": "¿Eliminar carpeta?", "Delete function?": "Borrar afunción?", + "Delete Memory?": "", "Delete Message": "Eliminar mensaxe", "Delete message?": "", "Delete Model": "", @@ -510,6 +519,7 @@ "Deleted": "", "Deleted {{deleteModelTag}}": "Se borró {{deleteModelTag}}", "Deleted {{name}}": "Eliminado {{nombre}}", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "Usuario eliminado", "Deployment names are required for Azure OpenAI": "", "Desc": "", @@ -518,6 +528,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "Describe a tua base de coñecementos e obxetivos", "Description": "Descripción", + "Deselect": "", "Detect Artifacts Automatically": "", "Dictate": "", "Didn't fully follow instructions": "Non sigueu as instruccions", @@ -780,6 +791,8 @@ "Enter Your Username": "Ingrese o seu nome de usuario", "Enter your webhook URL": "Ingrese a sua URL de webhook", "Entra ID": "", + "Environment Variables": "", + "Ephemeral": "", "Error": "Error", "ERROR": "ERROR", "Error accessing directory": "", @@ -856,6 +869,7 @@ "Failed to save connections": "", "Failed to save conversation": "Non puido gardarse a conversa", "Failed to save models configuration": "Non pudogardarse a configuración de os modelos", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "Falla al actualizar os ajustes", @@ -871,6 +885,7 @@ "Feedback History": "Historial de retroalimentación", "Feel free to add specific details": "Libre de agregar detalles específicos", "Female": "", + "Fetch URL Content Length Limit": "", "File": "Arquivo", "File added successfully.": "Arquivo agregado correctamente.", "File attached to chat": "", @@ -925,6 +940,7 @@ "Format Lines": "", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "", "Formatting may be inconsistent from source.": "", + "Forward": "", "Forwards system user OAuth access token to authenticate": "", "Forwards system user session credentials to authenticate": "", "Full Context Mode": "", @@ -1012,6 +1028,7 @@ "ID": "ID", "ID cannot contain \":\" or \"|\" characters": "", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "", "iframe Sandbox Allow Same Origin": "", "Ignite curiosity": "Encender a curiosidad", @@ -1182,6 +1199,7 @@ "Max Speakers": "", "Max Upload Count": "Cantidad máxima de cargas", "Max Upload Size": "Tamaño máximo de Cargas", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Podense descargar un máximo de 3 modelos simultáneamente. Por favor, intenteo de novo mais tarde.", @@ -1213,6 +1231,7 @@ "Microsoft OneDrive": "", "Microsoft OneDrive (personal)": "", "Microsoft OneDrive (work/school)": "", + "min": "", "MinerU": "", "MinerU API Key required for Cloud API mode.": "", "Mistral OCR": "", @@ -1318,6 +1337,7 @@ "No kernel": "", "No knowledge bases found.": "", "No knowledge found": "No se encontrou ningún coñecemento", + "No limit": "", "No memories to clear": "Non hay memorias que limpar", "No model IDs": "Non ten IDs de modelos", "No models available": "", @@ -1390,6 +1410,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "¡Ups! Estás utilizando un método no compatible (solo frontend). Por favor ejecute a WebUI desde o backend.", "Open file": "Abrir arquivo", "Open in full screen": "Abrir en pantalla completa", + "Open in new tab": "", "Open link": "", "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", @@ -1450,6 +1471,7 @@ "Perplexity Model": "", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "", + "Persistent": "", "Personalization": "Personalización", "Pin": "Fijar", "Pinned": "Fijado", @@ -1486,6 +1508,7 @@ "Please select a valid JSON file": "", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "", + "Policy ID": "", "Port": "Puerto", "Ports": "", "Positive attitude": "Actitud positiva", @@ -1565,6 +1588,7 @@ "Remove image": "", "Remove Model": "Eliminar modelo", "Rename": "Renombrar", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "Reordenar modelos", "Reply": "", @@ -1630,6 +1654,7 @@ "Search Groups": "", "Search In Models": "", "Search Knowledge": "Buscar coñecemento", + "Search Memories": "", "Search Models": "Buscar Modelos", "Search Notes": "", "Search options": "Opcions de búsqueda", @@ -1671,6 +1696,7 @@ "Select a theme": "", "Select a tool": "Busca unha ferramenta", "Select a voice": "", + "Select All": "", "Select an auth method": "", "Select an embedding model engine": "", "Select an engine": "", @@ -1699,6 +1725,7 @@ "Serper API Key": "chave API de Serper", "Serply API Key": "chave API de Serply", "Serpstack API Key": "chave API de Serpstack", + "Server connection failed": "", "Server connection verified": "Conexión do servidor verificada", "Session": "", "Set as default": "Establecer por defecto", @@ -1800,6 +1827,7 @@ "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Detener secuencia", + "Storage": "", "Stream Chat Response": "Transmitir resposta de chat", "Stream Delta Chunk Size": "", "Streamable HTTP": "", diff --git a/src/lib/i18n/locales/he-IL/translation.json b/src/lib/i18n/locales/he-IL/translation.json index b8a360efac..202b7f8cd9 100644 --- a/src/lib/i18n/locales/he-IL/translation.json +++ b/src/lib/i18n/locales/he-IL/translation.json @@ -17,6 +17,9 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "", "{{COUNT}} Rows": "", + "{{count}} selected_one": "", + "{{count}} selected_two": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", "{{COUNT}}d_time_ago": "", @@ -127,6 +130,7 @@ "Allow File Upload": "אפשר העלאת קובץ", "Allow Multiple Models in Chat": "", "Allow non-local voices": "", + "Allow public write access": "", "Allow Rate Response": "", "Allow Regenerate Response": "", "Allow Sharing With Users": "", @@ -181,6 +185,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +384,7 @@ "Configure": "", "Confirm": "", "Confirm Password": "אשר סיסמה", + "Confirm Prompt from Embed": "", "Confirm your action": "אשר את הפעולה שלך", "Confirm your new password": "אשר את הסיסמה החדשה שלך", "Confirm Your Password": "", @@ -386,6 +393,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAPI compatible external tool servers.": "", + "Connected ({{type}})": "", "Connection failed": "החיבור נכשל", "Connection successful": "החיבור הצליח", "Connection Type": "סוג חיבור", @@ -426,6 +434,7 @@ "Copying to clipboard was successful!": "ההעתקה ללוח הייתה מוצלחת!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "", "Could not read file.": "", + "CPU": "", "Create": "", "Create a knowledge base": "", "Create a model": "יצירת מודל", @@ -497,6 +506,7 @@ "Delete File": "", "Delete folder?": "", "Delete function?": "", + "Delete Memory?": "", "Delete Message": "", "Delete message?": "", "Delete Model": "", @@ -510,6 +520,7 @@ "Deleted": "", "Deleted {{deleteModelTag}}": "נמחק {{deleteModelTag}}", "Deleted {{name}}": "נמחק {{name}}", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "", "Deployment names are required for Azure OpenAI": "", "Desc": "", @@ -518,6 +529,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "", "Description": "תיאור", + "Deselect": "", "Detect Artifacts Automatically": "", "Dictate": "", "Didn't fully follow instructions": "לא עקב אחרי ההוראות באופן מלא", @@ -780,6 +792,8 @@ "Enter Your Username": "", "Enter your webhook URL": "", "Entra ID": "", + "Environment Variables": "", + "Ephemeral": "", "Error": "שגיאה", "ERROR": "", "Error accessing directory": "", @@ -856,6 +870,7 @@ "Failed to save connections": "", "Failed to save conversation": "שמירת השיחה נכשלה", "Failed to save models configuration": "", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "", @@ -871,6 +886,7 @@ "Feedback History": "", "Feel free to add specific details": "נא להוסיף פרטים ספציפיים לפי רצון", "Female": "", + "Fetch URL Content Length Limit": "", "File": "", "File added successfully.": "", "File attached to chat": "", @@ -925,6 +941,7 @@ "Format Lines": "", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "", "Formatting may be inconsistent from source.": "", + "Forward": "", "Forwards system user OAuth access token to authenticate": "", "Forwards system user session credentials to authenticate": "", "Full Context Mode": "", @@ -1012,6 +1029,7 @@ "ID": "", "ID cannot contain \":\" or \"|\" characters": "", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "", "iframe Sandbox Allow Same Origin": "", "Ignite curiosity": "", @@ -1182,6 +1200,7 @@ "Max Speakers": "", "Max Upload Count": "", "Max Upload Size": "", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "ניתן להוריד מקסימום 3 מודלים בו זמנית. אנא נסה שוב מאוחר יותר.", @@ -1213,6 +1232,7 @@ "Microsoft OneDrive": "", "Microsoft OneDrive (personal)": "", "Microsoft OneDrive (work/school)": "", + "min": "", "MinerU": "", "MinerU API Key required for Cloud API mode.": "", "Mistral OCR": "", @@ -1318,6 +1338,7 @@ "No kernel": "", "No knowledge bases found.": "", "No knowledge found": "", + "No limit": "", "No memories to clear": "", "No model IDs": "", "No models available": "", @@ -1390,6 +1411,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "אופס! אתה משתמש בשיטה לא נתמכת (רק חזית). אנא שרת את ממשק המשתמש האינטרנטי מהשרת האחורי.", "Open file": "", "Open in full screen": "", + "Open in new tab": "", "Open link": "", "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", @@ -1450,6 +1472,7 @@ "Perplexity Model": "", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "", + "Persistent": "", "Personalization": "תאור", "Pin": "", "Pinned": "", @@ -1486,6 +1509,7 @@ "Please select a valid JSON file": "", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "", + "Policy ID": "", "Port": "", "Ports": "", "Positive attitude": "גישה חיובית", @@ -1565,6 +1589,7 @@ "Remove image": "", "Remove Model": "הסר מודל", "Rename": "שנה שם", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "", "Reply": "", @@ -1631,6 +1656,7 @@ "Search Groups": "", "Search In Models": "", "Search Knowledge": "", + "Search Memories": "", "Search Models": "חיפוש מודלים", "Search Notes": "", "Search options": "", @@ -1672,6 +1698,7 @@ "Select a theme": "", "Select a tool": "בחר כלי", "Select a voice": "", + "Select All": "", "Select an auth method": "", "Select an embedding model engine": "", "Select an engine": "", @@ -1700,6 +1727,7 @@ "Serper API Key": "מפתח Serper API", "Serply API Key": "", "Serpstack API Key": "מפתח API של Serpstack", + "Server connection failed": "", "Server connection verified": "החיבור לשרת אומת", "Session": "", "Set as default": "הגדר כברירת מחדל", @@ -1801,6 +1829,7 @@ "Stop Download": "", "Stop Generating": "", "Stop Sequence": "סידור עצירה", + "Storage": "", "Stream Chat Response": "", "Stream Delta Chunk Size": "", "Streamable HTTP": "", diff --git a/src/lib/i18n/locales/hi-IN/translation.json b/src/lib/i18n/locales/hi-IN/translation.json index c3894c9546..50b8ca55d1 100644 --- a/src/lib/i18n/locales/hi-IN/translation.json +++ b/src/lib/i18n/locales/hi-IN/translation.json @@ -17,6 +17,8 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "", "{{COUNT}} Rows": "", + "{{count}} selected_one": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", "{{COUNT}}d_time_ago": "", @@ -127,6 +129,7 @@ "Allow File Upload": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "", + "Allow public write access": "", "Allow Rate Response": "", "Allow Regenerate Response": "", "Allow Sharing With Users": "", @@ -181,6 +184,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +383,7 @@ "Configure": "", "Confirm": "", "Confirm Password": "पासवर्ड की पुष्टि कीजिये", + "Confirm Prompt from Embed": "", "Confirm your action": "", "Confirm your new password": "", "Confirm Your Password": "", @@ -386,6 +392,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAPI compatible external tool servers.": "", + "Connected ({{type}})": "", "Connection failed": "", "Connection successful": "", "Connection Type": "", @@ -426,6 +433,7 @@ "Copying to clipboard was successful!": "क्लिपबोर्ड पर कॉपी बनाना सफल रहा!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "", "Could not read file.": "", + "CPU": "", "Create": "", "Create a knowledge base": "", "Create a model": "एक मॉडल बनाएं", @@ -497,6 +505,7 @@ "Delete File": "", "Delete folder?": "", "Delete function?": "", + "Delete Memory?": "", "Delete Message": "", "Delete message?": "", "Delete Model": "", @@ -510,6 +519,7 @@ "Deleted": "", "Deleted {{deleteModelTag}}": "{{deleteModelTag}} हटा दिया गया", "Deleted {{name}}": "{{name}} हटा दिया गया", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "", "Deployment names are required for Azure OpenAI": "", "Desc": "", @@ -518,6 +528,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "", "Description": "विवरण", + "Deselect": "", "Detect Artifacts Automatically": "", "Dictate": "", "Didn't fully follow instructions": "निर्देशों का पूरी तरह से पालन नहीं किया", @@ -780,6 +791,8 @@ "Enter Your Username": "", "Enter your webhook URL": "", "Entra ID": "", + "Environment Variables": "", + "Ephemeral": "", "Error": "चूक", "ERROR": "", "Error accessing directory": "", @@ -856,6 +869,7 @@ "Failed to save connections": "", "Failed to save conversation": "वार्तालाप सहेजने में विफल", "Failed to save models configuration": "", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "", @@ -871,6 +885,7 @@ "Feedback History": "", "Feel free to add specific details": "विशिष्ट विवरण जोड़ने के लिए स्वतंत्र महसूस करें", "Female": "", + "Fetch URL Content Length Limit": "", "File": "", "File added successfully.": "", "File attached to chat": "", @@ -925,6 +940,7 @@ "Format Lines": "", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "", "Formatting may be inconsistent from source.": "", + "Forward": "", "Forwards system user OAuth access token to authenticate": "", "Forwards system user session credentials to authenticate": "", "Full Context Mode": "", @@ -1012,6 +1028,7 @@ "ID": "", "ID cannot contain \":\" or \"|\" characters": "", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "", "iframe Sandbox Allow Same Origin": "", "Ignite curiosity": "", @@ -1182,6 +1199,7 @@ "Max Speakers": "", "Max Upload Count": "", "Max Upload Size": "", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "अधिकतम 3 मॉडल एक साथ डाउनलोड किये जा सकते हैं। कृपया बाद में पुन: प्रयास करें।", @@ -1213,6 +1231,7 @@ "Microsoft OneDrive": "", "Microsoft OneDrive (personal)": "", "Microsoft OneDrive (work/school)": "", + "min": "", "MinerU": "", "MinerU API Key required for Cloud API mode.": "", "Mistral OCR": "", @@ -1318,6 +1337,7 @@ "No kernel": "", "No knowledge bases found.": "", "No knowledge found": "", + "No limit": "", "No memories to clear": "", "No model IDs": "", "No models available": "", @@ -1390,6 +1410,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "उफ़! आप एक असमर्थित विधि (केवल फ्रंटएंड) का उपयोग कर रहे हैं। कृपया बैकएंड से WebUI सर्वे करें।", "Open file": "", "Open in full screen": "", + "Open in new tab": "", "Open link": "", "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", @@ -1450,6 +1471,7 @@ "Perplexity Model": "", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "", + "Persistent": "", "Personalization": "पेरसनलाइज़मेंट", "Pin": "", "Pinned": "", @@ -1486,6 +1508,7 @@ "Please select a valid JSON file": "", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "", + "Policy ID": "", "Port": "", "Ports": "", "Positive attitude": "सकारात्मक रवैया", @@ -1565,6 +1588,7 @@ "Remove image": "", "Remove Model": "मोडेल हटाएँ", "Rename": "नाम बदलें", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "", "Reply": "", @@ -1630,6 +1654,7 @@ "Search Groups": "", "Search In Models": "", "Search Knowledge": "", + "Search Memories": "", "Search Models": "मॉडल खोजें", "Search Notes": "", "Search options": "", @@ -1671,6 +1696,7 @@ "Select a theme": "", "Select a tool": "", "Select a voice": "", + "Select All": "", "Select an auth method": "", "Select an embedding model engine": "", "Select an engine": "", @@ -1699,6 +1725,7 @@ "Serper API Key": "Serper API कुंजी", "Serply API Key": "", "Serpstack API Key": "सर्पस्टैक एपीआई कुंजी", + "Server connection failed": "", "Server connection verified": "सर्वर कनेक्शन सत्यापित", "Session": "", "Set as default": "डिफाल्ट के रूप में सेट", @@ -1800,6 +1827,7 @@ "Stop Download": "", "Stop Generating": "", "Stop Sequence": "अनुक्रम रोकें", + "Storage": "", "Stream Chat Response": "", "Stream Delta Chunk Size": "", "Streamable HTTP": "", diff --git a/src/lib/i18n/locales/hr-HR/translation.json b/src/lib/i18n/locales/hr-HR/translation.json index f60e902a1f..2f58546e0b 100644 --- a/src/lib/i18n/locales/hr-HR/translation.json +++ b/src/lib/i18n/locales/hr-HR/translation.json @@ -17,6 +17,9 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "", "{{COUNT}} Rows": "", + "{{count}} selected_one": "", + "{{count}} selected_few": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", "{{COUNT}}d_time_ago": "", @@ -127,6 +130,7 @@ "Allow File Upload": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Dopusti nelokalne glasove", + "Allow public write access": "", "Allow Rate Response": "", "Allow Regenerate Response": "", "Allow Sharing With Users": "", @@ -181,6 +185,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +384,7 @@ "Configure": "", "Confirm": "", "Confirm Password": "Potvrdite lozinku", + "Confirm Prompt from Embed": "", "Confirm your action": "", "Confirm your new password": "", "Confirm Your Password": "", @@ -386,6 +393,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAPI compatible external tool servers.": "", + "Connected ({{type}})": "", "Connection failed": "", "Connection successful": "", "Connection Type": "", @@ -426,6 +434,7 @@ "Copying to clipboard was successful!": "Kopiranje u međuspremnik je uspješno!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "", "Could not read file.": "", + "CPU": "", "Create": "", "Create a knowledge base": "", "Create a model": "Izradite model", @@ -497,6 +506,7 @@ "Delete File": "", "Delete folder?": "", "Delete function?": "", + "Delete Memory?": "", "Delete Message": "", "Delete message?": "", "Delete Model": "", @@ -510,6 +520,7 @@ "Deleted": "", "Deleted {{deleteModelTag}}": "Izbrisan {{deleteModelTag}}", "Deleted {{name}}": "Izbrisano {{name}}", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "", "Deployment names are required for Azure OpenAI": "", "Desc": "", @@ -518,6 +529,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "", "Description": "Opis", + "Deselect": "", "Detect Artifacts Automatically": "", "Dictate": "", "Didn't fully follow instructions": "Nije u potpunosti slijedio upute", @@ -780,6 +792,8 @@ "Enter Your Username": "", "Enter your webhook URL": "", "Entra ID": "", + "Environment Variables": "", + "Ephemeral": "", "Error": "Greška", "ERROR": "", "Error accessing directory": "", @@ -856,6 +870,7 @@ "Failed to save connections": "", "Failed to save conversation": "Neuspješno spremanje razgovora", "Failed to save models configuration": "", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "Greška kod ažuriranja postavki", @@ -871,6 +886,7 @@ "Feedback History": "", "Feel free to add specific details": "Slobodno dodajte specifične detalje", "Female": "", + "Fetch URL Content Length Limit": "", "File": "", "File added successfully.": "", "File attached to chat": "", @@ -925,6 +941,7 @@ "Format Lines": "", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "", "Formatting may be inconsistent from source.": "", + "Forward": "", "Forwards system user OAuth access token to authenticate": "", "Forwards system user session credentials to authenticate": "", "Full Context Mode": "", @@ -1012,6 +1029,7 @@ "ID": "", "ID cannot contain \":\" or \"|\" characters": "", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "", "iframe Sandbox Allow Same Origin": "", "Ignite curiosity": "", @@ -1182,6 +1200,7 @@ "Max Speakers": "", "Max Upload Count": "", "Max Upload Size": "", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maksimalno 3 modela se mogu preuzeti istovremeno. Pokušajte ponovo kasnije.", @@ -1213,6 +1232,7 @@ "Microsoft OneDrive": "", "Microsoft OneDrive (personal)": "", "Microsoft OneDrive (work/school)": "", + "min": "", "MinerU": "", "MinerU API Key required for Cloud API mode.": "", "Mistral OCR": "", @@ -1318,6 +1338,7 @@ "No kernel": "", "No knowledge bases found.": "", "No knowledge found": "", + "No limit": "", "No memories to clear": "", "No model IDs": "", "No models available": "", @@ -1390,6 +1411,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Ups! Koristite nepodržanu metodu (samo frontend). Molimo poslužite WebUI s backend-a.", "Open file": "", "Open in full screen": "", + "Open in new tab": "", "Open link": "", "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", @@ -1450,6 +1472,7 @@ "Perplexity Model": "", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "", + "Persistent": "", "Personalization": "Prilagodba", "Pin": "", "Pinned": "", @@ -1486,6 +1509,7 @@ "Please select a valid JSON file": "", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "", + "Policy ID": "", "Port": "", "Ports": "", "Positive attitude": "Pozitivan stav", @@ -1565,6 +1589,7 @@ "Remove image": "", "Remove Model": "Ukloni model", "Rename": "Preimenuj", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "", "Reply": "", @@ -1631,6 +1656,7 @@ "Search Groups": "", "Search In Models": "", "Search Knowledge": "", + "Search Memories": "", "Search Models": "Pretražite modele", "Search Notes": "", "Search options": "", @@ -1672,6 +1698,7 @@ "Select a theme": "", "Select a tool": "", "Select a voice": "", + "Select All": "", "Select an auth method": "", "Select an embedding model engine": "", "Select an engine": "", @@ -1700,6 +1727,7 @@ "Serper API Key": "Serper API ključ", "Serply API Key": "Serply API ključ", "Serpstack API Key": "Serpstack API API ključ", + "Server connection failed": "", "Server connection verified": "Veza s poslužiteljem potvrđena", "Session": "", "Set as default": "Postavi kao zadano", @@ -1801,6 +1829,7 @@ "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Zaustavi sekvencu", + "Storage": "", "Stream Chat Response": "", "Stream Delta Chunk Size": "", "Streamable HTTP": "", diff --git a/src/lib/i18n/locales/hu-HU/translation.json b/src/lib/i18n/locales/hu-HU/translation.json index 9485825248..ac95dd0068 100644 --- a/src/lib/i18n/locales/hu-HU/translation.json +++ b/src/lib/i18n/locales/hu-HU/translation.json @@ -17,6 +17,8 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "{{COUNT}} Válasz", "{{COUNT}} Rows": "", + "{{count}} selected_one": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", "{{COUNT}}d_time_ago": "", @@ -127,6 +129,7 @@ "Allow File Upload": "Fájlfeltöltés engedélyezése", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Nem helyi hangok engedélyezése", + "Allow public write access": "", "Allow Rate Response": "", "Allow Regenerate Response": "", "Allow Sharing With Users": "", @@ -181,6 +184,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "Biztosan törölni szeretnéd ezt a csatornát?", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "Biztosan törölni szeretnéd ezt az üzenetet?", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +383,7 @@ "Configure": "Konfigurálás", "Confirm": "Megerősítés", "Confirm Password": "Jelszó megerősítése", + "Confirm Prompt from Embed": "", "Confirm your action": "Erősítsd meg a műveletet", "Confirm your new password": "Erősítsd meg az új jelszavad", "Confirm Your Password": "", @@ -386,6 +392,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "Csatlakozz saját OpenAI kompatibilis API végpontjaidhoz.", "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 successful": "Kapcsolat sikeres", "Connection Type": "", @@ -426,6 +433,7 @@ "Copying to clipboard was successful!": "Sikeres másolás a vágólapra!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "A CORS-t megfelelően kell konfigurálnia a szolgáltatónak, hogy engedélyezze az Open WebUI-ból érkező kéréseket.", "Could not read file.": "", + "CPU": "", "Create": "Létrehozás", "Create a knowledge base": "Tudásbázis létrehozása", "Create a model": "Modell létrehozása", @@ -497,6 +505,7 @@ "Delete File": "", "Delete folder?": "Törli a mappát?", "Delete function?": "Törli a funkciót?", + "Delete Memory?": "", "Delete Message": "Üzenet törlése", "Delete message?": "Üzenet törlése?", "Delete Model": "", @@ -510,6 +519,7 @@ "Deleted": "", "Deleted {{deleteModelTag}}": "{{deleteModelTag}} törölve", "Deleted {{name}}": "{{name}} törölve", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "Felhasználó törölve", "Deployment names are required for Azure OpenAI": "", "Desc": "", @@ -518,6 +528,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "Írd le a tudásbázisodat és céljaidat", "Description": "Leírás", + "Deselect": "", "Detect Artifacts Automatically": "", "Dictate": "", "Didn't fully follow instructions": "Nem követte teljesen az utasításokat", @@ -780,6 +791,8 @@ "Enter Your Username": "Add meg a felhasználóneved", "Enter your webhook URL": "Add meg a webhook URL-t", "Entra ID": "", + "Environment Variables": "", + "Ephemeral": "", "Error": "Hiba", "ERROR": "HIBA", "Error accessing directory": "", @@ -856,6 +869,7 @@ "Failed to save connections": "Nem sikerült menteni a kapcsolatokat", "Failed to save conversation": "Nem sikerült menteni a beszélgetést", "Failed to save models configuration": "Nem sikerült menteni a modellek konfigurációját", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "Nem sikerült frissíteni a beállításokat", @@ -871,6 +885,7 @@ "Feedback History": "Visszajelzés előzmények", "Feel free to add specific details": "Nyugodtan adj hozzá specifikus részleteket", "Female": "", + "Fetch URL Content Length Limit": "", "File": "Fájl", "File added successfully.": "Fájl sikeresen hozzáadva.", "File attached to chat": "", @@ -925,6 +940,7 @@ "Format Lines": "", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "", "Formatting may be inconsistent from source.": "", + "Forward": "", "Forwards system user OAuth access token to authenticate": "", "Forwards system user session credentials to authenticate": "Továbbítja a rendszer felhasználói munkamenet hitelesítő adatait a hitelesítéshez", "Full Context Mode": "Teljes kontextus mód", @@ -1012,6 +1028,7 @@ "ID": "Azonosító", "ID cannot contain \":\" or \"|\" characters": "", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "", "iframe Sandbox Allow Same Origin": "", "Ignite curiosity": "Kíváncsiság felkeltése", @@ -1182,6 +1199,7 @@ "Max Speakers": "", "Max Upload Count": "Maximum feltöltések száma", "Max Upload Size": "Maximum feltöltési méret", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maximum 3 modell tölthető le egyszerre. Kérjük, próbálja újra később.", @@ -1213,6 +1231,7 @@ "Microsoft OneDrive": "", "Microsoft OneDrive (personal)": "", "Microsoft OneDrive (work/school)": "", + "min": "", "MinerU": "", "MinerU API Key required for Cloud API mode.": "", "Mistral OCR": "Mistral OCR", @@ -1318,6 +1337,7 @@ "No kernel": "", "No knowledge bases found.": "", "No knowledge found": "Nem található tudásbázis", + "No limit": "", "No memories to clear": "Nincs törlendő memória", "No model IDs": "Nincs modell azonosító", "No models available": "", @@ -1390,6 +1410,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Hoppá! Nem támogatott módszert használ (csak frontend). Kérjük, szolgálja ki a WebUI-t a backend-ről.", "Open file": "Fájl megnyitása", "Open in full screen": "Megnyitás teljes képernyőn", + "Open in new tab": "", "Open link": "", "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", @@ -1450,6 +1471,7 @@ "Perplexity Model": "", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "", + "Persistent": "", "Personalization": "Személyre szabás", "Pin": "Rögzítés", "Pinned": "Rögzítve", @@ -1486,6 +1508,7 @@ "Please select a valid JSON file": "", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "", + "Policy ID": "", "Port": "Port", "Ports": "", "Positive attitude": "Pozitív hozzáállás", @@ -1565,6 +1588,7 @@ "Remove image": "", "Remove Model": "Modell eltávolítása", "Rename": "Átnevezés", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "Modellek átrendezése", "Reply": "", @@ -1630,6 +1654,7 @@ "Search Groups": "", "Search In Models": "", "Search Knowledge": "Tudásbázis keresése", + "Search Memories": "", "Search Models": "Modellek keresése", "Search Notes": "", "Search options": "Keresési opciók", @@ -1671,6 +1696,7 @@ "Select a theme": "", "Select a tool": "Válasszon egy eszközt", "Select a voice": "", + "Select All": "", "Select an auth method": "Válasszon egy hitelesítési módszert", "Select an embedding model engine": "", "Select an engine": "", @@ -1699,6 +1725,7 @@ "Serper API Key": "Serper API kulcs", "Serply API Key": "Serply API kulcs", "Serpstack API Key": "Serpstack API kulcs", + "Server connection failed": "", "Server connection verified": "Szerverkapcsolat ellenőrizve", "Session": "", "Set as default": "Beállítás alapértelmezettként", @@ -1800,6 +1827,7 @@ "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Leállítási szekvencia", + "Storage": "", "Stream Chat Response": "Chat válasz streamelése", "Stream Delta Chunk Size": "", "Streamable HTTP": "", diff --git a/src/lib/i18n/locales/id-ID/translation.json b/src/lib/i18n/locales/id-ID/translation.json index d6f1dd0b96..e138bd39ca 100644 --- a/src/lib/i18n/locales/id-ID/translation.json +++ b/src/lib/i18n/locales/id-ID/translation.json @@ -17,6 +17,7 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "", "{{COUNT}} Rows": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", "{{COUNT}}d_time_ago": "", @@ -127,6 +128,7 @@ "Allow File Upload": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Izinkan suara non-lokal", + "Allow public write access": "", "Allow Rate Response": "", "Allow Regenerate Response": "", "Allow Sharing With Users": "", @@ -181,6 +183,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +382,7 @@ "Configure": "", "Confirm": "Konfirmasi", "Confirm Password": "Konfirmasi Kata Sandi", + "Confirm Prompt from Embed": "", "Confirm your action": "Konfirmasi tindakan Anda", "Confirm your new password": "", "Confirm Your Password": "", @@ -386,6 +391,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAPI compatible external tool servers.": "", + "Connected ({{type}})": "", "Connection failed": "", "Connection successful": "", "Connection Type": "", @@ -426,6 +432,7 @@ "Copying to clipboard was successful!": "Penyalinan ke papan klip berhasil!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "", "Could not read file.": "", + "CPU": "", "Create": "", "Create a knowledge base": "", "Create a model": "Buat model", @@ -497,6 +504,7 @@ "Delete File": "", "Delete folder?": "", "Delete function?": "Fungsi hapus?", + "Delete Memory?": "", "Delete Message": "", "Delete message?": "", "Delete Model": "", @@ -510,6 +518,7 @@ "Deleted": "", "Deleted {{deleteModelTag}}": "Menghapus {{deleteModelTag}}", "Deleted {{name}}": "Menghapus {{name}}", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "", "Deployment names are required for Azure OpenAI": "", "Desc": "", @@ -518,6 +527,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "", "Description": "Deskripsi", + "Deselect": "", "Detect Artifacts Automatically": "", "Dictate": "", "Didn't fully follow instructions": "Tidak sepenuhnya mengikuti instruksi", @@ -780,6 +790,8 @@ "Enter Your Username": "", "Enter your webhook URL": "", "Entra ID": "", + "Environment Variables": "", + "Ephemeral": "", "Error": "Kesalahan", "ERROR": "", "Error accessing directory": "", @@ -856,6 +868,7 @@ "Failed to save connections": "", "Failed to save conversation": "Gagal menyimpan percakapan", "Failed to save models configuration": "", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "Gagal memperbarui pengaturan", @@ -871,6 +884,7 @@ "Feedback History": "", "Feel free to add specific details": "Jangan ragu untuk menambahkan detail spesifik", "Female": "", + "Fetch URL Content Length Limit": "", "File": "Berkas", "File added successfully.": "", "File attached to chat": "", @@ -925,6 +939,7 @@ "Format Lines": "", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "", "Formatting may be inconsistent from source.": "", + "Forward": "", "Forwards system user OAuth access token to authenticate": "", "Forwards system user session credentials to authenticate": "", "Full Context Mode": "", @@ -1012,6 +1027,7 @@ "ID": "", "ID cannot contain \":\" or \"|\" characters": "", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "", "iframe Sandbox Allow Same Origin": "", "Ignite curiosity": "", @@ -1182,6 +1198,7 @@ "Max Speakers": "", "Max Upload Count": "", "Max Upload Size": "", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maksimal 3 model dapat diunduh secara bersamaan. Silakan coba lagi nanti.", @@ -1213,6 +1230,7 @@ "Microsoft OneDrive": "", "Microsoft OneDrive (personal)": "", "Microsoft OneDrive (work/school)": "", + "min": "", "MinerU": "", "MinerU API Key required for Cloud API mode.": "", "Mistral OCR": "", @@ -1318,6 +1336,7 @@ "No kernel": "", "No knowledge bases found.": "", "No knowledge found": "", + "No limit": "", "No memories to clear": "", "No model IDs": "", "No models available": "", @@ -1390,6 +1409,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Ups! Anda menggunakan metode yang tidak didukung (hanya untuk frontend). Silakan sajikan WebUI dari backend.", "Open file": "", "Open in full screen": "", + "Open in new tab": "", "Open link": "", "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", @@ -1450,6 +1470,7 @@ "Perplexity Model": "", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "", + "Persistent": "", "Personalization": "Personalisasi", "Pin": "", "Pinned": "", @@ -1486,6 +1507,7 @@ "Please select a valid JSON file": "", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "", + "Policy ID": "", "Port": "", "Ports": "", "Positive attitude": "Sikap positif", @@ -1565,6 +1587,7 @@ "Remove image": "", "Remove Model": "Hapus Model", "Rename": "Ganti nama", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "", "Reply": "", @@ -1629,6 +1652,7 @@ "Search Groups": "", "Search In Models": "", "Search Knowledge": "", + "Search Memories": "", "Search Models": "Cari Model", "Search Notes": "", "Search options": "", @@ -1670,6 +1694,7 @@ "Select a theme": "", "Select a tool": "Pilih alat", "Select a voice": "", + "Select All": "", "Select an auth method": "", "Select an embedding model engine": "", "Select an engine": "", @@ -1698,6 +1723,7 @@ "Serper API Key": "Kunci API Serper", "Serply API Key": "Kunci API Serply", "Serpstack API Key": "Kunci API Serpstack", + "Server connection failed": "", "Server connection verified": "Koneksi server diverifikasi", "Session": "", "Set as default": "Ditetapkan sebagai default", @@ -1799,6 +1825,7 @@ "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Hentikan Urutan", + "Storage": "", "Stream Chat Response": "", "Stream Delta Chunk Size": "", "Streamable HTTP": "", diff --git a/src/lib/i18n/locales/ie-GA/translation.json b/src/lib/i18n/locales/ie-GA/translation.json index dcc43a8475..1925c20fb1 100644 --- a/src/lib/i18n/locales/ie-GA/translation.json +++ b/src/lib/i18n/locales/ie-GA/translation.json @@ -17,6 +17,8 @@ "{{COUNT}} members": "{{COUNT}} ball", "{{COUNT}} Replies": "{{COUNT}} Freagra", "{{COUNT}} Rows": "{{COUNT}} Sraitheanna", + "{{count}} selected_one": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "{{COUNT}} Foinsí", "{{COUNT}} words": "{{COUNT}} focail", "{{COUNT}}d_time_ago": "l", @@ -127,6 +129,7 @@ "Allow File Upload": "Ceadaigh Uaslódáil Comhad", "Allow Multiple Models in Chat": "Ceadaigh Il-Samhlacha i gComhrá", "Allow non-local voices": "Lig guthanna neamh-áitiúla", + "Allow public write access": "", "Allow Rate Response": "Ceadaigh Freagairt Ráta", "Allow Regenerate Response": "Ceadaigh Freagra Athghiniúint", "Allow Sharing With Users": "Ceadaigh Comhroinnt le hÚsáideoirí", @@ -181,6 +184,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "An bhfuil tú cinnte gur mian leat \"{{NAME}}\" a scriosadh?", "Are you sure you want to delete all chats? This action cannot be undone.": "An bhfuil tú cinnte gur mian leat na comhráite go léir a scriosadh? Ní féidir an gníomh seo a chealú.", "Are you sure you want to delete this channel?": "An bhfuil tú cinnte gur mhaith leat an cainéal seo a scriosadh?", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "An bhfuil tú cinnte gur mhaith leat an teachtaireacht seo a scriosadh?", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "An bhfuil tú cinnte gur mian leat an leagan seo a scriosadh? Déanfar leaganacha linbh a athnascadh le tuismitheoir an leagain seo.", "Are you sure you want to delete this?": "", @@ -378,6 +383,7 @@ "Configure": "Cumraigh", "Confirm": "Deimhnigh", "Confirm Password": "Deimhnigh Pasfhocal", + "Confirm Prompt from Embed": "", "Confirm your action": "Deimhnigh do ghníomh", "Confirm your new password": "Deimhnigh do phasfhocal nua", "Confirm Your Password": "Deimhnigh Do Phasfhocal", @@ -386,6 +392,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "Ceangail le cásanna Open Terminal. Beidh rochtain ag gach úsáideoir ar bhrabhsáil comhad agus uirlisí críochfoirt trí na freastalaithe seo.", "Connect to your own OpenAI compatible API endpoints.": "Ceangail le do chríochphointí API atá comhoiriúnach le OpenAI.", "Connect to your own OpenAPI compatible external tool servers.": "Ceangail le do fhreastalaithe uirlisí seachtracha atá comhoiriúnach le OpenAPI.", + "Connected ({{type}})": "", "Connection failed": "Theip ar an gceangal", "Connection successful": "Ceangal rathúil", "Connection Type": "Cineál Ceangail", @@ -426,6 +433,7 @@ "Copying to clipboard was successful!": "D'éirigh le cóipeáil chuig an ngearrthaisce!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "Ní mór don soláthraí CORS a chumrú i gceart chun iarratais ó Open WebUI a cheadú.", "Could not read file.": "Níorbh fhéidir an comhad a léamh.", + "CPU": "", "Create": "Cruthaigh", "Create a knowledge base": "Cruthaigh bonn eolais", "Create a model": "Cruthaigh samhail", @@ -497,6 +505,7 @@ "Delete File": "Scrios Comhad", "Delete folder?": "Scrios fillteán?", "Delete function?": "Scrios feidhm?", + "Delete Memory?": "", "Delete Message": "Scrios Teachtaireacht", "Delete message?": "Scrios teachtaireacht?", "Delete Model": "Scrios an tSamhail", @@ -510,6 +519,7 @@ "Deleted": "Scriosta", "Deleted {{deleteModelTag}}": "Scriosta {{deleteModelTag}}", "Deleted {{name}}": "Scriosta {{name}}", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "Úsáideoir Scriosta", "Deployment names are required for Azure OpenAI": "Tá ainmneacha imscartha ag teastáil le haghaidh Azure OpenAI", "Desc": "Cur Síos", @@ -518,6 +528,7 @@ "Describe what changed...": "Déan cur síos ar a bhfuil athraithe...", "Describe your knowledge base and objectives": "Déan cur síos ar do bhunachar eolais agus do chuspóirí", "Description": "Cur síos", + "Deselect": "", "Detect Artifacts Automatically": "Déan Déantáin a bhrath go huathoibríoch", "Dictate": "Deachtaigh", "Didn't fully follow instructions": "Níor lean sé treoracha go hiomlán", @@ -780,6 +791,8 @@ "Enter Your Username": "Cuir isteach D'Ainm Úsáideora", "Enter your webhook URL": "Cuir isteach URL do webhook", "Entra ID": "Aitheantas Entra", + "Environment Variables": "", + "Ephemeral": "", "Error": "Earráid", "ERROR": "EARRÁID", "Error accessing directory": "Earráid ag rochtain eolaire", @@ -856,6 +869,7 @@ "Failed to save connections": "Theip ar na naisc a shábháil", "Failed to save conversation": "Theip ar an gcomhrá a shábháil", "Failed to save models configuration": "Theip ar chumraíocht na samhlacha a shábháil", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "Theip ar fhreastalaithe críochfoirt a shábháil", "Failed to unshare chat.": "Theip ar an gcomhrá a dhíroinnt.", "Failed to update settings": "Theip ar shocruithe a nuashonrú", @@ -871,6 +885,7 @@ "Feedback History": "Stair Aiseolais", "Feel free to add specific details": "Ná bíodh leisce ort sonraí ar leith a chur leis", "Female": "Baineann", + "Fetch URL Content Length Limit": "", "File": "Comhad", "File added successfully.": "D'éirigh leis an gcomhad a chur leis.", "File attached to chat": "Comhad ceangailte leis an gcomhrá", @@ -925,6 +940,7 @@ "Format Lines": "Formáid Línte", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "Formáidigh na línte san aschur. Is é Bréag an réamhshocrú. Má shocraítear é go Fíor, déanfar na línte a fhormáidiú chun matamaitic agus stíleanna inlíne a bhrath.", "Formatting may be inconsistent from source.": "B’fhéidir nach bhfuil an fhormáidiú comhsheasmhach ón bhfoinse.", + "Forward": "", "Forwards system user OAuth access token to authenticate": "Seolann sé comhartha rochtana OAuth úsáideora an chórais ar aghaidh chun fíordheimhniú a dhéanamh", "Forwards system user session credentials to authenticate": "Cuir dintiúir seisiúin úsáideora córais ar aghaidh lena bhfíordheimhniú", "Full Context Mode": "Mód Comhthéacs Iomlán", @@ -1012,6 +1028,7 @@ "ID": "ID", "ID cannot contain \":\" or \"|\" characters": "Ní féidir carachtair \":\" nó \"|\" a bheith san ID", "ID copied to clipboard": "Aitheantas cóipeáilte chuig an ghearrthaisce", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "iframe Bosca Gainimh Foirmeacha Ceadaithe", "iframe Sandbox Allow Same Origin": "ceadaigh Bosca Gainimh iframe an Bunús Céanna", "Ignite curiosity": "Las fiosracht", @@ -1182,6 +1199,7 @@ "Max Speakers": "Uasmhéid Cainteoirí", "Max Upload Count": "Líon Uaslódála Max", "Max Upload Size": "Méid Uaslódála Max", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "Uasmhéid na gcomhad a cheadaítear in aghaidh an fhillteáin.", "Maximum number of files per folder is {{max}}.": "Is é {{max}} an líon uasta comhad in aghaidh an fhillteáin.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Is féidir uasmhéid de 3 samhail a íoslódáil ag an am Bain triail as arís níos déanaí.", @@ -1213,6 +1231,7 @@ "Microsoft OneDrive": "Microsoft OneDrive", "Microsoft OneDrive (personal)": "Microsoft OneDrive (pearsanta)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (obair/scoil)", + "min": "", "MinerU": "MinerU", "MinerU API Key required for Cloud API mode.": "Eochair API MinerU ag teastáil le haghaidh mód Cloud API.", "Mistral OCR": "OCR Mistral", @@ -1318,6 +1337,7 @@ "No kernel": "", "No knowledge bases found.": "Níor aimsíodh aon bhunachair eolais.", "No knowledge found": "Níor aimsíodh aon eolas", + "No limit": "", "No memories to clear": "Gan cuimhní cinn a ghlanadh", "No model IDs": "Gan aon aitheantóirí samhail", "No models available": "Níl aon samhlacha ar fáil", @@ -1390,6 +1410,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Ups! Tá modh gan tacaíocht á úsáid agat (tosaigh amháin). Freastal ar an WebUI ón gcúltaca le do thoil.", "Open file": "Oscail comhad", "Open in full screen": "Oscail i scáileán iomlán", + "Open in new tab": "", "Open link": "Oscail nasc", "Open modal to configure connection": "Oscail an modal chun an nasc a chumrú", "Open Modal To Manage Floating Quick Actions": "Oscail Modúl Chun Gníomhartha Tapa Snámhacha a Bhainistiú", @@ -1450,6 +1471,7 @@ "Perplexity Model": "Samhail Perplexity", "Perplexity Search API URL": "URL API Cuardaigh Measctha", "Perplexity Search Context Usage": "Úsáid Chomhthéacs Cuardaigh Mearbhall", + "Persistent": "", "Personalization": "Pearsantú", "Pin": "Bioráin", "Pinned": "Pinneáilte", @@ -1486,6 +1508,7 @@ "Please select a valid JSON file": "Roghnaigh comhad JSON bailí le do thoil", "Please select at least one user for Direct Message channel.": "Roghnaigh úsáideoir amháin ar a laghad don chainéal Teachtaireachtaí Díreacha.", "Please wait until all files are uploaded.": "Fan go dtí go mbeidh na comhaid go léir uaslódáilte.", + "Policy ID": "", "Port": "Port", "Ports": "", "Positive attitude": "Dearcadh dearfach", @@ -1565,6 +1588,7 @@ "Remove image": "Bain íomhá", "Remove Model": "Bain an tSamhail", "Rename": "Athainmnigh", + "Renamed to {{name}}": "", "Render Markdown in Previews": "Rindreáil Markdown i Réamhamhairc", "Reorder Models": "Athordú na Samhlacha", "Reply": "Freagra", @@ -1630,6 +1654,7 @@ "Search Groups": "Cuardaigh Grúpaí", "Search In Models": "Cuardaigh i Samhlacha", "Search Knowledge": "Cuardaigh Eolais", + "Search Memories": "", "Search Models": "Cuardaigh Samhlacha", "Search Notes": "Cuardaigh Nótaí", "Search options": "Roghanna cuardaigh", @@ -1671,6 +1696,7 @@ "Select a theme": "Roghnaigh téama", "Select a tool": "Roghnaigh uirlis", "Select a voice": "Roghnaigh guth", + "Select All": "", "Select an auth method": "Roghnaigh modh an údair", "Select an embedding model engine": "Roghnaigh inneall samhail leabaithe", "Select an engine": "Roghnaigh inneall", @@ -1699,6 +1725,7 @@ "Serper API Key": "Serper API Eochair", "Serply API Key": "Eochair API Serply", "Serpstack API Key": "Eochair API Serpstack", + "Server connection failed": "", "Server connection verified": "Ceangal freastalaí fíoraithe", "Session": "Seisiún", "Set as default": "Socraigh mar réamhshocraithe", @@ -1800,6 +1827,7 @@ "Stop Download": "Stop an Íoslódáil", "Stop Generating": "Stop a Ghiniúint", "Stop Sequence": "Stop Seicheamh", + "Storage": "", "Stream Chat Response": "Freagra Comhrá Sruth", "Stream Delta Chunk Size": "Sruth Méid Leadhb Delta", "Streamable HTTP": "HTTP sruthaithe", diff --git a/src/lib/i18n/locales/it-IT/translation.json b/src/lib/i18n/locales/it-IT/translation.json index 2d6bd18226..fc3f4e0a8a 100644 --- a/src/lib/i18n/locales/it-IT/translation.json +++ b/src/lib/i18n/locales/it-IT/translation.json @@ -17,6 +17,9 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "{{COUNT}} Risposte", "{{COUNT}} Rows": "", + "{{count}} selected_one": "", + "{{count}} selected_many": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", "{{COUNT}}d_time_ago": "", @@ -127,6 +130,7 @@ "Allow File Upload": "Consenti caricamento file", "Allow Multiple Models in Chat": "Consenti più modelli in chat", "Allow non-local voices": "Consenti voci non locali", + "Allow public write access": "", "Allow Rate Response": "", "Allow Regenerate Response": "", "Allow Sharing With Users": "", @@ -181,6 +185,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "Sei sicuro di voler eliminare questo canale?", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "Sei sicuro di voler eliminare questo messaggio?", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +384,7 @@ "Configure": "Configura", "Confirm": "Conferma", "Confirm Password": "Conferma password", + "Confirm Prompt from Embed": "", "Confirm your action": "Conferma la tua azione", "Confirm your new password": "Conferma la tua nuova password", "Confirm Your Password": "", @@ -386,6 +393,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "Connettiti ai tuoi endpoint API compatibili con OpenAI.", "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 successful": "Connessione riuscita", "Connection Type": "Tipo Connessione", @@ -426,6 +434,7 @@ "Copying to clipboard was successful!": "Copia negli appunti riuscita!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "CORS deve essere configurato correttamente dal fornitore per consentire le richieste da Open WebUI.", "Could not read file.": "", + "CPU": "", "Create": "Crea", "Create a knowledge base": "Crea una base di conoscenze", "Create a model": "Creare un modello", @@ -497,6 +506,7 @@ "Delete File": "", "Delete folder?": "Elimina cartella?", "Delete function?": "Elimina funzione?", + "Delete Memory?": "", "Delete Message": "Elimina messaggio", "Delete message?": "Elimina messaggio?", "Delete Model": "", @@ -510,6 +520,7 @@ "Deleted": "", "Deleted {{deleteModelTag}}": "{{deleteModelTag}} eliminato", "Deleted {{name}}": "{{name}} eliminato", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "Utente eliminato", "Deployment names are required for Azure OpenAI": "I nomi dei deployment sono obbligatori per Azure OpenAI", "Desc": "", @@ -518,6 +529,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "Descrivi la tua base di conoscenza e gli obiettivi", "Description": "Descrizione", + "Deselect": "", "Detect Artifacts Automatically": "Rileva artefatti automaticamente", "Dictate": "Detta", "Didn't fully follow instructions": "Non ha seguito completamente le istruzioni", @@ -780,6 +792,8 @@ "Enter Your Username": "Inserisci il Tuo Nome Utente", "Enter your webhook URL": "Inserisci l'URL del tuo webhook", "Entra ID": "", + "Environment Variables": "", + "Ephemeral": "", "Error": "Errore", "ERROR": "ERRORE", "Error accessing directory": "", @@ -856,6 +870,7 @@ "Failed to save connections": "Impossibile salvare le connessioni", "Failed to save conversation": "Impossibile salvare la conversazione", "Failed to save models configuration": "Impossibile salvare la configurazione dei modelli", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "Impossibile aggiornare le impostazioni", @@ -871,6 +886,7 @@ "Feedback History": "Storico feedback", "Feel free to add specific details": "Sentiti libero/a di aggiungere dettagli specifici", "Female": "", + "Fetch URL Content Length Limit": "", "File": "File", "File added successfully.": "File aggiunto con successo.", "File attached to chat": "", @@ -925,6 +941,7 @@ "Format Lines": "", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "", "Formatting may be inconsistent from source.": "", + "Forward": "", "Forwards system user OAuth access token to authenticate": "", "Forwards system user session credentials to authenticate": "Inoltra le credenziali della sessione utente di sistema per autenticare", "Full Context Mode": "Modalità Contesto Completo", @@ -1012,6 +1029,7 @@ "ID": "ID", "ID cannot contain \":\" or \"|\" characters": "", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "iframe Sandbox Consenti moduli", "iframe Sandbox Allow Same Origin": "iframe Sandbox Consenti stessa origine", "Ignite curiosity": "Accendi la curiosità", @@ -1182,6 +1200,7 @@ "Max Speakers": "Numero Massimo di Parlanti", "Max Upload Count": "Conteggio massimo di caricamenti", "Max Upload Size": "Dimensione massima di caricamento", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "È possibile scaricare un massimo di 3 modelli contemporaneamente. Riprova più tardi.", @@ -1213,6 +1232,7 @@ "Microsoft OneDrive": "Microsoft OneDrive", "Microsoft OneDrive (personal)": "Microsoft OneDrive (personale)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (lavoro/scuola)", + "min": "", "MinerU": "", "MinerU API Key required for Cloud API mode.": "", "Mistral OCR": "OCR Mistral", @@ -1318,6 +1338,7 @@ "No kernel": "", "No knowledge bases found.": "", "No knowledge found": "Nessuna conoscenza trovata", + "No limit": "", "No memories to clear": "Nessun ricordo da cancellare", "No model IDs": "Nessun ID modello", "No models available": "", @@ -1390,6 +1411,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Ops! Stai utilizzando un metodo non supportato (solo frontend). Si prega di servire la WebUI dal backend.", "Open file": "Apri file", "Open in full screen": "Apri a schermo intero", + "Open in new tab": "", "Open link": "", "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", @@ -1450,6 +1472,7 @@ "Perplexity Model": "Modello Perplexity", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "Utilizzo delcontesto della Ricerca Perplexity", + "Persistent": "", "Personalization": "Personalizzazione", "Pin": "Appunta", "Pinned": "Appuntato", @@ -1486,6 +1509,7 @@ "Please select a valid JSON file": "", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "", + "Policy ID": "", "Port": "Porta", "Ports": "", "Positive attitude": "Attitudine positiva", @@ -1565,6 +1589,7 @@ "Remove image": "", "Remove Model": "Rimuovi Modello", "Rename": "Rinomina", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "Riordina Modelli", "Reply": "", @@ -1631,6 +1656,7 @@ "Search Groups": "", "Search In Models": "", "Search Knowledge": "Cerca conoscenza", + "Search Memories": "", "Search Models": "Cerca modelli", "Search Notes": "", "Search options": "Cerca opzioni", @@ -1672,6 +1698,7 @@ "Select a theme": "", "Select a tool": "Seleziona uno strumento", "Select a voice": "", + "Select All": "", "Select an auth method": "Seleziona un metodo di autenticazione", "Select an embedding model engine": "", "Select an engine": "", @@ -1700,6 +1727,7 @@ "Serper API Key": "Chiave API Serper", "Serply API Key": "Chiave API Serply", "Serpstack API Key": "Chiave API Serpstack", + "Server connection failed": "", "Server connection verified": "Connessione al server verificata", "Session": "", "Set as default": "Imposta come predefinito", @@ -1801,6 +1829,7 @@ "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Sequenza di arresto", + "Storage": "", "Stream Chat Response": "Stream risposta chat", "Stream Delta Chunk Size": "", "Streamable HTTP": "", diff --git a/src/lib/i18n/locales/ja-JP/translation.json b/src/lib/i18n/locales/ja-JP/translation.json index 533a3b3c32..deb70da6f1 100644 --- a/src/lib/i18n/locales/ja-JP/translation.json +++ b/src/lib/i18n/locales/ja-JP/translation.json @@ -17,6 +17,7 @@ "{{COUNT}} members": "{{COUNT}} メンバー", "{{COUNT}} Replies": "{{COUNT}} 件の返信", "{{COUNT}} Rows": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "{{COUNT}} 件のソース", "{{COUNT}} words": "{{COUNT}} 語", "{{COUNT}}d_time_ago": "", @@ -127,6 +128,7 @@ "Allow File Upload": "ファイルのアップロードを許可", "Allow Multiple Models in Chat": "チャットで複数のモデルを許可", "Allow non-local voices": "ローカル以外のボイスを許可", + "Allow public write access": "", "Allow Rate Response": "応答の評価を許可", "Allow Regenerate Response": "再生成を許可", "Allow Sharing With Users": "", @@ -181,6 +183,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete all chats? This action cannot be undone.": "すべてのチャットを削除しますか? この操作は元に戻すことができません。", "Are you sure you want to delete this channel?": "このチャンネルを削除しますか?", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "このメッセージを削除しますか?", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +382,7 @@ "Configure": "設定", "Confirm": "確認", "Confirm Password": "パスワードの確認", + "Confirm Prompt from Embed": "", "Confirm your action": "操作の確認", "Confirm your new password": "新しいパスワードの確認", "Confirm Your Password": "パスワードの確認", @@ -386,6 +391,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "独自のOpenAI互換APIエンドポイントに接続します。", "Connect to your own OpenAPI compatible external tool servers.": "独自のOpenAPI互換外部ツールサーバーに接続します。", + "Connected ({{type}})": "", "Connection failed": "接続に失敗しました", "Connection successful": "接続に成功しました", "Connection Type": "接続タイプ", @@ -426,6 +432,7 @@ "Copying to clipboard was successful!": "クリップボードへのコピーが成功しました!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "Open WebUIからのリクエストを許可するために、プロバイダーによってCORSが適切に設定されている必要があります。", "Could not read file.": "", + "CPU": "", "Create": "作成", "Create a knowledge base": "ナレッジベースを作成する", "Create a model": "モデルを作成する", @@ -497,6 +504,7 @@ "Delete File": "", "Delete folder?": "フォルダーを削除しますか?", "Delete function?": "Functionを削除しますか?", + "Delete Memory?": "", "Delete Message": "メッセージを削除", "Delete message?": "メッセージを削除しますか?", "Delete Model": "", @@ -510,6 +518,7 @@ "Deleted": "", "Deleted {{deleteModelTag}}": "{{deleteModelTag}} を削除しました", "Deleted {{name}}": "{{name}}を削除しました", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "削除されたユーザー", "Deployment names are required for Azure OpenAI": "Azure OpenAIにはデプロイメント名が必要です", "Desc": "", @@ -518,6 +527,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "ナレッジベースと目的を説明", "Description": "説明", + "Deselect": "", "Detect Artifacts Automatically": "自動的にアーティファクトを検出", "Dictate": "音声入力", "Didn't fully follow instructions": "指示に完全に従わなかった", @@ -780,6 +790,8 @@ "Enter Your Username": "ユーザー名を入力してください", "Enter your webhook URL": "Webhook URLを入力してください", "Entra ID": "", + "Environment Variables": "", + "Ephemeral": "", "Error": "エラー", "ERROR": "エラー", "Error accessing directory": "ディレクトリへのアクセスに失敗しました", @@ -856,6 +868,7 @@ "Failed to save connections": "接続の保存に失敗しました。", "Failed to save conversation": "会話の保存に失敗しました。", "Failed to save models configuration": "モデルの設定の保存に失敗しました。", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "設定アップデートに失敗しました。", @@ -871,6 +884,7 @@ "Feedback History": "フィードバック履歴", "Feel free to add specific details": "詳細を追加できます", "Female": "女性", + "Fetch URL Content Length Limit": "", "File": "ファイル", "File added successfully.": "ファイル追加が成功しました。", "File attached to chat": "", @@ -925,6 +939,7 @@ "Format Lines": "出力テキストをフォーマット", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "出力をフォーマットする。デフォルトでは無効です。有効にすると、インライン数式やスタイルを検出しフォーマットします。", "Formatting may be inconsistent from source.": "", + "Forward": "", "Forwards system user OAuth access token to authenticate": "", "Forwards system user session credentials to authenticate": "システムユーザーセッションの資格情報を転送して認証する", "Full Context Mode": "フルコンテキストモード", @@ -1012,6 +1027,7 @@ "ID": "", "ID cannot contain \":\" or \"|\" characters": "", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "iframeサンドボックスにフォームを許可", "iframe Sandbox Allow Same Origin": "iframeサンドボックスに同じオリジンを許可", "Ignite curiosity": "好奇心を燃やす", @@ -1182,6 +1198,7 @@ "Max Speakers": "最大話者数", "Max Upload Count": "最大アップロード数", "Max Upload Size": "最大アップロードサイズ", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "1 つのフォルダーに保存できるファイルの最大数を指定します。", "Maximum number of files per folder is {{max}}.": "フォルダー内のファイル数は最大 {{max}} 件までです。", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "同時にダウンロードできるモデルは最大 3 つです。後でもう一度お試しください。", @@ -1213,6 +1230,7 @@ "Microsoft OneDrive": "Microsoft OneDrive", "Microsoft OneDrive (personal)": "Microsoft OneDrive (個人用)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (職場/学校)", + "min": "", "MinerU": "", "MinerU API Key required for Cloud API mode.": "", "Mistral OCR": "", @@ -1318,6 +1336,7 @@ "No kernel": "", "No knowledge bases found.": "ナレッジベースが見つかりません", "No knowledge found": "ナレッジベースが見つかりません", + "No limit": "", "No memories to clear": "クリアするメモリがありません", "No model IDs": "モデルIDがありません", "No models available": "", @@ -1390,6 +1409,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "おっと! サポートされていない方法 (フロントエンドのみ) を使用しています。バックエンドから WebUI を提供してください。", "Open file": "ファイルを開く", "Open in full screen": "全画面表示", + "Open in new tab": "", "Open link": "", "Open modal to configure connection": "接続設定のモーダルを開く", "Open Modal To Manage Floating Quick Actions": "フローティング クイックアクションを管理するモーダルを開く", @@ -1450,6 +1470,7 @@ "Perplexity Model": "Perplexity モデル", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "Perplexity Search コンテキスト使用量", + "Persistent": "", "Personalization": "パーソナライズ", "Pin": "ピン留め", "Pinned": "ピン留めされています", @@ -1486,6 +1507,7 @@ "Please select a valid JSON file": "", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "ファイルがすべてアップロードされるまでお待ちください。", + "Policy ID": "", "Port": "ポート", "Ports": "", "Positive attitude": "ポジティブな態度", @@ -1565,6 +1587,7 @@ "Remove image": "画像を削除", "Remove Model": "モデルを削除", "Rename": "名前を変更", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "モデルを並べ替え", "Reply": "", @@ -1629,6 +1652,7 @@ "Search Groups": "グループの検索", "Search In Models": "モデルを検索", "Search Knowledge": "ナレッジベースの検索", + "Search Memories": "", "Search Models": "モデル検索", "Search Notes": "ノートを検索", "Search options": "検索オプション", @@ -1670,6 +1694,7 @@ "Select a theme": "テーマを選択", "Select a tool": "ツールの選択", "Select a voice": "声を選択", + "Select All": "", "Select an auth method": "認証方法の選択", "Select an embedding model engine": "埋め込みモデルエンジンを選択", "Select an engine": "エンジンを選択", @@ -1698,6 +1723,7 @@ "Serper API Key": "Serper APIキー", "Serply API Key": "Serply APIキー", "Serpstack API Key": "Serpstack APIキー", + "Server connection failed": "", "Server connection verified": "サーバー接続が確認されました", "Session": "セッション", "Set as default": "デフォルトに設定", @@ -1799,6 +1825,7 @@ "Stop Download": "", "Stop Generating": "生成を停止", "Stop Sequence": "ストップシーケンス", + "Storage": "", "Stream Chat Response": "チャットレスポンスのストリーム", "Stream Delta Chunk Size": "ストリームの差分チャンクサイズ", "Streamable HTTP": "", diff --git a/src/lib/i18n/locales/ka-GE/translation.json b/src/lib/i18n/locales/ka-GE/translation.json index d9834853ed..84ff9b1910 100644 --- a/src/lib/i18n/locales/ka-GE/translation.json +++ b/src/lib/i18n/locales/ka-GE/translation.json @@ -17,6 +17,8 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "{{COUNT}} პასუხი", "{{COUNT}} Rows": "", + "{{count}} selected_one": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "{{COUNT}} წყარო", "{{COUNT}} words": "{{COUNT}} სიტყვა", "{{COUNT}}d_time_ago": "", @@ -127,6 +129,7 @@ "Allow File Upload": "ფაილის ატვირთვის დაშვება", "Allow Multiple Models in Chat": "ერთზე მეტი მოდელის დაშვება ჩატში", "Allow non-local voices": "არალოკალური ხმების დაშვება", + "Allow public write access": "", "Allow Rate Response": "პასუხის შეფასების დაშვება", "Allow Regenerate Response": "პასუხის რეგენერაციის დაშვება", "Allow Sharing With Users": "", @@ -181,6 +184,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "მართლა გნებავთ ამ არხის წაშლა?", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "მართლა გნებავთ ამ შეტყობინების წასლა?", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +383,7 @@ "Configure": "მორგება", "Confirm": "დადასტურება", "Confirm Password": "გაიმეორეთ პაროლი", + "Confirm Prompt from Embed": "", "Confirm your action": "დაადასტურეთ თქვენი ქმედება", "Confirm your new password": "დაადასტურეთ თქვენი ახალი პაროლი", "Confirm Your Password": "დაადასტურეთ თქვენი პაროლი", @@ -386,6 +392,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAPI compatible external tool servers.": "", + "Connected ({{type}})": "", "Connection failed": "დაკავშირება ვერ მოხერხდა", "Connection successful": "შეერთება წარმატებულია", "Connection Type": "შეერთების ტიპი", @@ -426,6 +433,7 @@ "Copying to clipboard was successful!": "გაცვლის ბუფერში კოპირება წარმატებულია!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "", "Could not read file.": "", + "CPU": "", "Create": "შექმნა", "Create a knowledge base": "ცოდნის ბაზის შექმნა", "Create a model": "მოდელის შექმნა", @@ -497,6 +505,7 @@ "Delete File": "", "Delete folder?": "წავშალო საქაღალდეები?", "Delete function?": "წავშალო ფუნქცია?", + "Delete Memory?": "", "Delete Message": "შეტყობინების წაშლა", "Delete message?": "წავშალო შეტყობინება?", "Delete Model": "მოდელის წაშლა", @@ -510,6 +519,7 @@ "Deleted": "", "Deleted {{deleteModelTag}}": "{{deleteModelTag}} წაშლილია", "Deleted {{name}}": "Deleted {{name}}", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "წაშლილი მომხმარებელი", "Deployment names are required for Azure OpenAI": "", "Desc": "", @@ -518,6 +528,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "", "Description": "აღწერა", + "Deselect": "", "Detect Artifacts Automatically": "", "Dictate": "კარნახი", "Didn't fully follow instructions": "ინსტრუქციებს სრულად არ მივყევი", @@ -780,6 +791,8 @@ "Enter Your Username": "შეიყვანეთ თქვენი მომხმარებლის სახელი", "Enter your webhook URL": "შეიყვანეთ თქვენი ვებჰუკის URL", "Entra ID": "Entra-ის ID", + "Environment Variables": "", + "Ephemeral": "", "Error": "შეცდომა", "ERROR": "ERROR", "Error accessing directory": "საქაღალდესთან წვდომის შეცდომა", @@ -856,6 +869,7 @@ "Failed to save connections": "კავშირების შენახვა ჩავარდა", "Failed to save conversation": "საუბრის შენახვა ვერ მოხერხდა", "Failed to save models configuration": "მოდელების კონფიგურაციის შენახვა ჩავარდა", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "პარამეტრების განახლება ჩავარდა", @@ -871,6 +885,7 @@ "Feedback History": "უკუკავშირის ისტორია", "Feel free to add specific details": "სპეციფიკური დეტალების დამატება პრობლემა არაა", "Female": "მდედრობითი", + "Fetch URL Content Length Limit": "", "File": "ფაილი", "File added successfully.": "ფაილი წარმატებით დაემატა.", "File attached to chat": "", @@ -925,6 +940,7 @@ "Format Lines": "ხაზების დაფორმატება", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "", "Formatting may be inconsistent from source.": "", + "Forward": "", "Forwards system user OAuth access token to authenticate": "", "Forwards system user session credentials to authenticate": "", "Full Context Mode": "სრული კონტექსტის რეჟიმი", @@ -1012,6 +1028,7 @@ "ID": "ID", "ID cannot contain \":\" or \"|\" characters": "", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "", "iframe Sandbox Allow Same Origin": "", "Ignite curiosity": "", @@ -1182,6 +1199,7 @@ "Max Speakers": "დინამიკების მაქს. რაოდენობა", "Max Upload Count": "მაქს. ატვირთვების რაოდენობა", "Max Upload Size": "მაქს. ატვირთვის ზომა", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "ერთდროულად მაქსიმუმ 3 მოდელის ჩამოტვირთვაა შესაძლებელია. მოგვიანებით სცადეთ.", @@ -1213,6 +1231,7 @@ "Microsoft OneDrive": "Microsoft OneDrive", "Microsoft OneDrive (personal)": "Microsoft OneDrive (პირადი)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (სამსახური/სკოლა)", + "min": "", "MinerU": "MinerU", "MinerU API Key required for Cloud API mode.": "", "Mistral OCR": "Mistral OCR", @@ -1318,6 +1337,7 @@ "No kernel": "", "No knowledge bases found.": "", "No knowledge found": "ცოდნა აღმოჩენილი არაა", + "No limit": "", "No memories to clear": "გასასუფთავებელი მოგონებების გარეშე", "No model IDs": "მოდელის ID-ების გარეშე", "No models available": "", @@ -1390,6 +1410,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "ვაი! იყენებთ მხარდაუჭერელ მეთოდს (მხოლოდ წინაბოლო). შედით WebUI-ზე უკანაბოლოდან.", "Open file": "ფაილის გახსნა", "Open in full screen": "მთელ ეკრანზე გახსნა", + "Open in new tab": "", "Open link": "ბმულის გახსნა", "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", @@ -1450,6 +1471,7 @@ "Perplexity Model": "Perplexity-ის მოდელი", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "", + "Persistent": "", "Personalization": "პერსონალიზაცია", "Pin": "მიმაგრება", "Pinned": "მიმაგრებულია", @@ -1486,6 +1508,7 @@ "Please select a valid JSON file": "", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "", + "Policy ID": "", "Port": "პორტი", "Ports": "", "Positive attitude": "პოზიტიური დამოკიდებულება", @@ -1565,6 +1588,7 @@ "Remove image": "სურათის წაშლა", "Remove Model": "მოდელის წაშლა", "Rename": "სახელის გადარქმევა", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "მოდელების გადალაგება", "Reply": "პასუხი", @@ -1630,6 +1654,7 @@ "Search Groups": "", "Search In Models": "ძებნა მოდელებში", "Search Knowledge": "ცოდნის ძებნა", + "Search Memories": "", "Search Models": "მოდელების ძებნა", "Search Notes": "შენიშვნების ძებნა", "Search options": "ძებნის მორგება", @@ -1671,6 +1696,7 @@ "Select a theme": "აირჩიეთ თემა", "Select a tool": "აირჩიეთ ხელსაწყო", "Select a voice": "აირჩიეთ ხმა", + "Select All": "", "Select an auth method": "აირჩიეთ ავთენტიკაციის მეთოდი", "Select an embedding model engine": "აირჩიეთ ჩაშენებული მოდელის ძრავა", "Select an engine": "აირჩიეთ ძრავა", @@ -1699,6 +1725,7 @@ "Serper API Key": "Serper API-ის გასაღები", "Serply API Key": "Serply API-ის გასაღები", "Serpstack API Key": "Serpstack API-ის გასაღები", + "Server connection failed": "", "Server connection verified": "სერვერთან კავშირი გადამოწმებულია", "Session": "სესია", "Set as default": "ნაგულისხმევად დაყენება", @@ -1800,6 +1827,7 @@ "Stop Download": "", "Stop Generating": "", "Stop Sequence": "შეჩერების მიმდევრობა", + "Storage": "", "Stream Chat Response": "", "Stream Delta Chunk Size": "", "Streamable HTTP": "დასტრიმვადი HTTP", diff --git a/src/lib/i18n/locales/kab-DZ/translation.json b/src/lib/i18n/locales/kab-DZ/translation.json index 06dd0559ba..09cec371ff 100644 --- a/src/lib/i18n/locales/kab-DZ/translation.json +++ b/src/lib/i18n/locales/kab-DZ/translation.json @@ -17,6 +17,8 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "{{COUNT}} n tririyin", "{{COUNT}} Rows": "", + "{{count}} selected_one": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "{{COUNT}} n yiɣbula", "{{COUNT}} words": "{{COUNT}} n wawalen", "{{COUNT}}d_time_ago": "", @@ -127,6 +129,7 @@ "Allow File Upload": "Sireg asali n yifuyla", "Allow Multiple Models in Chat": "Sireg ugar n timudmiwin deg usqerdec", "Allow non-local voices": "Sireg tuɣac tirdiganin", + "Allow public write access": "", "Allow Rate Response": "", "Allow Regenerate Response": "", "Allow Sharing With Users": "", @@ -181,6 +184,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "Tetḥeqqeḍ tebɣiḍ ad tekkseḍ targa-a?", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "Tetḥeqqeḍ tebɣiḍ ad tekkseḍ izen-a?", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +383,7 @@ "Configure": "Swel", "Confirm": "Sentem", "Confirm Password": "Sentem awal n uɛeddi", + "Confirm Prompt from Embed": "", "Confirm your action": "Sergeg tigawt-a", "Confirm your new password": "Sentem awal-ik·im n uɛeddi amaynut", "Confirm Your Password": "Sentem awal-ik⋅im uffir", @@ -386,6 +392,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "Qqen ɣer wagazen-ik n taggara n API yemṣaban OpenAI.", "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 successful": "Tuqqna tedda akken iwata", "Connection Type": "Anaw n tuqqna", @@ -426,6 +433,7 @@ "Copying to clipboard was successful!": "Yessaweḍ unɣel ɣer tfelwit n uklip!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "CORS ilaq ad yeswel akken iwata sɣur usaǧǧaw akken ad yeǧǧ issutren seg WebUI yeldin.", "Could not read file.": "", + "CPU": "", "Create": "Snulfu-d", "Create a knowledge base": "Rnu taffa n tmussniwin", "Create a model": "Snulfu-d tamudemt", @@ -497,6 +505,7 @@ "Delete File": "", "Delete folder?": "Kkes akaram?", "Delete function?": "Kkes tasɣent?", + "Delete Memory?": "", "Delete Message": "Kkes izen", "Delete message?": "Kkes izen?", "Delete Model": "Kkes tamudemt", @@ -510,6 +519,7 @@ "Deleted": "", "Deleted {{deleteModelTag}}": "Yettwakkes {{deleteModelTag}}", "Deleted {{name}}": "Yettwakkes {{name}}", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "Yettwakkes useqdac", "Deployment names are required for Azure OpenAI": "Ismawen n usleɣmu laqen i Azure OpenAIAI", "Desc": "", @@ -518,6 +528,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "Glem-d azadur-nwen n tmussni d yiswan-nwen", "Description": "Aglam", + "Deselect": "", "Detect Artifacts Automatically": "", "Dictate": "Zubet", "Didn't fully follow instructions": "Ur yeḍfir ara akk iwellihen", @@ -780,6 +791,8 @@ "Enter Your Username": "Sekcem-d isem-ik·im n useqdac", "Enter your webhook URL": "Sekcem tansa URL n webhook-ik", "Entra ID": "Asulay ID n Entra", + "Environment Variables": "", + "Ephemeral": "", "Error": "Tuccḍa", "ERROR": "TUCCḌA", "Error accessing directory": "Tuccḍa deg unekcum ɣer ukaram", @@ -856,6 +869,7 @@ "Failed to save connections": "Yecceḍ uklas n tuqqniwin", "Failed to save conversation": "Yecceḍ uklas n udiwenni", "Failed to save models configuration": "Ur yessaweḍ ara ad d-yessukkes tamudemt n usneftaɣ", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "Yecceḍ uleqqem n yiɣewwaren", @@ -871,6 +885,7 @@ "Feedback History": "Azray n tamawin", "Feel free to add specific details": "Ur ttkukru ara ad ternuḍ ttfaṣil ulmisen", "Female": "Tawtemt", + "Fetch URL Content Length Limit": "", "File": "Afaylu", "File added successfully.": "Afaylu yettwarna akken iwata.", "File attached to chat": "", @@ -925,6 +940,7 @@ "Format Lines": "Izirigen n umasal", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "", "Formatting may be inconsistent from source.": "", + "Forward": "", "Forwards system user OAuth access token to authenticate": "", "Forwards system user session credentials to authenticate": "Welleh inekcam n tɣimit n useqdac i usesteb", "Full Context Mode": "Askar n usatal aččuran", @@ -1012,6 +1028,7 @@ "ID": "Asulay", "ID cannot contain \":\" or \"|\" characters": "", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "", "iframe Sandbox Allow Same Origin": "", "Ignite curiosity": "Sker lḥir", @@ -1182,6 +1199,7 @@ "Max Speakers": "Amḍan afellay n wid d-yemmseslayen", "Max Upload Count": "Amḍan afellay n uzdam", "Max Upload Size": "Teɣzi tafellayt n uzdam", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maximum n 3 n tmudmin yezmer ad d-yettwasider seg-a ɣer da. Ttxil-k, ɛreḍ tikkelt niḍen ticki.", @@ -1213,6 +1231,7 @@ "Microsoft OneDrive": "Microsoft OneDrive", "Microsoft OneDrive (personal)": "Microsoft OneDrive (udmawan)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (axeddim/aɣerbaz)", + "min": "", "MinerU": "", "MinerU API Key required for Cloud API mode.": "", "Mistral OCR": "Mistral OCR", @@ -1318,6 +1337,7 @@ "No kernel": "", "No knowledge bases found.": "", "No knowledge found": "Ulac tamussni i yettwafen", + "No limit": "", "No memories to clear": "Ulac aktayen ibanen", "No model IDs": "Ulac asulay n tmudemt", "No models available": "", @@ -1390,6 +1410,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Ayhuh! Aql-ik tesseqdaceḍ tarrayt ur yettwasefraken ara (mazwar kan). Ma ulac aɣilif, mudd-d WebUI seg uɛrur.", "Open file": "Ldi Afaylu", "Open in full screen": "Ldi deg ugdil aččuran", + "Open in new tab": "", "Open link": "Ldi aseɣwen", "Open modal to configure connection": "Ldi asfaylu akken ad teswel tuqqna", "Open Modal To Manage Floating Quick Actions": "", @@ -1450,6 +1471,7 @@ "Perplexity Model": "Tamudemt n Perplexity", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "", + "Persistent": "", "Personalization": "Asagen", "Pin": "Senteḍ", "Pinned": "Yettwasenteḍ", @@ -1486,6 +1508,7 @@ "Please select a valid JSON file": "", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "Ttxil-k·m, ṛǧu alamma ulin-d akk ifuyla.", + "Policy ID": "", "Port": "Tawwurt", "Ports": "", "Positive attitude": "", @@ -1565,6 +1588,7 @@ "Remove image": "Kkes tugna", "Remove Model": "Kkes tamudemt", "Rename": "Snifel isem", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "Ales n umizwer n tmudmiwin", "Reply": "Tiririt", @@ -1630,6 +1654,7 @@ "Search Groups": "", "Search In Models": "Nadi deg tmudmiwin", "Search Knowledge": "Anadi ɣef tmessunin", + "Search Memories": "", "Search Models": "Nadi timudmiwin", "Search Notes": "Nadi tizmilin", "Search options": "Tixtiṛiyin n unadi", @@ -1671,6 +1696,7 @@ "Select a theme": "Fren asentel", "Select a tool": "Fren afecku", "Select a voice": "Fren taɣect", + "Select All": "", "Select an auth method": "Fren tarrayt n diri", "Select an embedding model engine": "", "Select an engine": "Fren amsedday", @@ -1699,6 +1725,7 @@ "Serper API Key": "Tasarut API n Serper", "Serply API Key": "Tasarut API n Serply", "Serpstack API Key": "Tasarut API n Serpstack", + "Server connection failed": "", "Server connection verified": "Tuqqna ɣer uqeddac, tettwasenqed", "Session": "Tiɣimit", "Set as default": "Sbadu-t d amezwaru", @@ -1800,6 +1827,7 @@ "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Tagzemt n uḥbas", + "Storage": "", "Stream Chat Response": "Suddem tiririt n udiwenni", "Stream Delta Chunk Size": "", "Streamable HTTP": "", diff --git a/src/lib/i18n/locales/ko-KR/translation.json b/src/lib/i18n/locales/ko-KR/translation.json index 0016d8e2ec..8657737c9d 100644 --- a/src/lib/i18n/locales/ko-KR/translation.json +++ b/src/lib/i18n/locales/ko-KR/translation.json @@ -17,6 +17,7 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "답글 {{COUNT}}개", "{{COUNT}} Rows": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "{{COUNT}}개의 소스", "{{COUNT}} words": "{{COUNT}} 단어", "{{COUNT}}d_time_ago": "", @@ -127,6 +128,7 @@ "Allow File Upload": "파일 업로드 허용", "Allow Multiple Models in Chat": "채팅에서 여러 모델 허용", "Allow non-local voices": "외부 음성 허용", + "Allow public write access": "", "Allow Rate Response": "", "Allow Regenerate Response": "응답 재생성 허용", "Allow Sharing With Users": "", @@ -181,6 +183,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "정말 이 채널을 삭제하시겠습니까?", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "정말 이 메시지를 삭제하시겠습니까?", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +382,7 @@ "Configure": "구성", "Confirm": "확인", "Confirm Password": "비밀번호 확인", + "Confirm Prompt from Embed": "", "Confirm your action": "작업 확인", "Confirm your new password": "새로운 비밀번호를 한 번 더 입력해 주세요", "Confirm Your Password": "비밀번호를 확인해주세요", @@ -386,6 +391,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "OpenAI 호환 API 엔드포인트에 연결합니다.", "Connect to your own OpenAPI compatible external tool servers.": "OpenAPI 호환 외부 도구 서버에 연결합니다.", + "Connected ({{type}})": "", "Connection failed": "연결 실패", "Connection successful": "연결 성공", "Connection Type": "연결 방식", @@ -426,6 +432,7 @@ "Copying to clipboard was successful!": "성공적으로 클립보드에 복사되었습니다!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "Open WebUI의 요청을 허용하려면 공급자가 CORS를 올바르게 구성해야 합니다.", "Could not read file.": "", + "CPU": "", "Create": "생성", "Create a knowledge base": "지식 기반 생성", "Create a model": "모델 생성", @@ -497,6 +504,7 @@ "Delete File": "", "Delete folder?": "폴더를 삭제하시겠습니까?", "Delete function?": "함수를 삭제하시겠습니까?", + "Delete Memory?": "", "Delete Message": "메시지 삭제", "Delete message?": "메시지를 삭제하시겠습니까?", "Delete Model": "모델 삭제", @@ -510,6 +518,7 @@ "Deleted": "", "Deleted {{deleteModelTag}}": "{{deleteModelTag}} 삭제됨", "Deleted {{name}}": "{{name}}을(를) 삭제했습니다.", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "삭제된 사용자", "Deployment names are required for Azure OpenAI": "Azure OpenAI 사용 시 배포 이름은 필수입니다.", "Desc": "", @@ -518,6 +527,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "지식 기반에 대한 설명과 목적을 입력하세요", "Description": "설명", + "Deselect": "", "Detect Artifacts Automatically": "아티팩트 자동 감지", "Dictate": "마이크 사용", "Didn't fully follow instructions": "완전히 지침을 따르지 않음", @@ -780,6 +790,8 @@ "Enter Your Username": "사용자 이름 입력", "Enter your webhook URL": "웹훅 URL을 입력해 주세요", "Entra ID": "", + "Environment Variables": "", + "Ephemeral": "", "Error": "오류", "ERROR": "오류", "Error accessing directory": "디렉토리 액세스 오류", @@ -856,6 +868,7 @@ "Failed to save connections": "연결 저장 실패", "Failed to save conversation": "대화 저장 실패", "Failed to save models configuration": "모델 구성 저장 실패", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "설정 업데이트에 실패하였습니다", @@ -871,6 +884,7 @@ "Feedback History": "피드백 기록", "Feel free to add specific details": "자세한 내용을 자유롭게 추가하세요.", "Female": "여성", + "Fetch URL Content Length Limit": "", "File": "파일", "File added successfully.": "파일이 성공적으로 추가되었습니다", "File attached to chat": "", @@ -925,6 +939,7 @@ "Format Lines": "줄 서식", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "출력되는 줄에 서식을 적용합니다. 기본값은 False입니다. 이 옵션을 True로 하면, 인라인 수식 및 스타일을 감지하도록 줄에 서식이 적용됩니다.", "Formatting may be inconsistent from source.": "출처에서의 서식이 일관되지 않을 수 있습니다.", + "Forward": "", "Forwards system user OAuth access token to authenticate": "인증을 위해 시스템 사용자 OAuth 액세스 토큰을 전달합니다.", "Forwards system user session credentials to authenticate": "인증을 위해 시스템 사용자 세션 자격 증명 전달", "Full Context Mode": "전체 컨텍스트 모드", @@ -1012,6 +1027,7 @@ "ID": "ID", "ID cannot contain \":\" or \"|\" characters": "", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "iframe 샌드박스 허용 양식", "iframe Sandbox Allow Same Origin": "iframe 샌드박스에서 동일한 오리진 허용", "Ignite curiosity": "호기심 자극", @@ -1182,6 +1198,7 @@ "Max Speakers": "최대 화자 수", "Max Upload Count": "업로드 최대 수", "Max Upload Size": "업로드 최대 사이즈", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "최대 3개의 모델을 동시에 다운로드할 수 있습니다. 나중에 다시 시도하세요.", @@ -1213,6 +1230,7 @@ "Microsoft OneDrive": "", "Microsoft OneDrive (personal)": "Microsoft OneDrive (개인용)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (회사/학교용)", + "min": "", "MinerU": "", "MinerU API Key required for Cloud API mode.": "클라우드 API 모드를 사용하려면 MinerU API 키가 필요합니다.", "Mistral OCR": "", @@ -1318,6 +1336,7 @@ "No kernel": "", "No knowledge bases found.": "", "No knowledge found": "지식 기반을 찾을 수 없습니다", + "No limit": "", "No memories to clear": "메모리를 정리할 수 없습니다", "No model IDs": "모델 ID가 없습니다", "No models available": "", @@ -1390,6 +1409,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "이런! 지원되지 않는 방식(프론트엔드만)을 사용하고 계십니다. 백엔드에서 WebUI를 제공해주세요.", "Open file": "파일 열기", "Open in full screen": "전체화면으로 열기", + "Open in new tab": "", "Open link": "링크 열기", "Open modal to configure connection": "연결 설정 열기", "Open Modal To Manage Floating Quick Actions": "", @@ -1450,6 +1470,7 @@ "Perplexity Model": "Perplexity 모델", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "Perplexity 검색 컨텍스트 사용", + "Persistent": "", "Personalization": "개인화", "Pin": "고정", "Pinned": "고정됨", @@ -1486,6 +1507,7 @@ "Please select a valid JSON file": "올바른 Json 파일을 선택해 주세요", "Please select at least one user for Direct Message channel.": "1:1 메시지 채널에 참여할 사용자를 최소 한 명 선택해주세요.", "Please wait until all files are uploaded.": "모든 파일이 업로드될 때까지 기다려 주세요.", + "Policy ID": "", "Port": "포트", "Ports": "", "Positive attitude": "긍정적인 자세", @@ -1565,6 +1587,7 @@ "Remove image": "이미지 삭제", "Remove Model": "모델 삭제", "Rename": "이름 변경", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "모델 재정렬", "Reply": "답장", @@ -1629,6 +1652,7 @@ "Search Groups": "", "Search In Models": "모델에서 검색", "Search Knowledge": "지식 기반 검색", + "Search Memories": "", "Search Models": "모델 검색", "Search Notes": "노트 검색", "Search options": "검색 옵션", @@ -1670,6 +1694,7 @@ "Select a theme": "테마 선택", "Select a tool": "도구 선택", "Select a voice": "음성 선택", + "Select All": "", "Select an auth method": "인증 방법 선택", "Select an embedding model engine": "임베딩 모델 엔진 선택", "Select an engine": "엔진 선택", @@ -1698,6 +1723,7 @@ "Serper API Key": "Serper API 키", "Serply API Key": "Serply API 키", "Serpstack API Key": "Serpstack API 키", + "Server connection failed": "", "Server connection verified": "서버 연결 확인됨", "Session": "세션", "Set as default": "기본값으로 설정", @@ -1799,6 +1825,7 @@ "Stop Download": "", "Stop Generating": "생성 중지", "Stop Sequence": "중지 시퀀스", + "Storage": "", "Stream Chat Response": "스트림 채팅 응답", "Stream Delta Chunk Size": "스트림 델타 청크 크기", "Streamable HTTP": "", diff --git a/src/lib/i18n/locales/lt-LT/translation.json b/src/lib/i18n/locales/lt-LT/translation.json index 69c413b827..665b8b9ddf 100644 --- a/src/lib/i18n/locales/lt-LT/translation.json +++ b/src/lib/i18n/locales/lt-LT/translation.json @@ -17,6 +17,10 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "", "{{COUNT}} Rows": "", + "{{count}} selected_one": "", + "{{count}} selected_few": "", + "{{count}} selected_many": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", "{{COUNT}}d_time_ago": "", @@ -127,6 +131,7 @@ "Allow File Upload": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Leisti nelokalius balsus", + "Allow public write access": "", "Allow Rate Response": "", "Allow Regenerate Response": "", "Allow Sharing With Users": "", @@ -181,6 +186,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +385,7 @@ "Configure": "", "Confirm": "Patvrtinti", "Confirm Password": "Patvirtinkite slaptažodį", + "Confirm Prompt from Embed": "", "Confirm your action": "Patvirtinkite veiksmą", "Confirm your new password": "", "Confirm Your Password": "", @@ -386,6 +394,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAPI compatible external tool servers.": "", + "Connected ({{type}})": "", "Connection failed": "", "Connection successful": "", "Connection Type": "", @@ -426,6 +435,7 @@ "Copying to clipboard was successful!": "La copie dans le presse-papiers a réussi !", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "", "Could not read file.": "", + "CPU": "", "Create": "", "Create a knowledge base": "", "Create a model": "Sukurti modelį", @@ -497,6 +507,7 @@ "Delete File": "", "Delete folder?": "", "Delete function?": "Ištrinti funkciją", + "Delete Memory?": "", "Delete Message": "", "Delete message?": "", "Delete Model": "", @@ -510,6 +521,7 @@ "Deleted": "", "Deleted {{deleteModelTag}}": "{{deleteModelTag}} ištrinta", "Deleted {{name}}": "Ištrinta {{name}}", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "", "Deployment names are required for Azure OpenAI": "", "Desc": "", @@ -518,6 +530,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "", "Description": "Aprašymas", + "Deselect": "", "Detect Artifacts Automatically": "", "Dictate": "", "Didn't fully follow instructions": "Pilnai nesekė instrukcijų", @@ -780,6 +793,8 @@ "Enter Your Username": "", "Enter your webhook URL": "", "Entra ID": "", + "Environment Variables": "", + "Ephemeral": "", "Error": "Klaida", "ERROR": "", "Error accessing directory": "", @@ -856,6 +871,7 @@ "Failed to save connections": "", "Failed to save conversation": "Nepavyko išsaugoti pokalbio", "Failed to save models configuration": "", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "Nepavyko atnaujinti nustatymų", @@ -871,6 +887,7 @@ "Feedback History": "", "Feel free to add specific details": "Galite pridėti specifinių detalių", "Female": "", + "Fetch URL Content Length Limit": "", "File": "Rinkmena", "File added successfully.": "", "File attached to chat": "", @@ -925,6 +942,7 @@ "Format Lines": "", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "", "Formatting may be inconsistent from source.": "", + "Forward": "", "Forwards system user OAuth access token to authenticate": "", "Forwards system user session credentials to authenticate": "", "Full Context Mode": "", @@ -1012,6 +1030,7 @@ "ID": "", "ID cannot contain \":\" or \"|\" characters": "", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "", "iframe Sandbox Allow Same Origin": "", "Ignite curiosity": "", @@ -1182,6 +1201,7 @@ "Max Speakers": "", "Max Upload Count": "", "Max Upload Size": "", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Daugiausiai trys modeliai gali būti parsisiunčiami vienu metu.", @@ -1213,6 +1233,7 @@ "Microsoft OneDrive": "", "Microsoft OneDrive (personal)": "", "Microsoft OneDrive (work/school)": "", + "min": "", "MinerU": "", "MinerU API Key required for Cloud API mode.": "", "Mistral OCR": "", @@ -1318,6 +1339,7 @@ "No kernel": "", "No knowledge bases found.": "", "No knowledge found": "", + "No limit": "", "No memories to clear": "", "No model IDs": "", "No models available": "", @@ -1390,6 +1412,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Naudojate nepalaikomą (front-end) web ui rėžimą. Prašau serviruokite WebUI iš back-end", "Open file": "", "Open in full screen": "", + "Open in new tab": "", "Open link": "", "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", @@ -1450,6 +1473,7 @@ "Perplexity Model": "", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "", + "Persistent": "", "Personalization": "Personalizacija", "Pin": "Smeigtukas", "Pinned": "Įsmeigta", @@ -1486,6 +1510,7 @@ "Please select a valid JSON file": "", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "", + "Policy ID": "", "Port": "", "Ports": "", "Positive attitude": "Pozityvus elgesys", @@ -1565,6 +1590,7 @@ "Remove image": "", "Remove Model": "Pašalinti modelį", "Rename": "Pervadinti", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "", "Reply": "", @@ -1632,6 +1658,7 @@ "Search Groups": "", "Search In Models": "", "Search Knowledge": "", + "Search Memories": "", "Search Models": "Ieškoti modelių", "Search Notes": "", "Search options": "", @@ -1673,6 +1700,7 @@ "Select a theme": "", "Select a tool": "Pasirinkite įrankį", "Select a voice": "", + "Select All": "", "Select an auth method": "", "Select an embedding model engine": "", "Select an engine": "", @@ -1701,6 +1729,7 @@ "Serper API Key": "Serper API raktas", "Serply API Key": "Serply API raktas", "Serpstack API Key": "Serpstach API raktas", + "Server connection failed": "", "Server connection verified": "Serverio sujungimas patvirtintas", "Session": "", "Set as default": "Nustatyti numatytąjį", @@ -1802,6 +1831,7 @@ "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Baigt sekvenciją", + "Storage": "", "Stream Chat Response": "", "Stream Delta Chunk Size": "", "Streamable HTTP": "", diff --git a/src/lib/i18n/locales/lv-LV/translation.json b/src/lib/i18n/locales/lv-LV/translation.json index a6b9888ae7..1d2a1385b9 100644 --- a/src/lib/i18n/locales/lv-LV/translation.json +++ b/src/lib/i18n/locales/lv-LV/translation.json @@ -17,6 +17,9 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "{{COUNT}} atbildes", "{{COUNT}} Rows": "{{COUNT}} rindas", + "{{count}} selected_zero": "", + "{{count}} selected_one": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "{{COUNT}} avoti", "{{COUNT}} words": "{{COUNT}} vārdi", "{{COUNT}}d_time_ago": "", @@ -127,6 +130,7 @@ "Allow File Upload": "Atļaut failu augšupielādi", "Allow Multiple Models in Chat": "Atļaut vairākus modeļus tērzēšanā", "Allow non-local voices": "Atļaut ne-lokālās balsis", + "Allow public write access": "", "Allow Rate Response": "Atļaut vērtēt atbildi", "Allow Regenerate Response": "Atļaut atkārtoti ģenerēt atbildi", "Allow Sharing With Users": "", @@ -181,6 +185,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "Vai tiešām vēlaties dzēst \"{{NAME}}\"?", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "Vai tiešām vēlaties dzēst šo kanālu?", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "Vai tiešām vēlaties dzēst šo ziņojumu?", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +384,7 @@ "Configure": "Konfigurēt", "Confirm": "Apstiprināt", "Confirm Password": "Apstiprināt paroli", + "Confirm Prompt from Embed": "", "Confirm your action": "Apstipriniet savu darbību", "Confirm your new password": "Apstipriniet savu jauno paroli", "Confirm Your Password": "Apstipriniet savu paroli", @@ -386,6 +393,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "Savienojieties ar saviem OpenAI saderīgajiem API galapunktiem.", "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 successful": "Savienojums veiksmīgs", "Connection Type": "Savienojuma tips", @@ -426,6 +434,7 @@ "Copying to clipboard was successful!": "Kopēšana starpliktuvē bija veiksmīga!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "Pakalpojumu sniedzējam jākonfigurē CORS pareizi, lai atļautu pieprasījumus no Open WebUI.", "Could not read file.": "", + "CPU": "", "Create": "Izveidot", "Create a knowledge base": "Izveidot zināšanu bāzi", "Create a model": "Izveidot modeli", @@ -497,6 +506,7 @@ "Delete File": "", "Delete folder?": "Dzēst mapi?", "Delete function?": "Dzēst funkciju?", + "Delete Memory?": "", "Delete Message": "Dzēst ziņojumu", "Delete message?": "Dzēst ziņojumu?", "Delete Model": "Dzēst modeli", @@ -510,6 +520,7 @@ "Deleted": "Dzēsts", "Deleted {{deleteModelTag}}": "Dzēsts {{deleteModelTag}}", "Deleted {{name}}": "Dzēsts {{name}}", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "Dzēsts lietotājs", "Deployment names are required for Azure OpenAI": "Azure OpenAI ir nepieciešami izvietojumu nosaukumi", "Desc": "Dilstoši", @@ -518,6 +529,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "Aprakstiet savu zināšanu bāzi un mērķus", "Description": "Apraksts", + "Deselect": "", "Detect Artifacts Automatically": "Automātiski noteikt artefaktus", "Dictate": "Diktēt", "Didn't fully follow instructions": "Pilnībā neievēroja norādījumus", @@ -780,6 +792,8 @@ "Enter Your Username": "Ievadiet savu lietotājvārdu", "Enter your webhook URL": "Ievadiet savu webhook URL", "Entra ID": "Entra ID", + "Environment Variables": "", + "Ephemeral": "", "Error": "Kļūda", "ERROR": "KĻŪDA", "Error accessing directory": "Kļūda, piekļūstot direktorijai", @@ -856,6 +870,7 @@ "Failed to save connections": "Neizdevās saglabāt savienojumus", "Failed to save conversation": "Neizdevās saglabāt sarunu", "Failed to save models configuration": "Neizdevās saglabāt modeļu konfigurāciju", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "Neizdevās atjaunināt iestatījumus", @@ -871,6 +886,7 @@ "Feedback History": "Atsauksmju vēsture", "Feel free to add specific details": "Droši pievienojiet konkrētas detaļas", "Female": "Sieviete", + "Fetch URL Content Length Limit": "", "File": "Fails", "File added successfully.": "Fails veiksmīgi pievienots.", "File attached to chat": "", @@ -925,6 +941,7 @@ "Format Lines": "Formatēt rindas", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "Formatēt rindas izvadē. Noklusējums ir False. Ja iestatīts uz True, rindas tiks formatētas, lai noteiktu iekļauto matemātiku un stilus.", "Formatting may be inconsistent from source.": "Formatējums var atšķirties no avota.", + "Forward": "", "Forwards system user OAuth access token to authenticate": "Pārsūta sistēmas lietotāja OAuth piekļuves tokenu autentifikācijai", "Forwards system user session credentials to authenticate": "Pārsūta sistēmas lietotāja sesijas akreditācijas datus autentifikācijai", "Full Context Mode": "Pilna konteksta režīms", @@ -1012,6 +1029,7 @@ "ID": "ID", "ID cannot contain \":\" or \"|\" characters": "ID nedrīkst saturēt \":\" vai \"|\" rakstzīmes", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "iframe smilškastes atļaut formas", "iframe Sandbox Allow Same Origin": "iframe smilškastes atļaut to pašu izcelsmi", "Ignite curiosity": "Iededziet ziņkāri", @@ -1182,6 +1200,7 @@ "Max Speakers": "Maksimālais runātāju skaits", "Max Upload Count": "Maksimālais augšupielāžu skaits", "Max Upload Size": "Maksimālais augšupielādes izmērs", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "Maksimālais atļauto failu skaits mapē.", "Maximum number of files per folder is {{max}}.": "Maksimālais failu skaits mapē ir {{max}}.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Vienlaicīgi var lejupielādēt ne vairāk kā 3 modeļus. Lūdzu, mēģiniet vēlāk.", @@ -1213,6 +1232,7 @@ "Microsoft OneDrive": "Microsoft OneDrive", "Microsoft OneDrive (personal)": "Microsoft OneDrive (personīgais)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (darbs/skola)", + "min": "", "MinerU": "MinerU", "MinerU API Key required for Cloud API mode.": "MinerU API atslēga nepieciešama mākoņa API režīmam.", "Mistral OCR": "Mistral OCR", @@ -1318,6 +1338,7 @@ "No kernel": "", "No knowledge bases found.": "Zināšanu bāzes nav atrastas.", "No knowledge found": "Zināšanau bāze nav atrasta", + "No limit": "", "No memories to clear": "Nav atmiņu, ko notīrīt", "No model IDs": "Nav modeļu ID", "No models available": "", @@ -1390,6 +1411,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Hmm! Jūs izmantojat neatbalstītu metodi (tikai priekšgals). Lūdzu, apkalpojiet WebUI no aizmugursistēmas.", "Open file": "Atvērt failu", "Open in full screen": "Atvērt pilnekrāna režīmā", + "Open in new tab": "", "Open link": "Atvērt saiti", "Open modal to configure connection": "Atvērt logu, lai konfigurētu savienojumu", "Open Modal To Manage Floating Quick Actions": "Atvērt logu peldošo ātro darbību pārvaldībai", @@ -1450,6 +1472,7 @@ "Perplexity Model": "Perplexity modelis", "Perplexity Search API URL": "Perplexity Search API URL", "Perplexity Search Context Usage": "Perplexity meklēšanas konteksta lietojums", + "Persistent": "", "Personalization": "Personalizācija", "Pin": "Piespraust", "Pinned": "Piesprausts", @@ -1486,6 +1509,7 @@ "Please select a valid JSON file": "Lūdzu, izvēlieties derīgu JSON failu", "Please select at least one user for Direct Message channel.": "Lūdzu, izvēlieties vismaz vienu lietotāju tiešo ziņojumu kanālam.", "Please wait until all files are uploaded.": "Lūdzu, pagaidiet, līdz visi faili ir augšupielādēti.", + "Policy ID": "", "Port": "Ports", "Ports": "", "Positive attitude": "Pozitīva attieksme", @@ -1565,6 +1589,7 @@ "Remove image": "Noņemt attēlu", "Remove Model": "Noņemt modeli", "Rename": "Pārdēvēt", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "Pārkārtot modeļus", "Reply": "Atbildēt", @@ -1631,6 +1656,7 @@ "Search Groups": "", "Search In Models": "Meklēt modeļos", "Search Knowledge": "Meklēt zināšanas", + "Search Memories": "", "Search Models": "Meklēt modeļus", "Search Notes": "Meklēt piezīmes", "Search options": "Meklēšanas opcijas", @@ -1672,6 +1698,7 @@ "Select a theme": "Izvēlieties tēmu", "Select a tool": "Izvēlieties rīku", "Select a voice": "Izvēlieties balsi", + "Select All": "", "Select an auth method": "Izvēlieties autentifikācijas metodi", "Select an embedding model engine": "Izvēlieties iegulšanas modeļa dzinēju", "Select an engine": "Izvēlieties dzinēju", @@ -1700,6 +1727,7 @@ "Serper API Key": "Serper API atslēga", "Serply API Key": "Serply API atslēga", "Serpstack API Key": "Serpstack API atslēga", + "Server connection failed": "", "Server connection verified": "Servera savienojums pārbaudīts", "Session": "Sesija", "Set as default": "Iestatīt kā noklusējumu", @@ -1801,6 +1829,7 @@ "Stop Download": "Apturēt lejupielādi", "Stop Generating": "Apturēt ģenerēšanu", "Stop Sequence": "Apstāšanās secība", + "Storage": "", "Stream Chat Response": "Straumēt tērzēšanas atbildi", "Stream Delta Chunk Size": "Straumes delta fragmenta izmērs", "Streamable HTTP": "Straumējams HTTP", diff --git a/src/lib/i18n/locales/ms-MY/translation.json b/src/lib/i18n/locales/ms-MY/translation.json index 403999ff7d..f2ae32ea14 100644 --- a/src/lib/i18n/locales/ms-MY/translation.json +++ b/src/lib/i18n/locales/ms-MY/translation.json @@ -17,6 +17,7 @@ "{{COUNT}} members": "{{COUNT}} ahli", "{{COUNT}} Replies": "{{COUNT}} Balasan", "{{COUNT}} Rows": "{{COUNT}} Baris", + "{{count}} selected_other": "", "{{COUNT}} Sources": "{{COUNT}} Sumber", "{{COUNT}} words": "{{COUNT}} perkataan", "{{COUNT}}d_time_ago": "{{COUNT}}h yang lalu", @@ -127,6 +128,7 @@ "Allow File Upload": "Benarkan Muat Naik Fail", "Allow Multiple Models in Chat": "Benarkan Berbilang Model dalam Sembang", "Allow non-local voices": "Benarkan suara bukan tempatan ", + "Allow public write access": "", "Allow Rate Response": "Benarkan Penilaian Respons", "Allow Regenerate Response": "Benarkan Jana Semula Respons", "Allow Sharing With Users": "Benarkan Perkongsian dengan Pengguna", @@ -181,6 +183,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "Adakah anda pasti ingin menghapus \"{{NAME}}\"?", "Are you sure you want to delete all chats? This action cannot be undone.": "Adakah anda pasti ingin menghapus semua obrolan? Tindakan ini tidak boleh dibatalkan.", "Are you sure you want to delete this channel?": "Adakah anda pasti ingin menghapus saluran ini?", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "Adakah anda pasti ingin menghapus mesej ini?", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "Adakah anda pasti ingin menghapus versi ini? Versi anak akan dipautkan semula ke induk versi ini.", "Are you sure you want to delete this?": "Adakah anda pasti ingin menghapus ini?", @@ -378,6 +382,7 @@ "Configure": "Konfigurasikan", "Confirm": "Sahkan", "Confirm Password": "Sahkan kata laluan", + "Confirm Prompt from Embed": "", "Confirm your action": "Sahkan tindakan anda", "Confirm your new password": "Sahkan kata laluan baru anda", "Confirm Your Password": "Sahkan Kata Laluan Anda", @@ -386,6 +391,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "Sambung ke instans Terminal Terbuka. Semua pengguna akan mempunyai akses kepada penyemakan fail dan alat terminal melalui pelayan ini.", "Connect to your own OpenAI compatible API endpoints.": "Sambung ke titik akhir API yang serasi dengan OpenAI anda sendiri.", "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 successful": "Sambungan berjaya", "Connection Type": "Jenis Sambungan", @@ -426,6 +432,7 @@ "Copying to clipboard was successful!": "Menyalin ke papan klip berjaya!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "CORS mesti dikonfigurasi dengan betul oleh pembekal untuk membenarkan permintaan daripada Open WebUI.", "Could not read file.": "Tidak dapat membaca fail.", + "CPU": "", "Create": "Buat", "Create a knowledge base": "Buat pangkalan pengetahuan", "Create a model": "Cipta model", @@ -497,6 +504,7 @@ "Delete File": "Padam Fail", "Delete folder?": "Padam folder?", "Delete function?": "Padam fungsi?", + "Delete Memory?": "", "Delete Message": "Padam Mesej", "Delete message?": "Padam mesej?", "Delete Model": "Padam Model", @@ -510,6 +518,7 @@ "Deleted": "Sudah Dipadam", "Deleted {{deleteModelTag}}": "{{deleteModelTag}} dipadam", "Deleted {{name}}": "{{name}} dipadam", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "Pengguna yang Dipadam", "Deployment names are required for Azure OpenAI": "Nama penggunaan diperlukan untuk Azure OpenAI", "Desc": "Penerangan", @@ -518,6 +527,7 @@ "Describe what changed...": "Terangkan apa yang berubah...", "Describe your knowledge base and objectives": "Terangkan pangkalan pengetahuan dan objektif anda", "Description": "Penerangan", + "Deselect": "", "Detect Artifacts Automatically": "Kesan Artifak Secara Automatik", "Dictate": "Dikte", "Didn't fully follow instructions": "Tidak mengikut arahan sepenuhnya", @@ -780,6 +790,8 @@ "Enter Your Username": "Masukkan Nama Pengguna Anda", "Enter your webhook URL": "Masukkan URL webhook anda", "Entra ID": "Entra ID", + "Environment Variables": "", + "Ephemeral": "", "Error": "Ralat", "ERROR": "RALAT", "Error accessing directory": "Ralat mengakses direktori", @@ -856,6 +868,7 @@ "Failed to save connections": "Gagal menyimpan sambungan", "Failed to save conversation": "Gagal menyimpan perbualan", "Failed to save models configuration": "Gagal menyimpan konfigurasi model", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "Gagal menyimpan pelayan terminal", "Failed to unshare chat.": "Gagal membatalkan perkongsian sembang.", "Failed to update settings": "Gagal mengemaskini tetapan", @@ -871,6 +884,7 @@ "Feedback History": "Sejarah Maklum Balas", "Feel free to add specific details": "Jangan ragu untuk menambah butiran khusus", "Female": "Perempuan", + "Fetch URL Content Length Limit": "", "File": "Fail", "File added successfully.": "Fail telah ditambah dengan berjaya.", "File attached to chat": "Fail dilampirkan pada sembang", @@ -925,6 +939,7 @@ "Format Lines": "Format Baris", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "Format baris dalam output. Lalai kepada False. Jika ditetapkan kepada True, baris akan diformat untuk mengesan matematik sebaris dan gaya.", "Formatting may be inconsistent from source.": "Pemformatan mungkin tidak konsisten dari sumber.", + "Forward": "", "Forwards system user OAuth access token to authenticate": "Meneruskan token akses OAuth pengguna sistem untuk pengesahan", "Forwards system user session credentials to authenticate": "Meneruskan bukti kelayakan sesi pengguna sistem untuk pengesahan", "Full Context Mode": "Mod Konteks Penuh", @@ -1012,6 +1027,7 @@ "ID": "ID", "ID cannot contain \":\" or \"|\" characters": "ID tidak boleh mengandungi aksara \":\" atau \"|\"", "ID copied to clipboard": "ID disalin ke papan kerja", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "iframe Sandbox Benarkan Borang", "iframe Sandbox Allow Same Origin": "Benarkan Asal Sama untuk Sandbox iframe", "Ignite curiosity": "Nyalakan rasa ingin tahu", @@ -1182,6 +1198,7 @@ "Max Speakers": "Pembicara Maksimum", "Max Upload Count": "Bilangan Muat Naik Maksimum", "Max Upload Size": "Saiz Muat Naik Maksimum", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "Bilangan maksimum fail yang dibenarkan setiap folder.", "Maximum number of files per folder is {{max}}.": "Bilangan maksimum fail setiap folder ialah {{max}}.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maksimum 3 model boleh dimuat turun serentak. Sila cuba sebentar lagi.", @@ -1213,6 +1230,7 @@ "Microsoft OneDrive": "Microsoft OneDrive", "Microsoft OneDrive (personal)": "Microsoft OneDrive (peribadi)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (kerja/sekolah)", + "min": "", "MinerU": "MinerU", "MinerU API Key required for Cloud API mode.": "Kunci API MinerU diperlukan untuk mod Cloud API.", "Mistral OCR": "Mistral OCR", @@ -1318,6 +1336,7 @@ "No kernel": "Tiada kernel", "No knowledge bases found.": "Tiada pangkalan pengetahuan ditemui.", "No knowledge found": "Tiada pengetahuan ditemui", + "No limit": "", "No memories to clear": "Tiada ingatan untuk dipadam", "No model IDs": "Tiada ID model", "No models available": "Tiada model tersedia", @@ -1390,6 +1409,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Maaf, Anda menggunakan kaedah yang tidak disokong (bahagian 'frontend' sahaja). Sila sediakan WebUI dari 'backend'.", "Open file": "Buka fail", "Open in full screen": "Buka dalam skrin penuh", + "Open in new tab": "", "Open link": "Buka pautan", "Open modal to configure connection": "Buka modal untuk mengkonfigurasi sambungan", "Open Modal To Manage Floating Quick Actions": "Buka Modal Untuk Menguruskan Tindakan Pantas Terapung", @@ -1450,6 +1470,7 @@ "Perplexity Model": "Model Perplexity", "Perplexity Search API URL": "URL API Pencarian Perplexity", "Perplexity Search Context Usage": "Penggunaan Konteks Pencarian Perplexity", + "Persistent": "", "Personalization": "Personalisasi", "Pin": "Pin", "Pinned": "Disemat", @@ -1486,6 +1507,7 @@ "Please select a valid JSON file": "Sila pilih fail JSON yang sah", "Please select at least one user for Direct Message channel.": "Sila pilih sekurang-kurangnya satu pengguna untuk saluran Direct Message.", "Please wait until all files are uploaded.": "Sila tunggu sehingga semua fail dimuat naik.", + "Policy ID": "", "Port": "Port", "Ports": "Port", "Positive attitude": "Sikap positif", @@ -1565,6 +1587,7 @@ "Remove image": "Buang imej", "Remove Model": "Hapuskan Model", "Rename": "Namakan Semula", + "Renamed to {{name}}": "", "Render Markdown in Previews": "Render Markdown dalam Pratonton", "Reorder Models": "Susun Semula Model", "Reply": "Balas", @@ -1629,6 +1652,7 @@ "Search Groups": "Cari Kumpulan", "Search In Models": "Cari Dalam Model", "Search Knowledge": "Cari Pengetahuan", + "Search Memories": "", "Search Models": "Carian Model", "Search Notes": "Cari Nota", "Search options": "Pilihan carian", @@ -1670,6 +1694,7 @@ "Select a theme": "Pilih tema", "Select a tool": "Pilih alat", "Select a voice": "Pilih suara", + "Select All": "", "Select an auth method": "Pilih kaedah pengesahan", "Select an embedding model engine": "Pilih enjin model terbenam", "Select an engine": "Pilih enjin", @@ -1698,6 +1723,7 @@ "Serper API Key": "Kunci API Serper", "Serply API Key": "Kunci API Serply", "Serpstack API Key": "Kunci API Serpstack", + "Server connection failed": "", "Server connection verified": "Sambungan pelayan disahkan", "Session": "Sesi", "Set as default": "Tetapkan sebagai lalai", @@ -1799,6 +1825,7 @@ "Stop Download": "Hentikan Muat Turun", "Stop Generating": "Hentikan Penjanaan", "Stop Sequence": "Jujukan Henti", + "Storage": "", "Stream Chat Response": "Respons Sembang Aliran", "Stream Delta Chunk Size": "Saiz Ketulan Delta Aliran", "Streamable HTTP": "HTTP Boleh Alir", diff --git a/src/lib/i18n/locales/nb-NO/translation.json b/src/lib/i18n/locales/nb-NO/translation.json index 0691b1aaa5..1e2ee3bc3d 100644 --- a/src/lib/i18n/locales/nb-NO/translation.json +++ b/src/lib/i18n/locales/nb-NO/translation.json @@ -17,6 +17,8 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "{{COUNT}} svar", "{{COUNT}} Rows": "", + "{{count}} selected_one": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", "{{COUNT}}d_time_ago": "", @@ -127,6 +129,7 @@ "Allow File Upload": "Tillatt opplasting av filer", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Tillat ikke-lokale stemmer", + "Allow public write access": "", "Allow Rate Response": "", "Allow Regenerate Response": "", "Allow Sharing With Users": "", @@ -181,6 +184,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "Er du sikker på at du vil slette denne kanalen?", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "Er du sikker på at du vil slette denne meldingen?", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +383,7 @@ "Configure": "Konfigurer", "Confirm": "Bekreft", "Confirm Password": "Bekreft passordet", + "Confirm Prompt from Embed": "", "Confirm your action": "Bekreft handlingen", "Confirm your new password": "Bekreft det nye passordet ditt", "Confirm Your Password": "", @@ -386,6 +392,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "Koble til egne OpenAI-kompatible API-endepunkter", "Connect to your own OpenAPI compatible external tool servers.": "", + "Connected ({{type}})": "", "Connection failed": "", "Connection successful": "", "Connection Type": "", @@ -426,6 +433,7 @@ "Copying to clipboard was successful!": "Kopiert til utklippstavlen!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "CORS må være riktig konfigurert av leverandøren for å kunne godkjenne forespørsler fra Open WebUI.", "Could not read file.": "", + "CPU": "", "Create": "Opprett", "Create a knowledge base": "Opprett en kunnskapsbase", "Create a model": "Opprett en modell", @@ -497,6 +505,7 @@ "Delete File": "", "Delete folder?": "Slette mappe?", "Delete function?": "Slette funksjon?", + "Delete Memory?": "", "Delete Message": "Slett melding", "Delete message?": "Slette melding?", "Delete Model": "", @@ -510,6 +519,7 @@ "Deleted": "", "Deleted {{deleteModelTag}}": "Slettet {{deleteModelTag}}", "Deleted {{name}}": "Slettet {{name}}", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "Slettet bruker", "Deployment names are required for Azure OpenAI": "", "Desc": "", @@ -518,6 +528,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "Beskriv kunnskapsbasen din og målene dine", "Description": "Beskrivelse", + "Deselect": "", "Detect Artifacts Automatically": "", "Dictate": "", "Didn't fully follow instructions": "Fulgte ikke instruksjonene fullstendig", @@ -780,6 +791,8 @@ "Enter Your Username": "Skriv inn brukernavnet ditt", "Enter your webhook URL": "Angi URL for webhook", "Entra ID": "", + "Environment Variables": "", + "Ephemeral": "", "Error": "Feil", "ERROR": "FEIL", "Error accessing directory": "", @@ -856,6 +869,7 @@ "Failed to save connections": "", "Failed to save conversation": "Kan ikke lagre samtalen", "Failed to save models configuration": "Kan ikke lagre konfigurasjonen av modeller", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "Kan ikke oppdatere innstillinger", @@ -871,6 +885,7 @@ "Feedback History": "Tilbakemeldingslogg", "Feel free to add specific details": "Legg gjerne til bestemte detaljer", "Female": "", + "Fetch URL Content Length Limit": "", "File": "Fil", "File added successfully.": "Filen er lagt til.", "File attached to chat": "", @@ -925,6 +940,7 @@ "Format Lines": "", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "", "Formatting may be inconsistent from source.": "", + "Forward": "", "Forwards system user OAuth access token to authenticate": "", "Forwards system user session credentials to authenticate": "", "Full Context Mode": "Modus for full kontekst", @@ -1012,6 +1028,7 @@ "ID": "ID", "ID cannot contain \":\" or \"|\" characters": "", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "", "iframe Sandbox Allow Same Origin": "", "Ignite curiosity": "Vekk nysgjerrigheten", @@ -1182,6 +1199,7 @@ "Max Speakers": "", "Max Upload Count": "Maks antall opplastinger", "Max Upload Size": "Maks størrelse på opplasting", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maksimalt tre modeller kan lastes ned samtidig. Prøv igjen senere.", @@ -1213,6 +1231,7 @@ "Microsoft OneDrive": "", "Microsoft OneDrive (personal)": "", "Microsoft OneDrive (work/school)": "", + "min": "", "MinerU": "", "MinerU API Key required for Cloud API mode.": "", "Mistral OCR": "", @@ -1318,6 +1337,7 @@ "No kernel": "", "No knowledge bases found.": "", "No knowledge found": "Finner ingen kunnskaper", + "No limit": "", "No memories to clear": "", "No model IDs": "Ingen modell-ID-er", "No models available": "", @@ -1390,6 +1410,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Oi! Du bruker en ikke-støttet metode (bare frontend). Du må kjøre WebUI fra backend.", "Open file": "Åpne fil", "Open in full screen": "Åpne i fullskjerm", + "Open in new tab": "", "Open link": "", "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", @@ -1450,6 +1471,7 @@ "Perplexity Model": "", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "", + "Persistent": "", "Personalization": "Tilpassing", "Pin": "Fest", "Pinned": "Festet", @@ -1486,6 +1508,7 @@ "Please select a valid JSON file": "", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "", + "Policy ID": "", "Port": "Port", "Ports": "", "Positive attitude": "Positiv holdning", @@ -1565,6 +1588,7 @@ "Remove image": "", "Remove Model": "Fjern modell", "Rename": "Gi nytt navn", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "Sorter modeller på nytt", "Reply": "", @@ -1630,6 +1654,7 @@ "Search Groups": "", "Search In Models": "", "Search Knowledge": "Søke etter kunnskap", + "Search Memories": "", "Search Models": "Søk etter modeller", "Search Notes": "", "Search options": "Søk etter alternativer", @@ -1671,6 +1696,7 @@ "Select a theme": "", "Select a tool": "Velg et verktøy", "Select a voice": "", + "Select All": "", "Select an auth method": "Velg en autentiseringsmetode", "Select an embedding model engine": "", "Select an engine": "", @@ -1699,6 +1725,7 @@ "Serper API Key": "API-nøkkel for Serper", "Serply API Key": "API-nøkkel for Serply", "Serpstack API Key": "API-nøkkel for Serpstack", + "Server connection failed": "", "Server connection verified": "Servertilkobling bekreftet", "Session": "", "Set as default": "Angi som standard", @@ -1800,6 +1827,7 @@ "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Stoppsekvens", + "Storage": "", "Stream Chat Response": "Strømme chat-svar", "Stream Delta Chunk Size": "", "Streamable HTTP": "", diff --git a/src/lib/i18n/locales/nl-NL/translation.json b/src/lib/i18n/locales/nl-NL/translation.json index 70661dcb5f..b460b41c1b 100644 --- a/src/lib/i18n/locales/nl-NL/translation.json +++ b/src/lib/i18n/locales/nl-NL/translation.json @@ -17,6 +17,8 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "{{COUNT}} antwoorden", "{{COUNT}} Rows": "", + "{{count}} selected_one": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "{{COUNT}} woorden", "{{COUNT}}d_time_ago": "", @@ -127,6 +129,7 @@ "Allow File Upload": "Bestandenupload toestaan", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Niet-lokale stemmen toestaan", + "Allow public write access": "", "Allow Rate Response": "", "Allow Regenerate Response": "", "Allow Sharing With Users": "", @@ -181,6 +184,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "Weet je zeker dat je dit kanaal wil verwijderen?", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "Weet je zeker dat je dit bericht wil verwijderen?", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +383,7 @@ "Configure": "Configureer", "Confirm": "Bevestigen", "Confirm Password": "Bevestig wachtwoord", + "Confirm Prompt from Embed": "", "Confirm your action": "Bevestig je actie", "Confirm your new password": "Bevestig je nieuwe wachtwoord", "Confirm Your Password": "", @@ -386,6 +392,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "Verbind met je eigen OpenAI-compatibele API-endpoints", "Connect to your own OpenAPI compatible external tool servers.": "Verbind met je eigen OpenAPI-compatibele externe gereedschapservers", + "Connected ({{type}})": "", "Connection failed": "Connectie mislukt", "Connection successful": "Connectie succesvol", "Connection Type": "Connectie type", @@ -426,6 +433,7 @@ "Copying to clipboard was successful!": "Kopiëren naar klembord was succesvol!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "CORS moet goed geconfigureerd zijn bij de provider om verzoeken van Open WebUI toe te staan", "Could not read file.": "", + "CPU": "", "Create": "Aanmaken", "Create a knowledge base": "Maak een kennisbasis aan", "Create a model": "Een model maken", @@ -497,6 +505,7 @@ "Delete File": "", "Delete folder?": "Verwijder map?", "Delete function?": "Verwijder functie?", + "Delete Memory?": "", "Delete Message": "Verwijder bericht", "Delete message?": "Bericht verwijderen?", "Delete Model": "", @@ -510,6 +519,7 @@ "Deleted": "", "Deleted {{deleteModelTag}}": "{{deleteModelTag}} is verwijderd", "Deleted {{name}}": "{{name}} verwijderd", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "Gebruiker verwijderd", "Deployment names are required for Azure OpenAI": "", "Desc": "", @@ -518,6 +528,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "Beschrijf je kennisbasis en doelstellingen", "Description": "Beschrijving", + "Deselect": "", "Detect Artifacts Automatically": "", "Dictate": "", "Didn't fully follow instructions": "Heeft niet alle instructies gevolgd", @@ -780,6 +791,8 @@ "Enter Your Username": "Voer je gebruikersnaam in", "Enter your webhook URL": "Voer je webhook-URL in", "Entra ID": "", + "Environment Variables": "", + "Ephemeral": "", "Error": "Fout", "ERROR": "ERROR", "Error accessing directory": "", @@ -856,6 +869,7 @@ "Failed to save connections": "", "Failed to save conversation": "Het is niet gelukt om het gesprek op te slaan", "Failed to save models configuration": "Het is niet gelukt om de modelconfiguratie op te slaan", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "Instellingen konden niet worden bijgewerkt.", @@ -871,6 +885,7 @@ "Feedback History": "Feedback geschiedenis", "Feel free to add specific details": "Voeg specifieke details toe", "Female": "", + "Fetch URL Content Length Limit": "", "File": "Bestand", "File added successfully.": "Bestand succesvol toegevoegd.", "File attached to chat": "", @@ -925,6 +940,7 @@ "Format Lines": "", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "", "Formatting may be inconsistent from source.": "", + "Forward": "", "Forwards system user OAuth access token to authenticate": "", "Forwards system user session credentials to authenticate": "", "Full Context Mode": "Volledige contextmodus", @@ -1012,6 +1028,7 @@ "ID": "ID", "ID cannot contain \":\" or \"|\" characters": "", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "", "iframe Sandbox Allow Same Origin": "", "Ignite curiosity": "Wakker nieuwsgierigheid aan", @@ -1182,6 +1199,7 @@ "Max Speakers": "", "Max Upload Count": "Maximale Uploadhoeveelheid", "Max Upload Size": "Maximale Uploadgrootte", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maximaal 3 modellen kunnen tegelijkertijd worden gedownload. Probeer het later opnieuw.", @@ -1213,6 +1231,7 @@ "Microsoft OneDrive": "", "Microsoft OneDrive (personal)": "", "Microsoft OneDrive (work/school)": "", + "min": "", "MinerU": "", "MinerU API Key required for Cloud API mode.": "", "Mistral OCR": "", @@ -1318,6 +1337,7 @@ "No kernel": "", "No knowledge bases found.": "", "No knowledge found": "Geen kennis gevonden", + "No limit": "", "No memories to clear": "Geen herinneringen om op te ruimen", "No model IDs": "Geen model-ID's", "No models available": "", @@ -1390,6 +1410,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Oeps! Je gebruikt een niet-ondersteunde methode (alleen frontend). Serveer de WebUI vanuit de backend.", "Open file": "Open bestand", "Open in full screen": "Open in volledig scherm", + "Open in new tab": "", "Open link": "", "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", @@ -1450,6 +1471,7 @@ "Perplexity Model": "", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "", + "Persistent": "", "Personalization": "Personalisatie", "Pin": "Zet vast", "Pinned": "Vastgezet", @@ -1486,6 +1508,7 @@ "Please select a valid JSON file": "", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "", + "Policy ID": "", "Port": "Poort", "Ports": "", "Positive attitude": "Positieve houding", @@ -1565,6 +1588,7 @@ "Remove image": "", "Remove Model": "Verwijder model", "Rename": "Hernoemen", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "Herschik modellen", "Reply": "", @@ -1630,6 +1654,7 @@ "Search Groups": "", "Search In Models": "", "Search Knowledge": "Zoek naar Kennis", + "Search Memories": "", "Search Models": "Modellen zoeken", "Search Notes": "", "Search options": "Opties zoeken", @@ -1671,6 +1696,7 @@ "Select a theme": "", "Select a tool": "Selecteer een tool", "Select a voice": "", + "Select All": "", "Select an auth method": "Selecteer een authenticatiemethode", "Select an embedding model engine": "", "Select an engine": "", @@ -1699,6 +1725,7 @@ "Serper API Key": "Serper API-sleutel", "Serply API Key": "Serply API-sleutel", "Serpstack API Key": "Serpstack API-sleutel", + "Server connection failed": "", "Server connection verified": "Server verbinding geverifieerd", "Session": "", "Set as default": "Stel in als standaard", @@ -1800,6 +1827,7 @@ "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Stopsequentie", + "Storage": "", "Stream Chat Response": "Stream chat-antwoord", "Stream Delta Chunk Size": "", "Streamable HTTP": "", diff --git a/src/lib/i18n/locales/pa-IN/translation.json b/src/lib/i18n/locales/pa-IN/translation.json index 98ff23a3f8..09554be309 100644 --- a/src/lib/i18n/locales/pa-IN/translation.json +++ b/src/lib/i18n/locales/pa-IN/translation.json @@ -17,6 +17,8 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "", "{{COUNT}} Rows": "", + "{{count}} selected_one": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", "{{COUNT}}d_time_ago": "", @@ -127,6 +129,7 @@ "Allow File Upload": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "", + "Allow public write access": "", "Allow Rate Response": "", "Allow Regenerate Response": "", "Allow Sharing With Users": "", @@ -181,6 +184,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +383,7 @@ "Configure": "", "Confirm": "", "Confirm Password": "ਪਾਸਵਰਡ ਦੀ ਪੁਸ਼ਟੀ ਕਰੋ", + "Confirm Prompt from Embed": "", "Confirm your action": "", "Confirm your new password": "", "Confirm Your Password": "", @@ -386,6 +392,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAPI compatible external tool servers.": "", + "Connected ({{type}})": "", "Connection failed": "", "Connection successful": "", "Connection Type": "", @@ -426,6 +433,7 @@ "Copying to clipboard was successful!": "ਕਲਿੱਪਬੋਰਡ 'ਤੇ ਕਾਪੀ ਕਰਨਾ ਸਫਲ ਰਿਹਾ!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "", "Could not read file.": "", + "CPU": "", "Create": "", "Create a knowledge base": "", "Create a model": "ਇੱਕ ਮਾਡਲ ਬਣਾਓ", @@ -497,6 +505,7 @@ "Delete File": "", "Delete folder?": "", "Delete function?": "", + "Delete Memory?": "", "Delete Message": "", "Delete message?": "", "Delete Model": "", @@ -510,6 +519,7 @@ "Deleted": "", "Deleted {{deleteModelTag}}": "{{deleteModelTag}} ਮਿਟਾਇਆ ਗਿਆ", "Deleted {{name}}": "ਮਿਟਾ ਦਿੱਤਾ ਗਿਆ {{name}}", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "", "Deployment names are required for Azure OpenAI": "", "Desc": "", @@ -518,6 +528,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "", "Description": "ਵਰਣਨਾ", + "Deselect": "", "Detect Artifacts Automatically": "", "Dictate": "", "Didn't fully follow instructions": "ਹਦਾਇਤਾਂ ਨੂੰ ਪੂਰੀ ਤਰ੍ਹਾਂ ਫਾਲੋ ਨਹੀਂ ਕੀਤਾ", @@ -780,6 +791,8 @@ "Enter Your Username": "", "Enter your webhook URL": "", "Entra ID": "", + "Environment Variables": "", + "Ephemeral": "", "Error": "ਗਲਤੀ", "ERROR": "", "Error accessing directory": "", @@ -856,6 +869,7 @@ "Failed to save connections": "", "Failed to save conversation": "ਗੱਲਬਾਤ ਸੰਭਾਲਣ ਵਿੱਚ ਅਸਫਲ", "Failed to save models configuration": "", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "", @@ -871,6 +885,7 @@ "Feedback History": "", "Feel free to add specific details": "ਖੁੱਲ੍ਹੇ ਦਿਲ ਨਾਲ ਖਾਸ ਵੇਰਵੇ ਸ਼ਾਮਲ ਕਰੋ", "Female": "", + "Fetch URL Content Length Limit": "", "File": "", "File added successfully.": "", "File attached to chat": "", @@ -925,6 +940,7 @@ "Format Lines": "", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "", "Formatting may be inconsistent from source.": "", + "Forward": "", "Forwards system user OAuth access token to authenticate": "", "Forwards system user session credentials to authenticate": "", "Full Context Mode": "", @@ -1012,6 +1028,7 @@ "ID": "", "ID cannot contain \":\" or \"|\" characters": "", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "", "iframe Sandbox Allow Same Origin": "", "Ignite curiosity": "", @@ -1182,6 +1199,7 @@ "Max Speakers": "", "Max Upload Count": "", "Max Upload Size": "", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "ਇੱਕ ਸਮੇਂ ਵਿੱਚ ਵੱਧ ਤੋਂ ਵੱਧ 3 ਮਾਡਲ ਡਾਊਨਲੋਡ ਕੀਤੇ ਜਾ ਸਕਦੇ ਹਨ। ਕਿਰਪਾ ਕਰਕੇ ਬਾਅਦ ਵਿੱਚ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ।", @@ -1213,6 +1231,7 @@ "Microsoft OneDrive": "", "Microsoft OneDrive (personal)": "", "Microsoft OneDrive (work/school)": "", + "min": "", "MinerU": "", "MinerU API Key required for Cloud API mode.": "", "Mistral OCR": "", @@ -1318,6 +1337,7 @@ "No kernel": "", "No knowledge bases found.": "", "No knowledge found": "", + "No limit": "", "No memories to clear": "", "No model IDs": "", "No models available": "", @@ -1390,6 +1410,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "ਓਹੋ! ਤੁਸੀਂ ਇੱਕ ਅਣਸਮਰਥਿਤ ਢੰਗ ਵਰਤ ਰਹੇ ਹੋ (ਸਿਰਫ਼ ਫਰੰਟਐਂਡ)। ਕਿਰਪਾ ਕਰਕੇ ਵੈਬਯੂਆਈ ਨੂੰ ਬੈਕਐਂਡ ਤੋਂ ਸਰਵ ਕਰੋ।", "Open file": "", "Open in full screen": "", + "Open in new tab": "", "Open link": "", "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", @@ -1450,6 +1471,7 @@ "Perplexity Model": "", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "", + "Persistent": "", "Personalization": "ਪਰਸੋਨਲਿਸ਼ਮ", "Pin": "", "Pinned": "", @@ -1486,6 +1508,7 @@ "Please select a valid JSON file": "", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "", + "Policy ID": "", "Port": "", "Ports": "", "Positive attitude": "ਸਕਾਰਾਤਮਕ ਰਵੱਈਆ", @@ -1565,6 +1588,7 @@ "Remove image": "", "Remove Model": "ਮਾਡਲ ਹਟਾਓ", "Rename": "ਨਾਮ ਬਦਲੋ", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "", "Reply": "", @@ -1630,6 +1654,7 @@ "Search Groups": "", "Search In Models": "", "Search Knowledge": "", + "Search Memories": "", "Search Models": "ਖੋਜ ਮਾਡਲ", "Search Notes": "", "Search options": "", @@ -1671,6 +1696,7 @@ "Select a theme": "", "Select a tool": "", "Select a voice": "", + "Select All": "", "Select an auth method": "", "Select an embedding model engine": "", "Select an engine": "", @@ -1699,6 +1725,7 @@ "Serper API Key": "Serper API ਕੁੰਜੀ", "Serply API Key": "", "Serpstack API Key": "Serpstack API ਕੁੰਜੀ", + "Server connection failed": "", "Server connection verified": "ਸਰਵਰ ਕਨੈਕਸ਼ਨ ਦੀ ਪੁਸ਼ਟੀ ਕੀਤੀ ਗਈ", "Session": "", "Set as default": "ਮੂਲ ਵਜੋਂ ਸੈੱਟ ਕਰੋ", @@ -1800,6 +1827,7 @@ "Stop Download": "", "Stop Generating": "", "Stop Sequence": "ਰੋਕੋ ਕ੍ਰਮ", + "Storage": "", "Stream Chat Response": "", "Stream Delta Chunk Size": "", "Streamable HTTP": "", diff --git a/src/lib/i18n/locales/pl-PL/translation.json b/src/lib/i18n/locales/pl-PL/translation.json index d4e3da9a0f..c85a74b52f 100644 --- a/src/lib/i18n/locales/pl-PL/translation.json +++ b/src/lib/i18n/locales/pl-PL/translation.json @@ -17,6 +17,10 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "{{COUNT}} odpowiedzi", "{{COUNT}} Rows": "{{COUNT}} wierszy", + "{{count}} selected_one": "", + "{{count}} selected_few": "", + "{{count}} selected_many": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "{{COUNT}} źródeł", "{{COUNT}} words": "{{COUNT}} słów", "{{COUNT}}d_time_ago": "", @@ -127,6 +131,7 @@ "Allow File Upload": "Zezwól na przesyłanie plików", "Allow Multiple Models in Chat": "Zezwól na wiele modeli w czacie", "Allow non-local voices": "Zezwól na głosy nielokalne", + "Allow public write access": "", "Allow Rate Response": "Zezwól na ocenianie odpowiedzi", "Allow Regenerate Response": "Zezwól na regenerację odpowiedzi", "Allow Sharing With Users": "", @@ -181,6 +186,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "Czy na pewno chcesz usunąć \"{{NAME}}\"?", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "Czy na pewno chcesz usunąć ten kanał?", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "Czy na pewno chcesz usunąć tę wiadomość?", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +385,7 @@ "Configure": "Konfiguruj", "Confirm": "Potwierdź", "Confirm Password": "Potwierdź hasło", + "Confirm Prompt from Embed": "", "Confirm your action": "Potwierdź działanie", "Confirm your new password": "Potwierdź nowe hasło", "Confirm Your Password": "Potwierdź swoje hasło", @@ -386,6 +394,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "Połącz z własnymi punktami końcowymi API zgodnymi z OpenAI.", "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 successful": "Połączenie udane", "Connection Type": "Typ połączenia", @@ -426,6 +435,7 @@ "Copying to clipboard was successful!": "Pomyślnie skopiowano do schowka!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "Dostawca musi poprawnie skonfigurować CORS, aby zezwolić na żądania z Open WebUI.", "Could not read file.": "", + "CPU": "", "Create": "Utwórz", "Create a knowledge base": "Utwórz bazę wiedzy", "Create a model": "Utwórz model", @@ -497,6 +507,7 @@ "Delete File": "", "Delete folder?": "Usunąć folder?", "Delete function?": "Usunąć funkcję?", + "Delete Memory?": "", "Delete Message": "Usuń wiadomość", "Delete message?": "Usunąć wiadomość?", "Delete Model": "Usuń model", @@ -510,6 +521,7 @@ "Deleted": "Usunięto", "Deleted {{deleteModelTag}}": "Usunięto {{deleteModelTag}}", "Deleted {{name}}": "Usunięto {{name}}", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "Usunięty użytkownik", "Deployment names are required for Azure OpenAI": "Nazwy wdrożeń są wymagane dla Azure OpenAI", "Desc": "Opis", @@ -518,6 +530,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "Opisz bazę wiedzy i jej cele", "Description": "Opis", + "Deselect": "", "Detect Artifacts Automatically": "Wykrywaj artefakty automatycznie", "Dictate": "Dyktuj", "Didn't fully follow instructions": "Nie w pełni wykonał instrukcje", @@ -780,6 +793,8 @@ "Enter Your Username": "Wprowadź nazwę użytkownika", "Enter your webhook URL": "Wprowadź URL webhooka", "Entra ID": "Entra ID", + "Environment Variables": "", + "Ephemeral": "", "Error": "Błąd", "ERROR": "BŁĄD", "Error accessing directory": "Błąd dostępu do katalogu", @@ -856,6 +871,7 @@ "Failed to save connections": "Nie udało się zapisać połączeń", "Failed to save conversation": "Nie udało się zapisać rozmowy", "Failed to save models configuration": "Nie udało się zapisać konfiguracji modeli", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "Nie udało się zaktualizować ustawień", @@ -871,6 +887,7 @@ "Feedback History": "Historia opinii", "Feel free to add specific details": "Możesz dodać szczegóły", "Female": "Kobieta", + "Fetch URL Content Length Limit": "", "File": "Plik", "File added successfully.": "Plik dodany pomyślnie.", "File attached to chat": "", @@ -925,6 +942,7 @@ "Format Lines": "Formatuj linie", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "Formatuj linie wyjścia (np. wykrywanie matematyki inline). Domyślnie Fałsz.", "Formatting may be inconsistent from source.": "Formatowanie może różnić się od źródła.", + "Forward": "", "Forwards system user OAuth access token to authenticate": "Przekazuje token dostępu OAuth użytkownika systemowego", "Forwards system user session credentials to authenticate": "Przekazuje poświadczenia sesji użytkownika systemowego", "Full Context Mode": "Tryb pełnego kontekstu", @@ -1012,6 +1030,7 @@ "ID": "ID", "ID cannot contain \":\" or \"|\" characters": "ID nie może zawierać \":\" ani \"|\"", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "Zezwól na formularze w iframe", "iframe Sandbox Allow Same Origin": "Zezwól na 'Same Origin' w iframe", "Ignite curiosity": "Rozpal ciekawość", @@ -1182,6 +1201,7 @@ "Max Speakers": "Maks. mówców", "Max Upload Count": "Maks. liczba plików", "Max Upload Size": "Maks. rozmiar pliku", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "Maksymalna liczba plików dozwolona w jednym folderze.", "Maximum number of files per folder is {{max}}.": "Maksymalna liczba plików w folderze wynosi {{max}}.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maksymalnie 3 modele mogą być pobierane jednocześnie. Spróbuj ponownie później.", @@ -1213,6 +1233,7 @@ "Microsoft OneDrive": "Microsoft OneDrive", "Microsoft OneDrive (personal)": "Microsoft OneDrive (osobisty)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (praca/szkoła)", + "min": "", "MinerU": "MinerU", "MinerU API Key required for Cloud API mode.": "Klucz API MinerU wymagany dla trybu Cloud API.", "Mistral OCR": "Mistral OCR", @@ -1318,6 +1339,7 @@ "No kernel": "", "No knowledge bases found.": "Nie znaleziono baz wiedzy.", "No knowledge found": "Nie znaleziono wiedzy", + "No limit": "", "No memories to clear": "Brak danych w pamięci do wyczyszczenia", "No model IDs": "Brak ID modeli", "No models available": "", @@ -1390,6 +1412,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Ups! Używasz nieobsługiwanej metody (tylko frontend). Uruchom WebUI z backendu.", "Open file": "Otwórz plik", "Open in full screen": "Pełny ekran", + "Open in new tab": "", "Open link": "Otwórz link", "Open modal to configure connection": "Otwórz okno konfiguracji połączenia", "Open Modal To Manage Floating Quick Actions": "Otwórz okno zarządzania szybkimi akcjami", @@ -1450,6 +1473,7 @@ "Perplexity Model": "Model Perplexity", "Perplexity Search API URL": "URL API Perplexity Search", "Perplexity Search Context Usage": "Użycie kontekstu Perplexity Search", + "Persistent": "", "Personalization": "Personalizacja", "Pin": "Przypnij", "Pinned": "Przypięte", @@ -1486,6 +1510,7 @@ "Please select a valid JSON file": "Wybierz poprawny plik JSON", "Please select at least one user for Direct Message channel.": "Wybierz co najmniej jednego użytkownika do czatu prywatnego.", "Please wait until all files are uploaded.": "Poczekaj na przesłanie wszystkich plików.", + "Policy ID": "", "Port": "Port", "Ports": "", "Positive attitude": "Pozytywne nastawienie", @@ -1565,6 +1590,7 @@ "Remove image": "Usuń obraz", "Remove Model": "Usuń model", "Rename": "Zmień nazwę", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "Zmień kolejność modeli", "Reply": "Odpowiedz", @@ -1632,6 +1658,7 @@ "Search Groups": "", "Search In Models": "Szukaj w modelach", "Search Knowledge": "Przeszukaj bazę wiedzy", + "Search Memories": "", "Search Models": "Szukaj modeli", "Search Notes": "Szukaj notatek", "Search options": "Opcje wyszukiwania", @@ -1673,6 +1700,7 @@ "Select a theme": "Wybierz motyw", "Select a tool": "Wybierz narzędzie", "Select a voice": "Wybierz głos", + "Select All": "", "Select an auth method": "Wybierz metodę autoryzacji", "Select an embedding model engine": "Wybierz silnik modelu embeddingów", "Select an engine": "Wybierz silnik", @@ -1701,6 +1729,7 @@ "Serper API Key": "Klucz API Serper", "Serply API Key": "Klucz API Serply", "Serpstack API Key": "Klucz API Serpstack", + "Server connection failed": "", "Server connection verified": "Połączenie z serwerem zweryfikowane", "Session": "Sesja", "Set as default": "Ustaw jako domyślny", @@ -1802,6 +1831,7 @@ "Stop Download": "Zatrzymaj pobieranie", "Stop Generating": "Przerwij generowanie", "Stop Sequence": "Sekwencja stop", + "Storage": "", "Stream Chat Response": "Strumieniuj odpowiedź czatu", "Stream Delta Chunk Size": "Chunk Size strumienia (Delta)", "Streamable HTTP": "Streamable HTTP", diff --git a/src/lib/i18n/locales/pt-BR/translation.json b/src/lib/i18n/locales/pt-BR/translation.json index c29dc729ad..b76f0624de 100644 --- a/src/lib/i18n/locales/pt-BR/translation.json +++ b/src/lib/i18n/locales/pt-BR/translation.json @@ -17,6 +17,9 @@ "{{COUNT}} members": "{{COUNT}} membros", "{{COUNT}} Replies": "{{COUNT}} Respostas", "{{COUNT}} Rows": "{{COUNT}} Linhas", + "{{count}} selected_one": "", + "{{count}} selected_many": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "{{COUNT}} Origens", "{{COUNT}} words": "{{COUNT}} palavras", "{{COUNT}}d_time_ago": "{{COUNT}}d atrás", @@ -127,6 +130,7 @@ "Allow File Upload": "Permitir Envio de arquivos", "Allow Multiple Models in Chat": "Permitir Vários Modelos no Chat", "Allow non-local voices": "Permitir vozes não locais", + "Allow public write access": "", "Allow Rate Response": "Permitir Avaliar Resposta", "Allow Regenerate Response": "Permitir Regenerar Resposta", "Allow Sharing With Users": "Permitir Compartilhamento com Usuários", @@ -181,6 +185,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "Tem certeza de que deseja excluir \"{{NAME}}\"?", "Are you sure you want to delete all chats? This action cannot be undone.": "Tem certeza de que deseja excluir todas as conversas? Esta ação não pode ser desfeita.", "Are you sure you want to delete this channel?": "Tem certeza de que deseja excluir este canal?", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "Tem certeza de que deseja excluir esta mensagem?", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "Tem certeza de que deseja excluir esta versão? As versões filhas serão vinculadas novamente à versão pai.", "Are you sure you want to delete this?": "Tem certeza de que deseja excluir isto?", @@ -378,6 +384,7 @@ "Configure": "Configurar", "Confirm": "Confirmar", "Confirm Password": "Confirmar Senha", + "Confirm Prompt from Embed": "", "Confirm your action": "Confirme sua ação", "Confirm your new password": "Confirme sua nova senha", "Confirm Your Password": "Confirme sua senha", @@ -386,6 +393,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "Conecte-se a instâncias do Open Terminal. Todos os usuários terão acesso à navegação de arquivos e ferramentas de terminal por meio desses servidores.", "Connect to your own OpenAI compatible API endpoints.": "Conecte-se aos seus próprios endpoints de API compatíveis com OpenAI.", "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}})": "", "Connection failed": "Falha na conexão", "Connection successful": "Conexão bem-sucedida", "Connection Type": "Tipo de conexão", @@ -426,6 +434,7 @@ "Copying to clipboard was successful!": "Cópia para a área de transferência bem-sucedida!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "O CORS deve ser configurado corretamente pelo provedor para permitir solicitações do Open WebUI.", "Could not read file.": "Não foi possível ler o arquivo.", + "CPU": "", "Create": "Criar", "Create a knowledge base": "Criar uma Base de Conhecimento", "Create a model": "Criar um Modelo", @@ -497,6 +506,7 @@ "Delete File": "Excluir arquivo", "Delete folder?": "Excluir pasta?", "Delete function?": "Excluir função?", + "Delete Memory?": "", "Delete Message": "Excluir mensagem", "Delete message?": "Excluir mensagem?", "Delete Model": "Excluir modelo", @@ -510,6 +520,7 @@ "Deleted": "Excluído", "Deleted {{deleteModelTag}}": "Excluído {{deleteModelTag}}", "Deleted {{name}}": "Excluído {{name}}", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "Usuário Excluído", "Deployment names are required for Azure OpenAI": "Nomes de implantação são necessários para o Azure OpenAI", "Desc": "Decrescente", @@ -518,6 +529,7 @@ "Describe what changed...": "Descreva o que mudou...", "Describe your knowledge base and objectives": "Descreva sua base de conhecimento e objetivos", "Description": "Descrição", + "Deselect": "", "Detect Artifacts Automatically": "Detectar artefatos automaticamente", "Dictate": "Ditar", "Didn't fully follow instructions": "Não seguiu completamente as instruções", @@ -780,6 +792,8 @@ "Enter Your Username": "Digite seu usuário", "Enter your webhook URL": "Insira a URL do seu webhook", "Entra ID": "ID Entra", + "Environment Variables": "", + "Ephemeral": "", "Error": "Erro", "ERROR": "ERRO", "Error accessing directory": "Erro ao acessar o diretório", @@ -856,6 +870,7 @@ "Failed to save connections": "Falha ao salvar conexões", "Failed to save conversation": "Falha ao salvar a conversa", "Failed to save models configuration": "Falha ao salvar a configuração dos modelos", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "Falha ao salvar servidores de terminal", "Failed to unshare chat.": "Falha ao cancelar o compartilhamento da conversa.", "Failed to update settings": "Falha ao atualizar as configurações", @@ -871,6 +886,7 @@ "Feedback History": "Histórico de comentários", "Feel free to add specific details": "Sinta-se à vontade para adicionar detalhes específicos", "Female": "Feminino", + "Fetch URL Content Length Limit": "", "File": "Arquivo", "File added successfully.": "Arquivo adicionado com sucesso.", "File attached to chat": "Arquivo anexado ao chat", @@ -925,6 +941,7 @@ "Format Lines": "Formatar linhas", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "Formata as linhas na saída. O padrão é Falso. Se definido como Verdadeiro, as linhas serão formatadas para detectar matemática e estilos embutidos.", "Formatting may be inconsistent from source.": "A formatação pode ser inconsistente em relação à fonte.", + "Forward": "", "Forwards system user OAuth access token to authenticate": "Encaminha o token de acesso OAuth do usuário do sistema para autenticação", "Forwards system user session credentials to authenticate": "Encaminha as credenciais da sessão do usuário do sistema para autenticação", "Full Context Mode": "Modo de contexto completo", @@ -1012,6 +1029,7 @@ "ID": "ID", "ID cannot contain \":\" or \"|\" characters": "O ID não pode conter caracteres \":\" ou \"|\"", "ID copied to clipboard": "ID copiado para a área de transferência", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "Permitir formulários no sandbox do iframe", "iframe Sandbox Allow Same Origin": "Permitir mesma origem no sandbox do iframe", "Ignite curiosity": "Desperte a curiosidade", @@ -1182,6 +1200,7 @@ "Max Speakers": "Máximo de locutores", "Max Upload Count": "Quantidade máxima de anexos", "Max Upload Size": "Tamanho máximo do arquivo", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "Número máximo de arquivos permitidos por pasta.", "Maximum number of files per folder is {{max}}.": "O número máximo de arquivos por pasta é {{max}}.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Máximo de 3 modelos podem ser baixados simultaneamente. Por favor, tente novamente mais tarde.", @@ -1213,6 +1232,7 @@ "Microsoft OneDrive": "Microsoft OneDrive", "Microsoft OneDrive (personal)": "Microsoft OneDrive (pessoal)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (trabalho/escola)", + "min": "", "MinerU": "MinerU", "MinerU API Key required for Cloud API mode.": "Chave de API MinerU necessária para o modo Cloud API.", "Mistral OCR": "Mistral OCR", @@ -1318,6 +1338,7 @@ "No kernel": "Sem kernel", "No knowledge bases found.": "Nenhuma base de conhecimento encontrada.", "No knowledge found": "Nenhum conhecimento encontrado", + "No limit": "", "No memories to clear": "Nenhuma memória para limpar", "No model IDs": "Nenhum ID de modelo", "No models available": "Nenhum modelo disponível", @@ -1390,6 +1411,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Ops! Você está usando um método não suportado (somente frontend). Por favor, sirva a WebUI a partir do backend.", "Open file": "Abrir arquivo", "Open in full screen": "Abrir em tela cheia", + "Open in new tab": "", "Open link": "Abrir link", "Open modal to configure connection": "Abra o modal para configurar a conexão", "Open Modal To Manage Floating Quick Actions": "Abra o Modal para gerenciar ações rápidas flutuantes", @@ -1450,6 +1472,7 @@ "Perplexity Model": "Modelo Perplexity", "Perplexity Search API URL": "URL da API de pesquisa Perplexity", "Perplexity Search Context Usage": "Uso do contexto de pesquisa do Perplexity", + "Persistent": "", "Personalization": "Personalização", "Pin": "Fixar", "Pinned": "Fixado", @@ -1486,6 +1509,7 @@ "Please select a valid JSON file": "Selecione um arquivo JSON válido", "Please select at least one user for Direct Message channel.": "Por favor, selecione pelo menos um usuário para o canal de Mensagens Diretas.", "Please wait until all files are uploaded.": "Aguarde até que todos os arquivos sejam enviados.", + "Policy ID": "", "Port": "Porta", "Ports": "Portas", "Positive attitude": "Atitude positiva", @@ -1565,6 +1589,7 @@ "Remove image": "Remover imagem", "Remove Model": "Remover Modelo", "Rename": "Renomear", + "Renamed to {{name}}": "", "Render Markdown in Previews": "Renderizar Markdown nas Pré-visualizações", "Reorder Models": "Reordenar modelos", "Reply": "Responder", @@ -1631,6 +1656,7 @@ "Search Groups": "Pesquisar Grupos", "Search In Models": "Pesquisar em modelos", "Search Knowledge": "Pesquisar Conhecimento", + "Search Memories": "", "Search Models": "Pesquisar Modelos", "Search Notes": "Pesquisar Notas", "Search options": "Opções de pesquisa", @@ -1672,6 +1698,7 @@ "Select a theme": "Selecione um tema", "Select a tool": "Selecione uma ferramenta", "Select a voice": "Selecione uma voz", + "Select All": "", "Select an auth method": "Selecione um método de autenticação", "Select an embedding model engine": "Selecione um mecanismo de modelo de embedding", "Select an engine": "Selecione um motor", @@ -1700,6 +1727,7 @@ "Serper API Key": "Chave da API Serper", "Serply API Key": "Chave da API Serply", "Serpstack API Key": "Chave da API Serpstack", + "Server connection failed": "", "Server connection verified": "Conexão com o servidor verificada", "Session": "Sessão", "Set as default": "Definir como padrão", @@ -1801,6 +1829,7 @@ "Stop Download": "Parar download", "Stop Generating": "Parar de Gerar", "Stop Sequence": "Sequência de Parada", + "Storage": "", "Stream Chat Response": "Stream Resposta do Chat", "Stream Delta Chunk Size": "Tamanho do bloco delta do stream", "Streamable HTTP": "HTTP com streaming", diff --git a/src/lib/i18n/locales/pt-PT/translation.json b/src/lib/i18n/locales/pt-PT/translation.json index f47ffdadac..9962b7ef19 100644 --- a/src/lib/i18n/locales/pt-PT/translation.json +++ b/src/lib/i18n/locales/pt-PT/translation.json @@ -17,6 +17,9 @@ "{{COUNT}} members": "{{COUNT}} membros", "{{COUNT}} Replies": "{{COUNT}} Respostas", "{{COUNT}} Rows": "{{COUNT}} Linhas", + "{{count}} selected_one": "", + "{{count}} selected_many": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "{{COUNT}} Fontes", "{{COUNT}} words": "{{COUNT}} palavras", "{{COUNT}}d_time_ago": "há {{COUNT}} dias", @@ -127,6 +130,7 @@ "Allow File Upload": "Permitir Upload de Ficheiros", "Allow Multiple Models in Chat": "Permitir Múltiplos Modelos na Conversa", "Allow non-local voices": "Permitir vozes não locais", + "Allow public write access": "", "Allow Rate Response": "Permitir Avaliação de Resposta", "Allow Regenerate Response": "Permitir Regeneração de Resposta", "Allow Sharing With Users": "Permitir Partilha com Utilizadores", @@ -181,6 +185,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "Tem a certeza de que deseja eliminar \"{{NAME}}\"?", "Are you sure you want to delete all chats? This action cannot be undone.": "Tem a certeza de que deseja eliminar todas as conversas? Esta ação não pode ser desfeita.", "Are you sure you want to delete this channel?": "Tem a certeza de que deseja eliminar este canal?", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "Tem a certeza de que deseja eliminar esta mensagem?", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "Tem a certeza de que deseja eliminar esta versão? As versões filhas serão relinkadas ao pai desta versão.", "Are you sure you want to delete this?": "Tem a certeza de que deseja eliminar isto?", @@ -378,6 +384,7 @@ "Configure": "Configurar", "Confirm": "Confirmar", "Confirm Password": "Confirmar Senha", + "Confirm Prompt from Embed": "", "Confirm your action": "Confirme sua ação", "Confirm your new password": "Confirme sua a nova palavra-passe", "Confirm Your Password": "Confirme a sua palavra-passe", @@ -386,6 +393,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "Ligar às instançias do Open Terminal. Todos os utilizadores terão acesso à pesquisa de ficheiros e ferramentas de terminais pelos servidores.", "Connect to your own OpenAI compatible API endpoints.": "Ligar ao seu próprio endpoint compatível com a OpenAI.", "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 successful": "Ligação bem sucedida", "Connection Type": "Tipo de ligação", @@ -426,6 +434,7 @@ "Copying to clipboard was successful!": "Cópia para a área de transferência bem-sucedida!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "O CORS tem de ser configurado corretamente pelo provedor, de forma a permitir pedidos da Open WebUI.", "Could not read file.": "Não conseguiu ler o ficheiro", + "CPU": "", "Create": "Criar", "Create a knowledge base": "Criar uma base de conhecimento", "Create a model": "Criar um modelo", @@ -497,6 +506,7 @@ "Delete File": "Apagar ficheiro", "Delete folder?": "Apagar pasta", "Delete function?": "Apagar função", + "Delete Memory?": "", "Delete Message": "Apagar Mensagem", "Delete message?": "Apagar mensagem?", "Delete Model": "Apagar Modelo", @@ -510,6 +520,7 @@ "Deleted": "Apagado", "Deleted {{deleteModelTag}}": "{{deleteModelTag}} apagado", "Deleted {{name}}": "Apagado {{name}}", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "Utilizador Apagado", "Deployment names are required for Azure OpenAI": "Nomes do Deployment são necessários para o Azure OpenAI", "Desc": "Desc", @@ -518,6 +529,7 @@ "Describe what changed...": "Descreve o que alterou...", "Describe your knowledge base and objectives": "Descreve a tua base de conhecimento e objetivos", "Description": "Descrição", + "Deselect": "", "Detect Artifacts Automatically": "Detatar Artefactos Automaticamente", "Dictate": "Ditar", "Didn't fully follow instructions": "Não seguiu instruções com precisão", @@ -780,6 +792,8 @@ "Enter Your Username": "Introduzir o seu Nome de Utilizador", "Enter your webhook URL": "Introduzir o URL do seu Webhook", "Entra ID": "", + "Environment Variables": "", + "Ephemeral": "", "Error": "Erro", "ERROR": "ERRO", "Error accessing directory": "Erro ao aceder ao diretório", @@ -856,6 +870,7 @@ "Failed to save connections": "Falha ao guardar ligações", "Failed to save conversation": "Falha ao guardar a conversa", "Failed to save models configuration": "Falha ao guardar configuração de modelos", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "Falha ao guardar servidores de terminais", "Failed to unshare chat.": "Falha ao parar partilha de conversa.", "Failed to update settings": "Falha ao atualizar as definições", @@ -871,6 +886,7 @@ "Feedback History": "História do Feedback", "Feel free to add specific details": "Sinta-se à vontade para adicionar detalhes específicos", "Female": "Feminino", + "Fetch URL Content Length Limit": "", "File": "Ficheiro", "File added successfully.": "Ficheiro adicionado com sucesso", "File attached to chat": "Ficheiro anexado à conversa", @@ -925,6 +941,7 @@ "Format Lines": "Formatar Linhas", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "Formatar as linhas na saída. Padrão é Falso. Se definido como Verdadeiro, as linhas serão formatadas para detectar matemática e estilos inline.", "Formatting may be inconsistent from source.": "A formatação pode ser inconsistente em relação à fonte.", + "Forward": "", "Forwards system user OAuth access token to authenticate": "Encaminha o token de acesso OAuth do utilizador do sistema para autenticação", "Forwards system user session credentials to authenticate": "Encaminha as credenciais de sessão do utilizador do sistema para autenticação", "Full Context Mode": "Modo de Contexto Completo", @@ -1012,6 +1029,7 @@ "ID": "ID", "ID cannot contain \":\" or \"|\" characters": "ID não pode conter os caracteres \":\" ou \"|\"", "ID copied to clipboard": "ID copiado para a área de transferência", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "iframe Sandbox Permitir Formulários", "iframe Sandbox Allow Same Origin": "iframe Sandbox Permitir Mesma Origem", "Ignite curiosity": "Despertar curiosidade", @@ -1182,6 +1200,7 @@ "Max Speakers": "Máximo de Oradores", "Max Upload Count": "Contagem Máxima de Envio", "Max Upload Size": "Tamanho Máximo de Envio", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "Número máximo de ficheiros permitidos por pasta.", "Maximum number of files per folder is {{max}}.": "O número máximo de ficheiros por pasta é {{max}}.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "O máximo de 3 modelos podem ser descarregados simultaneamente. Tente novamente mais tarde.", @@ -1213,6 +1232,7 @@ "Microsoft OneDrive": "Microsoft OneDrive", "Microsoft OneDrive (personal)": "Microsoft OneDrive (pessoal)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (trabalho/escola)", + "min": "", "MinerU": "MinerU", "MinerU API Key required for Cloud API mode.": "Chave API do MinerU necessária para o modo Cloud API.", "Mistral OCR": "Mistral OCR", @@ -1318,6 +1338,7 @@ "No kernel": "Nenhum kernel", "No knowledge bases found.": "Nenhuma base de conhecimento encontrada.", "No knowledge found": "Nenhum conhecimento encontrado", + "No limit": "", "No memories to clear": "Nenhuma memória para limpar", "No model IDs": "Nenhum ID de modelo", "No models available": "Nenhum modelo disponível", @@ -1390,6 +1411,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Epá! Está a utilizar um método não suportado (somente frontend). Por favor, sirva o WebUI a partir do backend.", "Open file": "Abrir arquivo", "Open in full screen": "Abrir em ecrã inteiro", + "Open in new tab": "", "Open link": "Abrir link", "Open modal to configure connection": "Abrir janela para configurar ligação", "Open Modal To Manage Floating Quick Actions": "Abrir", @@ -1450,6 +1472,7 @@ "Perplexity Model": "Modelo Perplexity", "Perplexity Search API URL": "URL da API de Pesquisa Perplexity", "Perplexity Search Context Usage": "Uso do Contexto de Pesquisa Perplexity", + "Persistent": "", "Personalization": "Personalização", "Pin": "Fixar", "Pinned": "Fixado", @@ -1486,6 +1509,7 @@ "Please select a valid JSON file": "Por favor, selecione um ficheiro JSON válido", "Please select at least one user for Direct Message channel.": "Por favor, selecione pelo menos um utilizador para o canal de Mensagem Direta.", "Please wait until all files are uploaded.": "Por favor, aguarde até que todos os ficheiros sejam carregados.", + "Policy ID": "", "Port": "Porta", "Ports": "Portas", "Positive attitude": "Atitude Positiva", @@ -1565,6 +1589,7 @@ "Remove image": "Remover imagem", "Remove Model": "Remover Modelo", "Rename": "Renomear", + "Renamed to {{name}}": "", "Render Markdown in Previews": "Renderizar Markdown em Pré-visualizações", "Reorder Models": "Reordenar Modelos", "Reply": "Responder", @@ -1631,6 +1656,7 @@ "Search Groups": "Pesquisar Grupos", "Search In Models": "Pesquisar em Modelos", "Search Knowledge": "Pesquisar Conhecimento", + "Search Memories": "", "Search Models": "Modelos de pesquisa", "Search Notes": "Pesquisar Notas", "Search options": "Opções de Pesquisa", @@ -1672,6 +1698,7 @@ "Select a theme": "Selecione um tema", "Select a tool": "Selecione uma ferramenta", "Select a voice": "Selecione uma voz", + "Select All": "", "Select an auth method": "Selecione um método de autenticação", "Select an embedding model engine": "Selecione um motor de modelo de incorporação", "Select an engine": "Selecione um motor", @@ -1700,6 +1727,7 @@ "Serper API Key": "Chave API Serper", "Serply API Key": "Chave API Serply", "Serpstack API Key": "Chave da API Serpstack", + "Server connection failed": "", "Server connection verified": "Ligação com o servidor verificada", "Session": "Sessão", "Set as default": "Definir como padrão", @@ -1801,6 +1829,7 @@ "Stop Download": "Parar Download", "Stop Generating": "Parar Geração", "Stop Sequence": "Sequência de Paragem", + "Storage": "", "Stream Chat Response": "Transmitir Resposta do Chat", "Stream Delta Chunk Size": "Transmitir Tamanho dos Fragmentos Delta", "Streamable HTTP": "HTTP Transmissível", diff --git a/src/lib/i18n/locales/ro-RO/translation.json b/src/lib/i18n/locales/ro-RO/translation.json index 89e6ce06e0..60c53536ea 100644 --- a/src/lib/i18n/locales/ro-RO/translation.json +++ b/src/lib/i18n/locales/ro-RO/translation.json @@ -17,6 +17,9 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "", "{{COUNT}} Rows": "", + "{{count}} selected_one": "", + "{{count}} selected_few": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", "{{COUNT}}d_time_ago": "", @@ -127,6 +130,7 @@ "Allow File Upload": "Permite încărcarea fișierelor", "Allow Multiple Models in Chat": "Permite modele multiple în chat", "Allow non-local voices": "Permite voci non-locale", + "Allow public write access": "", "Allow Rate Response": "", "Allow Regenerate Response": "", "Allow Sharing With Users": "", @@ -181,6 +185,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "Ești sigur că vrei să ștergi acest canal?", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "Ești sigur că vrei să ștergi acest mesaj?", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +384,7 @@ "Configure": "Configurează", "Confirm": "Confirmă", "Confirm Password": "Confirmă Parola", + "Confirm Prompt from Embed": "", "Confirm your action": "Confirmă acțiunea ta", "Confirm your new password": "", "Confirm Your Password": "", @@ -386,6 +393,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAPI compatible external tool servers.": "", + "Connected ({{type}})": "", "Connection failed": "Conexiune eșuată", "Connection successful": "Conexiune reușită", "Connection Type": "Tip conexiune", @@ -426,6 +434,7 @@ "Copying to clipboard was successful!": "Copierea în clipboard a fost realizată cu succes!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "", "Could not read file.": "", + "CPU": "", "Create": "Creează", "Create a knowledge base": "", "Create a model": "Creează un model", @@ -497,6 +506,7 @@ "Delete File": "", "Delete folder?": "Ștergeți folderul?", "Delete function?": "Șterge funcția?", + "Delete Memory?": "", "Delete Message": "Șterge mesajul", "Delete message?": "Ștergeți mesajul?", "Delete Model": "", @@ -510,6 +520,7 @@ "Deleted": "", "Deleted {{deleteModelTag}}": "{{deleteModelTag}} șters", "Deleted {{name}}": "{{name}} șters", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "Utilizator șters", "Deployment names are required for Azure OpenAI": "", "Desc": "", @@ -518,6 +529,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "", "Description": "Descriere", + "Deselect": "", "Detect Artifacts Automatically": "", "Dictate": "", "Didn't fully follow instructions": "Nu a urmat complet instrucțiunile", @@ -780,6 +792,8 @@ "Enter Your Username": "", "Enter your webhook URL": "", "Entra ID": "", + "Environment Variables": "", + "Ephemeral": "", "Error": "Eroare", "ERROR": "EROARE", "Error accessing directory": "", @@ -856,6 +870,7 @@ "Failed to save connections": "", "Failed to save conversation": "Nu s-a putut salva conversația", "Failed to save models configuration": "", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "Actualizarea setărilor a eșuat", @@ -871,6 +886,7 @@ "Feedback History": "Istoricul feedback-ului", "Feel free to add specific details": "Adăugați detalii specifice fără nicio ezitare", "Female": "", + "Fetch URL Content Length Limit": "", "File": "Fișier", "File added successfully.": "Fișierul a fost adăugat cu succes.", "File attached to chat": "", @@ -925,6 +941,7 @@ "Format Lines": "", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "", "Formatting may be inconsistent from source.": "", + "Forward": "", "Forwards system user OAuth access token to authenticate": "", "Forwards system user session credentials to authenticate": "", "Full Context Mode": "", @@ -1012,6 +1029,7 @@ "ID": "ID", "ID cannot contain \":\" or \"|\" characters": "", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "", "iframe Sandbox Allow Same Origin": "", "Ignite curiosity": "", @@ -1182,6 +1200,7 @@ "Max Speakers": "", "Max Upload Count": "Număr maxim de încărcări", "Max Upload Size": "Dimensiune Maximă de Încărcare", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maxim 3 modele pot fi descărcate simultan. Vă rugăm să încercați din nou mai târziu.", @@ -1213,6 +1232,7 @@ "Microsoft OneDrive": "", "Microsoft OneDrive (personal)": "", "Microsoft OneDrive (work/school)": "", + "min": "", "MinerU": "", "MinerU API Key required for Cloud API mode.": "", "Mistral OCR": "", @@ -1318,6 +1338,7 @@ "No kernel": "", "No knowledge bases found.": "", "No knowledge found": "Nu au fost găsite informații.", + "No limit": "", "No memories to clear": "", "No model IDs": "", "No models available": "", @@ -1390,6 +1411,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Oops! Utilizați o metodă nesuportată (doar frontend). Vă rugăm să serviți WebUI din backend.", "Open file": "Deschide fișierul", "Open in full screen": "Deschide în ecran complet", + "Open in new tab": "", "Open link": "", "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", @@ -1450,6 +1472,7 @@ "Perplexity Model": "", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "", + "Persistent": "", "Personalization": "Personalizare", "Pin": "Fixează", "Pinned": "Fixat", @@ -1486,6 +1509,7 @@ "Please select a valid JSON file": "", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "", + "Policy ID": "", "Port": "", "Ports": "", "Positive attitude": "Atitudine pozitivă", @@ -1565,6 +1589,7 @@ "Remove image": "", "Remove Model": "Înlătură Modelul", "Rename": "Redenumește", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "", "Reply": "", @@ -1631,6 +1656,7 @@ "Search Groups": "", "Search In Models": "", "Search Knowledge": "Căutare Cunoștințe", + "Search Memories": "", "Search Models": "Caută Modele", "Search Notes": "", "Search options": "", @@ -1672,6 +1698,7 @@ "Select a theme": "", "Select a tool": "Selectează un instrument", "Select a voice": "", + "Select All": "", "Select an auth method": "", "Select an embedding model engine": "", "Select an engine": "", @@ -1700,6 +1727,7 @@ "Serper API Key": "Cheie API Serper", "Serply API Key": "Cheie API Serply", "Serpstack API Key": "Cheie API Serpstack", + "Server connection failed": "", "Server connection verified": "Conexiunea la server a fost verificată", "Session": "", "Set as default": "Setează ca implicit", @@ -1801,6 +1829,7 @@ "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Oprește Secvența", + "Storage": "", "Stream Chat Response": "Răspuns Stream Chat", "Stream Delta Chunk Size": "", "Streamable HTTP": "", diff --git a/src/lib/i18n/locales/ru-RU/translation.json b/src/lib/i18n/locales/ru-RU/translation.json index 5b9872d07e..43aaf47b2f 100644 --- a/src/lib/i18n/locales/ru-RU/translation.json +++ b/src/lib/i18n/locales/ru-RU/translation.json @@ -17,6 +17,10 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "{{COUNT}} Ответов", "{{COUNT}} Rows": "{{COUNT}} Строк", + "{{count}} selected_one": "", + "{{count}} selected_few": "", + "{{count}} selected_many": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "{{COUNT}} Источников", "{{COUNT}} words": "{{COUNT}} слов", "{{COUNT}}d_time_ago": "", @@ -127,6 +131,7 @@ "Allow File Upload": "Разрешить загрузку файлов", "Allow Multiple Models in Chat": "Разрешить использование нескольких моделей в чате", "Allow non-local voices": "Разрешить не локальные голоса", + "Allow public write access": "", "Allow Rate Response": "Разрешить оценку ответа", "Allow Regenerate Response": "Разрешить повторную генерацию ответа", "Allow Sharing With Users": "", @@ -181,6 +186,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "Вы уверены, что хотите удалить \"{{NAME}}\"?", "Are you sure you want to delete all chats? This action cannot be undone.": "Вы уверены, что хотите удалить все чаты? Это действие невозможно отменить.", "Are you sure you want to delete this channel?": "Вы уверены, что хотите удалить этот канал?", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "Вы уверены, что хотите удалить это сообщение?", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +385,7 @@ "Configure": "Настроить", "Confirm": "Подтвердить", "Confirm Password": "Подтвердите пароль", + "Confirm Prompt from Embed": "", "Confirm your action": "Подтвердите свое действие", "Confirm your new password": "Подтвердите свой новый пароль", "Confirm Your Password": "Подтвердите свой пароль", @@ -386,6 +394,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "Подключитесь к своим собственным энд-поинтам API, совместимым с OpenAI.", "Connect to your own OpenAPI compatible external tool servers.": "Подключитесь к вашим собственным внешним инструментальным серверам, совместимым с OpenAPI.", + "Connected ({{type}})": "", "Connection failed": "Подключение не удалось", "Connection successful": "Успешное подключение", "Connection Type": "Тип подключения", @@ -426,6 +435,7 @@ "Copying to clipboard was successful!": "Копирование в буфер обмена прошло успешно!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "CORS должен быть должным образом настроен провайдером, чтобы разрешать запросы из Open WebUI.", "Could not read file.": "", + "CPU": "", "Create": "Создать", "Create a knowledge base": "Создайте базу знаний", "Create a model": "Создание модели", @@ -497,6 +507,7 @@ "Delete File": "Удалить файл", "Delete folder?": "Удалить папку?", "Delete function?": "Удалить функцию?", + "Delete Memory?": "", "Delete Message": "Удалить сообщение", "Delete message?": "Удалить сообщение?", "Delete Model": "Удалить модель", @@ -510,6 +521,7 @@ "Deleted": "Удалено", "Deleted {{deleteModelTag}}": "Удалено {{deleteModelTag}}", "Deleted {{name}}": "Удалено {{name}}", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "Удалённый пользователь", "Deployment names are required for Azure OpenAI": "Для Azure OpenAI требуются названия развертываний", "Desc": "Описание", @@ -518,6 +530,7 @@ "Describe what changed...": "Опишите изменения...", "Describe your knowledge base and objectives": "Опишите свою базу знаний и цели", "Description": "Описание", + "Deselect": "", "Detect Artifacts Automatically": "Автоматическое обнаружение артефактов", "Dictate": "Диктовать", "Didn't fully follow instructions": "Не полностью следует инструкциям", @@ -780,6 +793,8 @@ "Enter Your Username": "Введите свое имя пользователя", "Enter your webhook URL": "Введите URL вашего веб-хука", "Entra ID": "Entra ID", + "Environment Variables": "", + "Ephemeral": "", "Error": "Ошибка", "ERROR": "ОШИБКА", "Error accessing directory": "Ошибка доступа к директории", @@ -856,6 +871,7 @@ "Failed to save connections": "Не удалось сохранить подключения", "Failed to save conversation": "Не удалось сохранить беседу", "Failed to save models configuration": "Не удалось сохранить конфигурацию моделей", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "Не удалось обновить настройки", @@ -871,6 +887,7 @@ "Feedback History": "История отзывов", "Feel free to add specific details": "Не стесняйтесь добавлять конкретные детали", "Female": "Женский", + "Fetch URL Content Length Limit": "", "File": "Файл", "File added successfully.": "Файл успешно добавлен.", "File attached to chat": "", @@ -925,6 +942,7 @@ "Format Lines": "Форматировать строки", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "Форматировать строки в выводе. По умолчанию False. Если установлено в True, строки будут отформатированы для обнаружения встроенной математики и стилей.", "Formatting may be inconsistent from source.": "Форматирование может быть несогласованным с источником.", + "Forward": "", "Forwards system user OAuth access token to authenticate": "Передаёт токен доступа OAuth системного пользователя для аутентификации", "Forwards system user session credentials to authenticate": "Перенаправляет учетные данные сеанса системного пользователя для проверки подлинности", "Full Context Mode": "Режим полного контекста", @@ -1012,6 +1030,7 @@ "ID": "ID", "ID cannot contain \":\" or \"|\" characters": "", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "Позволять формы для iframe Sandbox", "iframe Sandbox Allow Same Origin": "Позволять одно и то же происхождение для iframe Sandbox", "Ignite curiosity": "Разожгите любопытство", @@ -1182,6 +1201,7 @@ "Max Speakers": "Максимальное количество динамиков", "Max Upload Count": "Максимальное количество загрузок", "Max Upload Size": "Максимальный размер загрузок", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Максимальное количество моделей для загрузки одновременно - 3. Пожалуйста, попробуйте позже.", @@ -1213,6 +1233,7 @@ "Microsoft OneDrive": "Microsoft OneDrive", "Microsoft OneDrive (personal)": "Microsoft OneDrive (личный)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (работа/школа)", + "min": "", "MinerU": "", "MinerU API Key required for Cloud API mode.": "", "Mistral OCR": "Mistral OCR", @@ -1318,6 +1339,7 @@ "No kernel": "", "No knowledge bases found.": "", "No knowledge found": "Знания не найдены", + "No limit": "", "No memories to clear": "Нет воспоминаний, которые нужно было бы очистить", "No model IDs": "Нет ID модели", "No models available": "", @@ -1390,6 +1412,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Упс! Вы используете неподдерживаемый метод (только фронтенд). Пожалуйста, обслуживайте веб-интерфейс из бэкенда.", "Open file": "Открыть файл", "Open in full screen": "Открыть на весь экран", + "Open in new tab": "", "Open link": "Открыть ссылку", "Open modal to configure connection": "Открыть окно настроек подключения", "Open Modal To Manage Floating Quick Actions": "Открыть модальное окно для управления плавающими быстрыми действиями", @@ -1450,6 +1473,7 @@ "Perplexity Model": "Модель Perplexity", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "Использование контекста поиска Perplexity", + "Persistent": "", "Personalization": "Персонализация", "Pin": "Закрепить", "Pinned": "Закреплено", @@ -1486,6 +1510,7 @@ "Please select a valid JSON file": "", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "Пожалуйста, подождите, пока все файлы будут загружены.", + "Policy ID": "", "Port": "Порт", "Ports": "", "Positive attitude": "Позитивный настрой", @@ -1565,6 +1590,7 @@ "Remove image": "Удалить изображение", "Remove Model": "Удалить модель", "Rename": "Переименовать", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "Изменение порядка моделей", "Reply": "", @@ -1632,6 +1658,7 @@ "Search Groups": "", "Search In Models": "Поиск в моделях", "Search Knowledge": "Поиск знания", + "Search Memories": "", "Search Models": "Поиск моделей", "Search Notes": "Поиск заметок", "Search options": "Параметры поиска", @@ -1673,6 +1700,7 @@ "Select a theme": "Выберите тему", "Select a tool": "Выберите инструмент", "Select a voice": "Выберите голос", + "Select All": "", "Select an auth method": "Выбрать метод аутентификации", "Select an embedding model engine": "Выберите движок для модели векторного представления", "Select an engine": "Выберите движок", @@ -1701,6 +1729,7 @@ "Serper API Key": "Ключ API Serper", "Serply API Key": "Ключ API Serply", "Serpstack API Key": "Ключ API Serpstack", + "Server connection failed": "", "Server connection verified": "Соединение с сервером проверено", "Session": "Сессия", "Set as default": "Установить по умолчанию", @@ -1802,6 +1831,7 @@ "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Последовательность останова", + "Storage": "", "Stream Chat Response": "Потоковый вывод ответа", "Stream Delta Chunk Size": "Размер чанка дельты потока", "Streamable HTTP": "", diff --git a/src/lib/i18n/locales/sk-SK/translation.json b/src/lib/i18n/locales/sk-SK/translation.json index b63dbdf47c..e3f831f310 100644 --- a/src/lib/i18n/locales/sk-SK/translation.json +++ b/src/lib/i18n/locales/sk-SK/translation.json @@ -17,6 +17,10 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "", "{{COUNT}} Rows": "", + "{{count}} selected_one": "", + "{{count}} selected_few": "", + "{{count}} selected_many": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", "{{COUNT}}d_time_ago": "", @@ -127,6 +131,7 @@ "Allow File Upload": "Povoliť nahrávanie súborov", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Povoliť ne-lokálne hlasy", + "Allow public write access": "", "Allow Rate Response": "", "Allow Regenerate Response": "", "Allow Sharing With Users": "", @@ -181,6 +186,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +385,7 @@ "Configure": "Konfigurovať", "Confirm": "Potvrdiť", "Confirm Password": "Potvrdenie hesla", + "Confirm Prompt from Embed": "", "Confirm your action": "Potvrďte svoju akciu", "Confirm your new password": "", "Confirm Your Password": "", @@ -386,6 +394,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAPI compatible external tool servers.": "", + "Connected ({{type}})": "", "Connection failed": "", "Connection successful": "", "Connection Type": "", @@ -426,6 +435,7 @@ "Copying to clipboard was successful!": "Kopírovanie do schránky bolo úspešné!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "", "Could not read file.": "", + "CPU": "", "Create": "Vytvoriť", "Create a knowledge base": "Vytvoriť znalostnú databázu", "Create a model": "Vytvoriť model", @@ -497,6 +507,7 @@ "Delete File": "", "Delete folder?": "Odstrániť priečinok?", "Delete function?": "Funkcia na odstránenie?", + "Delete Memory?": "", "Delete Message": "Odstrániť správu", "Delete message?": "Odstrániť správu?", "Delete Model": "Odstrániť model", @@ -510,6 +521,7 @@ "Deleted": "Odstránené", "Deleted {{deleteModelTag}}": "Odstránené {{deleteModelTag}}", "Deleted {{name}}": "Odstránené {{name}}", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "Odstránený užívateľ", "Deployment names are required for Azure OpenAI": "", "Desc": "", @@ -518,6 +530,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "Popíšte svoju databázu znalostí a ciele", "Description": "Popis", + "Deselect": "", "Detect Artifacts Automatically": "", "Dictate": "Diktovať", "Didn't fully follow instructions": "Nenasledovali ste presne všetky inštrukcie.", @@ -780,6 +793,8 @@ "Enter Your Username": "", "Enter your webhook URL": "", "Entra ID": "", + "Environment Variables": "", + "Ephemeral": "", "Error": "Chyba", "ERROR": "Chyba", "Error accessing directory": "", @@ -856,6 +871,7 @@ "Failed to save connections": "", "Failed to save conversation": "Nepodarilo sa uložiť konverzáciu", "Failed to save models configuration": "", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "Nepodarilo sa aktualizovať nastavenia", @@ -871,6 +887,7 @@ "Feedback History": "História spätnej väzby", "Feel free to add specific details": "Neváhajte pridať konkrétne detaily.", "Female": "", + "Fetch URL Content Length Limit": "", "File": "Súbor", "File added successfully.": "Súbor bol úspešne pridaný.", "File attached to chat": "", @@ -925,6 +942,7 @@ "Format Lines": "", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "", "Formatting may be inconsistent from source.": "", + "Forward": "", "Forwards system user OAuth access token to authenticate": "", "Forwards system user session credentials to authenticate": "", "Full Context Mode": "", @@ -1012,6 +1030,7 @@ "ID": "ID", "ID cannot contain \":\" or \"|\" characters": "", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "", "iframe Sandbox Allow Same Origin": "", "Ignite curiosity": "", @@ -1182,6 +1201,7 @@ "Max Speakers": "", "Max Upload Count": "Maximálny počet nahraní", "Max Upload Size": "Maximálna veľkosť nahrávania", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maximálne 3 modely môžu byť stiahnuté súčasne. Prosím skúste to znova neskôr.", @@ -1213,6 +1233,7 @@ "Microsoft OneDrive": "", "Microsoft OneDrive (personal)": "", "Microsoft OneDrive (work/school)": "", + "min": "", "MinerU": "", "MinerU API Key required for Cloud API mode.": "", "Mistral OCR": "", @@ -1318,6 +1339,7 @@ "No kernel": "", "No knowledge bases found.": "Neboli nájdené žiadne znalostné databázy.", "No knowledge found": "Neboli nájdené žiadne znalosti", + "No limit": "", "No memories to clear": "", "No model IDs": "", "No models available": "", @@ -1390,6 +1412,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Jejda! Používate nepodporovanú metódu (iba frontend). Prosím, spustite WebUI zo serverovej časti (backendu).", "Open file": "Otvoriť súbor", "Open in full screen": "Otvoriť na celú obrazovku", + "Open in new tab": "", "Open link": "", "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", @@ -1450,6 +1473,7 @@ "Perplexity Model": "", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "", + "Persistent": "", "Personalization": "Personalizácia", "Pin": "", "Pinned": "", @@ -1486,6 +1510,7 @@ "Please select a valid JSON file": "", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "", + "Policy ID": "", "Port": "", "Ports": "", "Positive attitude": "Pozitívny prístup", @@ -1565,6 +1590,7 @@ "Remove image": "", "Remove Model": "Odstrániť model", "Rename": "Premenovať", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "", "Reply": "", @@ -1632,6 +1658,7 @@ "Search Groups": "", "Search In Models": "", "Search Knowledge": "Vyhľadávanie znalostí", + "Search Memories": "", "Search Models": "Vyhľadávacie modely", "Search Notes": "", "Search options": "", @@ -1673,6 +1700,7 @@ "Select a theme": "", "Select a tool": "Vyberte nástroj", "Select a voice": "", + "Select All": "", "Select an auth method": "", "Select an embedding model engine": "", "Select an engine": "", @@ -1701,6 +1729,7 @@ "Serper API Key": "Kľúč API pre Serper", "Serply API Key": "Serply API kľúč", "Serpstack API Key": "Kľúč API pre Serpstack", + "Server connection failed": "", "Server connection verified": "Pripojenie k serveru overené", "Session": "", "Set as default": "Nastaviť ako predvolené", @@ -1802,6 +1831,7 @@ "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Sekvencia zastavenia", + "Storage": "", "Stream Chat Response": "Odozva chatu Stream", "Stream Delta Chunk Size": "", "Streamable HTTP": "", diff --git a/src/lib/i18n/locales/sr-RS/translation.json b/src/lib/i18n/locales/sr-RS/translation.json index ed38bc8da3..291588d4d8 100644 --- a/src/lib/i18n/locales/sr-RS/translation.json +++ b/src/lib/i18n/locales/sr-RS/translation.json @@ -17,6 +17,9 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "{{COUNT}} одговора", "{{COUNT}} Rows": "", + "{{count}} selected_one": "", + "{{count}} selected_few": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", "{{COUNT}}d_time_ago": "", @@ -127,6 +130,7 @@ "Allow File Upload": "Дозволи отпремање датотека", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Дозволи нелокалне гласове", + "Allow public write access": "", "Allow Rate Response": "", "Allow Regenerate Response": "", "Allow Sharing With Users": "", @@ -181,6 +185,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "Да ли сигурно желите обрисати овај канал?", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "Да ли сигурно желите обрисати ову поруку?", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +384,7 @@ "Configure": "Подеси", "Confirm": "Потврди", "Confirm Password": "Потврди лозинку", + "Confirm Prompt from Embed": "", "Confirm your action": "Потврди радњу", "Confirm your new password": "Потврди нову лозинку", "Confirm Your Password": "", @@ -386,6 +393,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAPI compatible external tool servers.": "", + "Connected ({{type}})": "", "Connection failed": "", "Connection successful": "", "Connection Type": "", @@ -426,6 +434,7 @@ "Copying to clipboard was successful!": "Успешно копирање у оставу!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "", "Could not read file.": "", + "CPU": "", "Create": "Направи", "Create a knowledge base": "Направи базу знања", "Create a model": "Креирање модела", @@ -497,6 +506,7 @@ "Delete File": "", "Delete folder?": "Обрисати фасциклу?", "Delete function?": "Обрисати функцију?", + "Delete Memory?": "", "Delete Message": "Обриши поруку", "Delete message?": "", "Delete Model": "", @@ -510,6 +520,7 @@ "Deleted": "", "Deleted {{deleteModelTag}}": "Обрисано {{deleteModelTag}}", "Deleted {{name}}": "Избрисано {{наме}}", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "Обрисани корисници", "Deployment names are required for Azure OpenAI": "", "Desc": "", @@ -518,6 +529,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "Опишите вашу базу знања и циљеве", "Description": "Опис", + "Deselect": "", "Detect Artifacts Automatically": "", "Dictate": "", "Didn't fully follow instructions": "Упутства нису праћена у потпуности", @@ -780,6 +792,8 @@ "Enter Your Username": "", "Enter your webhook URL": "", "Entra ID": "", + "Environment Variables": "", + "Ephemeral": "", "Error": "Грешка", "ERROR": "ГРЕШКА", "Error accessing directory": "", @@ -856,6 +870,7 @@ "Failed to save connections": "", "Failed to save conversation": "Неуспешно чување разговора", "Failed to save models configuration": "", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "", @@ -871,6 +886,7 @@ "Feedback History": "Историјат повратних података", "Feel free to add specific details": "Слободно додајте специфичне детаље", "Female": "", + "Fetch URL Content Length Limit": "", "File": "Датотека", "File added successfully.": "", "File attached to chat": "", @@ -925,6 +941,7 @@ "Format Lines": "", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "", "Formatting may be inconsistent from source.": "", + "Forward": "", "Forwards system user OAuth access token to authenticate": "", "Forwards system user session credentials to authenticate": "", "Full Context Mode": "", @@ -1012,6 +1029,7 @@ "ID": "ИБ", "ID cannot contain \":\" or \"|\" characters": "", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "", "iframe Sandbox Allow Same Origin": "", "Ignite curiosity": "Покрени знатижељу", @@ -1182,6 +1200,7 @@ "Max Speakers": "", "Max Upload Count": "", "Max Upload Size": "", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Највише 3 модела могу бити преузета истовремено. Покушајте поново касније.", @@ -1213,6 +1232,7 @@ "Microsoft OneDrive": "", "Microsoft OneDrive (personal)": "", "Microsoft OneDrive (work/school)": "", + "min": "", "MinerU": "", "MinerU API Key required for Cloud API mode.": "", "Mistral OCR": "", @@ -1318,6 +1338,7 @@ "No kernel": "", "No knowledge bases found.": "", "No knowledge found": "", + "No limit": "", "No memories to clear": "", "No model IDs": "", "No models available": "", @@ -1390,6 +1411,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Упс! Користите неподржани метод (само фронтенд). Молимо вас да покренете WebUI са бекенда.", "Open file": "", "Open in full screen": "", + "Open in new tab": "", "Open link": "", "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", @@ -1450,6 +1472,7 @@ "Perplexity Model": "", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "", + "Persistent": "", "Personalization": "Прилагођавање", "Pin": "Закачи", "Pinned": "Закачено", @@ -1486,6 +1509,7 @@ "Please select a valid JSON file": "", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "", + "Policy ID": "", "Port": "", "Ports": "", "Positive attitude": "Позитиван став", @@ -1565,6 +1589,7 @@ "Remove image": "", "Remove Model": "Уклони модел", "Rename": "Преименуј", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "", "Reply": "", @@ -1631,6 +1656,7 @@ "Search Groups": "", "Search In Models": "", "Search Knowledge": "Претражи знање", + "Search Memories": "", "Search Models": "Модели претраге", "Search Notes": "", "Search options": "Опције претраге", @@ -1672,6 +1698,7 @@ "Select a theme": "", "Select a tool": "Изабери алат", "Select a voice": "", + "Select All": "", "Select an auth method": "", "Select an embedding model engine": "", "Select an engine": "", @@ -1700,6 +1727,7 @@ "Serper API Key": "Серпер АПИ кључ", "Serply API Key": "", "Serpstack API Key": "Серпстацк АПИ кључ", + "Server connection failed": "", "Server connection verified": "Веза са сервером потврђена", "Session": "", "Set as default": "Подеси као подразумевано", @@ -1801,6 +1829,7 @@ "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Секвенца заустављања", + "Storage": "", "Stream Chat Response": "", "Stream Delta Chunk Size": "", "Streamable HTTP": "", diff --git a/src/lib/i18n/locales/sv-SE/translation.json b/src/lib/i18n/locales/sv-SE/translation.json index 86e715140b..6d16c765c1 100644 --- a/src/lib/i18n/locales/sv-SE/translation.json +++ b/src/lib/i18n/locales/sv-SE/translation.json @@ -17,6 +17,8 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "{{COUNT}} Svar", "{{COUNT}} Rows": "", + "{{count}} selected_one": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "{{COUNT}} källor", "{{COUNT}} words": "{{COUNT}} ord", "{{COUNT}}d_time_ago": "", @@ -127,6 +129,7 @@ "Allow File Upload": "Tillåt filuppladdning", "Allow Multiple Models in Chat": "Tillåt flera modeller i chatt", "Allow non-local voices": "Tillåt icke-lokala röster", + "Allow public write access": "", "Allow Rate Response": "Tillåt betygsättning av svar", "Allow Regenerate Response": "Tillåt återgenerering av svar", "Allow Sharing With Users": "", @@ -181,6 +184,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "Är du säker på att du vill radera denna kanal?", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "Är du säker på att du vill radera detta meddelande?", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +383,7 @@ "Configure": "Konfigurera", "Confirm": "Bekräfta", "Confirm Password": "Bekräfta lösenord", + "Confirm Prompt from Embed": "", "Confirm your action": "Bekräfta din åtgärd", "Confirm your new password": "Bekräfta ditt nya lösenord", "Confirm Your Password": "Bekräfta ditt lösenord", @@ -386,6 +392,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "Anslut till dina egna OpenAI-kompatibla API-endpoints.", "Connect to your own OpenAPI compatible external tool servers.": "Anslut till dina egna OpenAPI-kompatibla externa verktygsservrar.", + "Connected ({{type}})": "", "Connection failed": "Anslutning misslyckades", "Connection successful": "Anslutning lyckades", "Connection Type": "Anslutningstyp", @@ -426,6 +433,7 @@ "Copying to clipboard was successful!": "Kopiering till urklipp lyckades!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "CORS måste vara korrekt konfigurerad av leverantören för att tillåta förfrågningar från Open WebUI.", "Could not read file.": "", + "CPU": "", "Create": "Skapa", "Create a knowledge base": "Skapa en kunskapsbas", "Create a model": "Skapa en modell", @@ -497,6 +505,7 @@ "Delete File": "", "Delete folder?": "Radera mapp?", "Delete function?": "Radera funktion?", + "Delete Memory?": "", "Delete Message": "Radera meddelande", "Delete message?": "Radera meddelande?", "Delete Model": "Ta bort modell", @@ -510,6 +519,7 @@ "Deleted": "", "Deleted {{deleteModelTag}}": "Raderad {{deleteModelTag}}", "Deleted {{name}}": "Borttagen {{name}}", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "Raderad användare", "Deployment names are required for Azure OpenAI": "Distributionsnamn krävs för Azure OpenAI", "Desc": "", @@ -518,6 +528,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "Beskriv din kunskapsbas och dina mål", "Description": "Beskrivning", + "Deselect": "", "Detect Artifacts Automatically": "Detektera artefakter automatiskt", "Dictate": "Diktera", "Didn't fully follow instructions": "Följde inte instruktionerna", @@ -780,6 +791,8 @@ "Enter Your Username": "Ange ditt användarnamn", "Enter your webhook URL": "Ange din webhook-URL", "Entra ID": "", + "Environment Variables": "", + "Ephemeral": "", "Error": "Fel", "ERROR": "FEL", "Error accessing directory": "", @@ -856,6 +869,7 @@ "Failed to save connections": "Misslyckades med att spara anslutningar", "Failed to save conversation": "Misslyckades med att spara konversationen", "Failed to save models configuration": "Misslyckades med att spara modellkonfiguration", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "Misslyckades med att uppdatera inställningarna", @@ -871,6 +885,7 @@ "Feedback History": "Feedbackhistorik", "Feel free to add specific details": "Tveka inte att lägga till specifika detaljer", "Female": "", + "Fetch URL Content Length Limit": "", "File": "Fil", "File added successfully.": "Filen har lagts till.", "File attached to chat": "", @@ -925,6 +940,7 @@ "Format Lines": "Formatera rader", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "", "Formatting may be inconsistent from source.": "Formatering kan skilja sig från källfilen", + "Forward": "", "Forwards system user OAuth access token to authenticate": "", "Forwards system user session credentials to authenticate": "Vidarebefordrar systemanvändarsessionens autentiseringsuppgifter för att autentisera", "Full Context Mode": "Fullständigt kontextläge", @@ -1012,6 +1028,7 @@ "ID": "ID", "ID cannot contain \":\" or \"|\" characters": "ID kan inte innehålla \":\" eller \"|\" tecken", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "iframe Sandbox Tillåt formulär", "iframe Sandbox Allow Same Origin": "iframe Sandbox Tillåt samma ursprung", "Ignite curiosity": "Väck nyfikenhet", @@ -1182,6 +1199,7 @@ "Max Speakers": "Max antal talare", "Max Upload Count": "Max antal uppladdningar", "Max Upload Size": "Max uppladdningsstorlek", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Högst 3 modeller kan laddas ner samtidigt. Vänligen försök igen senare.", @@ -1213,6 +1231,7 @@ "Microsoft OneDrive": "Microsoft OneDrive", "Microsoft OneDrive (personal)": "Microsoft OneDrive (personligt)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (arbete/skola)", + "min": "", "MinerU": "", "MinerU API Key required for Cloud API mode.": "", "Mistral OCR": "Mistral OCR", @@ -1318,6 +1337,7 @@ "No kernel": "", "No knowledge bases found.": "", "No knowledge found": "Ingen kunskapsbas hittades", + "No limit": "", "No memories to clear": "Inga minnen att rensa", "No model IDs": "Inga modell-ID:n", "No models available": "", @@ -1390,6 +1410,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Hoppsan! Du använder en ej stödd metod (endast frontend). Vänligen servera WebUI från backend.", "Open file": "Öppna fil", "Open in full screen": "Öppna i helskärm", + "Open in new tab": "", "Open link": "Öppna länk", "Open modal to configure connection": "Öppna modal för att konfigurera anslutning", "Open Modal To Manage Floating Quick Actions": "Öppna inställningsruta för att hantera flytande snabbåtgärder", @@ -1450,6 +1471,7 @@ "Perplexity Model": "Perplexity-modell", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "Perplexity Sök Kontextanvändning", + "Persistent": "", "Personalization": "Personalisering", "Pin": "Fäst", "Pinned": "Fäst", @@ -1486,6 +1508,7 @@ "Please select a valid JSON file": "Vänligen välj en giltig JSON-fil", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "Vänta tills alla filer har laddats upp.", + "Policy ID": "", "Port": "Port", "Ports": "", "Positive attitude": "Positivt inställning", @@ -1565,6 +1588,7 @@ "Remove image": "Ta bort bild", "Remove Model": "Ta bort modell", "Rename": "Byt namn", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "Omordna modeller", "Reply": "Svara", @@ -1630,6 +1654,7 @@ "Search Groups": "", "Search In Models": "Sök bland modeller", "Search Knowledge": "Sök i kunskapsbaser", + "Search Memories": "", "Search Models": "Sök modeller", "Search Notes": "Sök anteckningar", "Search options": "Sökalternativ", @@ -1671,6 +1696,7 @@ "Select a theme": "Välj ett tema", "Select a tool": "Välj ett verktyg", "Select a voice": "Välj en röst", + "Select All": "", "Select an auth method": "Välj en autentiseringsmetod", "Select an embedding model engine": "Välj en embedding-modell", "Select an engine": "Välj en motor", @@ -1699,6 +1725,7 @@ "Serper API Key": "Serper API-nyckel", "Serply API Key": "Serply API-nyckel", "Serpstack API Key": "Serpstack API-nyckel", + "Server connection failed": "", "Server connection verified": "Serveranslutning verifierad", "Session": "Session", "Set as default": "Ange som standard", @@ -1800,6 +1827,7 @@ "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Stoppsekvens", + "Storage": "", "Stream Chat Response": "Strömma chattsvar", "Stream Delta Chunk Size": "", "Streamable HTTP": "", diff --git a/src/lib/i18n/locales/th-TH/translation.json b/src/lib/i18n/locales/th-TH/translation.json index 6b8051c1c5..7449a75d89 100644 --- a/src/lib/i18n/locales/th-TH/translation.json +++ b/src/lib/i18n/locales/th-TH/translation.json @@ -17,6 +17,7 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "{{COUNT}} คำตอบ", "{{COUNT}} Rows": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "{{COUNT}} แหล่งที่มา", "{{COUNT}} words": "{{COUNT}} คำ", "{{COUNT}}d_time_ago": "", @@ -127,6 +128,7 @@ "Allow File Upload": "อนุญาตให้อัปโหลดไฟล์", "Allow Multiple Models in Chat": "อนุญาตการใช้หลายโมเดลในการแชท", "Allow non-local voices": "อนุญาตเสียงที่ไม่ใช่แบบ Local", + "Allow public write access": "", "Allow Rate Response": "อนุญาตให้ให้คะแนนคำตอบ", "Allow Regenerate Response": "อนุญาตให้สร้างคำตอบใหม่", "Allow Sharing With Users": "", @@ -181,6 +183,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "คุณแน่ใจหรือว่าต้องการลบช่องนี้?", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "คุณแน่ใจหรือว่าต้องการลบข้อความนี้?", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +382,7 @@ "Configure": "กำหนดค่า", "Confirm": "ยืนยัน", "Confirm Password": "ยืนยันรหัสผ่าน", + "Confirm Prompt from Embed": "", "Confirm your action": "ยืนยันการดำเนินการของคุณ", "Confirm your new password": "ยืนยันรหัสผ่านใหม่ของคุณ", "Confirm Your Password": "ยืนยันรหัสผ่านของคุณ", @@ -386,6 +391,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "เชื่อมต่อกับ API Endpoint ที่เข้ากันได้กับ OpenAI ของคุณเอง", "Connect to your own OpenAPI compatible external tool servers.": "เชื่อมต่อกับเซิร์ฟเวอร์เครื่องมือภายนอกของคุณที่รองรับ OpenAPI", + "Connected ({{type}})": "", "Connection failed": "การเชื่อมต่อล้มเหลว", "Connection successful": "เชื่อมต่อสำเร็จ", "Connection Type": "ประเภทการเชื่อมต่อ", @@ -426,6 +432,7 @@ "Copying to clipboard was successful!": "คัดลอกไปยังคลิปบอร์ดสำเร็จแล้ว!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "ผู้ให้บริการต้องกำหนดค่า CORS ให้ถูกต้องเพื่ออนุญาตคำขอจาก Open WebUI", "Could not read file.": "", + "CPU": "", "Create": "สร้าง", "Create a knowledge base": "สร้างฐานความรู้", "Create a model": "สร้างโมเดล", @@ -497,6 +504,7 @@ "Delete File": "", "Delete folder?": "ลบโฟลเดอร์ใช่หรือไม่?", "Delete function?": "ลบฟังก์ชัน?", + "Delete Memory?": "", "Delete Message": "ลบข้อความ", "Delete message?": "ลบข้อความใช่หรือไม่?", "Delete Model": "ลบโมเดล", @@ -510,6 +518,7 @@ "Deleted": "", "Deleted {{deleteModelTag}}": "ลบ {{deleteModelTag}}", "Deleted {{name}}": "ลบแล้ว {{name}}", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "ผู้ใช้ที่ถูกลบ", "Deployment names are required for Azure OpenAI": "ต้องระบุชื่อการปรับใช้สำหรับ Azure OpenAI", "Desc": "", @@ -518,6 +527,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "อธิบายฐานความรู้และวัตถุประสงค์ของคุณ", "Description": "คำอธิบาย", + "Deselect": "", "Detect Artifacts Automatically": "ตรวจจับ Artifacts โดยอัตโนมัติ", "Dictate": "การเขียนตามคำบอก", "Didn't fully follow instructions": "ไม่ได้ทำตามคำแนะนำทั้งหมด", @@ -780,6 +790,8 @@ "Enter Your Username": "กรอกชื่อผู้ใช้ของคุณ", "Enter your webhook URL": "ใส่ URL ของ Webhook ของคุณ", "Entra ID": "Entra ID", + "Environment Variables": "", + "Ephemeral": "", "Error": "ข้อผิดพลาด", "ERROR": "ข้อผิดพลาด", "Error accessing directory": "ข้อผิดพลาดในการเข้าถึงไดเรกทอรี", @@ -856,6 +868,7 @@ "Failed to save connections": "บันทึกการเชื่อมต่อล้มเหลว", "Failed to save conversation": "บันทึกการสนทนาล้มเหลว", "Failed to save models configuration": "บันทึกการตั้งค่าโมเดลล้มเหลว", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "อัปเดตการตั้งค่าล้มเหลว", @@ -871,6 +884,7 @@ "Feedback History": "ประวัติข้อเสนอแนะ", "Feel free to add specific details": "สามารถเพิ่มรายละเอียดเฉพาะได้", "Female": "หญิง", + "Fetch URL Content Length Limit": "", "File": "ไฟล์", "File added successfully.": "เพิ่มไฟล์สำเร็จแล้ว", "File attached to chat": "", @@ -925,6 +939,7 @@ "Format Lines": "จัดรูปแบบบรรทัด", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "จัดรูปแบบบรรทัดในผลลัพธ์ ค่าปริยายเป็น False หากตั้งค่าเป็น True บรรทัดจะถูกจัดรูปแบบเพื่อให้ตรวจจับสมการคณิตศาสตร์แบบ Inline และสไตล์ได้", "Formatting may be inconsistent from source.": "รูปแบบอาจไม่สอดคล้องกันกับต้นฉบับ", + "Forward": "", "Forwards system user OAuth access token to authenticate": "ส่งต่อโทเค็นการเข้าถึง OAuth ของผู้ใช้ระบบเพื่อยืนยันตัวตน", "Forwards system user session credentials to authenticate": "ส่งต่อข้อมูลรับรอง Session ของผู้ใช้ระบบเพื่อใช้ยืนยันตัวตน", "Full Context Mode": "โหมดบริบทเต็ม", @@ -1012,6 +1027,7 @@ "ID": "ID", "ID cannot contain \":\" or \"|\" characters": "ID ต้องไม่มีอักขระ \":\" หรือ \"|\"", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "อนุญาตฟอร์มใน Sandbox ของ iframe", "iframe Sandbox Allow Same Origin": "ให้ iframe Sandbox ใช้แหล่งที่มาเดียวกันได้", "Ignite curiosity": "จุดประกายความอยากรู้อยากเห็น", @@ -1182,6 +1198,7 @@ "Max Speakers": "จำนวนผู้พูดสูงสุด", "Max Upload Count": "จำนวนครั้งการอัปโหลดสูงสุด", "Max Upload Size": "ขนาดอัปโหลดสูงสุด", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "สามารถดาวน์โหลดโมเดลได้สูงสุด 3 โมเดลในเวลาเดียวกัน โปรดลองอีกครั้งในภายหลัง", @@ -1213,6 +1230,7 @@ "Microsoft OneDrive": "Microsoft OneDrive", "Microsoft OneDrive (personal)": "Microsoft OneDrive (ส่วนบุคคล)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (ที่ทำงาน/โรงเรียน)", + "min": "", "MinerU": "MinerU", "MinerU API Key required for Cloud API mode.": "ต้องใช้ MinerU API Key สำหรับโหมด Cloud API", "Mistral OCR": "Mistral OCR", @@ -1318,6 +1336,7 @@ "No kernel": "", "No knowledge bases found.": "", "No knowledge found": "ไม่พบฐานความรู้", + "No limit": "", "No memories to clear": "ไม่มีความจำให้ลบ", "No model IDs": "ไม่มีรหัสโมเดล", "No models available": "", @@ -1390,6 +1409,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "ขออภัย! คุณกำลังใช้วิธีที่ไม่รองรับ (เฉพาะ Frontend) กรุณาให้บริการ WebUI จากฝั่ง Backend", "Open file": "เปิดไฟล์", "Open in full screen": "เปิดแบบเต็มหน้าจอ", + "Open in new tab": "", "Open link": "เปิดลิงก์", "Open modal to configure connection": "เปิดหน้าต่างเพื่อกำหนดค่าการเชื่อมต่อ", "Open Modal To Manage Floating Quick Actions": "เปิดหน้าต่างเพื่อจัดการทางลัดด่วนแบบลอย", @@ -1450,6 +1470,7 @@ "Perplexity Model": "โมเดล Perplexity", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "การใช้บริบทการค้นหา Perplexity", + "Persistent": "", "Personalization": "การปรับแต่ง", "Pin": "ปักหมุด", "Pinned": "ปักหมุดแล้ว", @@ -1486,6 +1507,7 @@ "Please select a valid JSON file": "โปรดเลือกไฟล์ JSON ที่ถูกต้อง", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "โปรดรอจนกว่าไฟล์ทั้งหมดจะอัปโหลดเสร็จสิ้น", + "Policy ID": "", "Port": "พอร์ต", "Ports": "", "Positive attitude": "ทัศนคติเชิงบวก", @@ -1565,6 +1587,7 @@ "Remove image": "ลบรูปภาพ", "Remove Model": "ลบโมเดล", "Rename": "เปลี่ยนชื่อ", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "จัดลำดับโมเดลใหม่", "Reply": "ตอบกลับ", @@ -1629,6 +1652,7 @@ "Search Groups": "", "Search In Models": "ค้นหาในโมเดล", "Search Knowledge": "ค้นหาฐานความรู้", + "Search Memories": "", "Search Models": "ค้นหาโมเดล", "Search Notes": "ค้นหาบันทึก", "Search options": "ตัวเลือกการค้นหา", @@ -1670,6 +1694,7 @@ "Select a theme": "เลือกธีม", "Select a tool": "เลือกเครื่องมือ", "Select a voice": "เลือกเสียง", + "Select All": "", "Select an auth method": "เลือกวิธีการยืนยันตัวตน", "Select an embedding model engine": "เลือกเอนจินโมเดลสำหรับสร้าง Embedding", "Select an engine": "เลือกเอนจิน", @@ -1698,6 +1723,7 @@ "Serper API Key": "คีย์ API ของ Serper", "Serply API Key": "คีย์ API ของ Serply", "Serpstack API Key": "คีย์ API ของ Serpstack", + "Server connection failed": "", "Server connection verified": "ยืนยันการเชื่อมต่อเซิร์ฟเวอร์แล้ว", "Session": "Session", "Set as default": "ตั้งเป็นค่าเริ่มต้น", @@ -1799,6 +1825,7 @@ "Stop Download": "", "Stop Generating": "หยุดการสร้าง", "Stop Sequence": "ลำดับการหยุด", + "Storage": "", "Stream Chat Response": "สตรีมการตอบกลับแชท", "Stream Delta Chunk Size": "ขนาดชังก์สตรีม Delta", "Streamable HTTP": "HTTP แบบสตรีมได้", diff --git a/src/lib/i18n/locales/tk-TM/translation.json b/src/lib/i18n/locales/tk-TM/translation.json index 2786872cbd..fc554e993b 100644 --- a/src/lib/i18n/locales/tk-TM/translation.json +++ b/src/lib/i18n/locales/tk-TM/translation.json @@ -17,6 +17,8 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "", "{{COUNT}} Rows": "", + "{{count}} selected_one": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", "{{COUNT}}d_time_ago": "", @@ -127,6 +129,7 @@ "Allow File Upload": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "", + "Allow public write access": "", "Allow Rate Response": "", "Allow Regenerate Response": "", "Allow Sharing With Users": "", @@ -181,6 +184,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +383,7 @@ "Configure": "", "Confirm": "", "Confirm Password": "Paroly Tassyklap", + "Confirm Prompt from Embed": "", "Confirm your action": "", "Confirm your new password": "", "Confirm Your Password": "", @@ -386,6 +392,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAPI compatible external tool servers.": "", + "Connected ({{type}})": "", "Connection failed": "", "Connection successful": "", "Connection Type": "", @@ -426,6 +433,7 @@ "Copying to clipboard was successful!": "Buferine göçürmek üstünlikli boldy!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "", "Could not read file.": "", + "CPU": "", "Create": "", "Create a knowledge base": "", "Create a model": "Model döret", @@ -497,6 +505,7 @@ "Delete File": "", "Delete folder?": "", "Delete function?": "", + "Delete Memory?": "", "Delete Message": "", "Delete message?": "", "Delete Model": "", @@ -510,6 +519,7 @@ "Deleted": "", "Deleted {{deleteModelTag}}": "", "Deleted {{name}}": "", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "", "Deployment names are required for Azure OpenAI": "", "Desc": "", @@ -518,6 +528,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "", "Description": "Düşündiriş", + "Deselect": "", "Detect Artifacts Automatically": "", "Dictate": "", "Didn't fully follow instructions": "", @@ -780,6 +791,8 @@ "Enter Your Username": "", "Enter your webhook URL": "", "Entra ID": "", + "Environment Variables": "", + "Ephemeral": "", "Error": "Ýalňyşlyk", "ERROR": "", "Error accessing directory": "", @@ -856,6 +869,7 @@ "Failed to save connections": "", "Failed to save conversation": "Söhbeti ýazdyrmak başa barmady", "Failed to save models configuration": "", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "", @@ -871,6 +885,7 @@ "Feedback History": "", "Feel free to add specific details": "", "Female": "", + "Fetch URL Content Length Limit": "", "File": "Faýl", "File added successfully.": "", "File attached to chat": "", @@ -925,6 +940,7 @@ "Format Lines": "", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "", "Formatting may be inconsistent from source.": "", + "Forward": "", "Forwards system user OAuth access token to authenticate": "", "Forwards system user session credentials to authenticate": "", "Full Context Mode": "", @@ -1012,6 +1028,7 @@ "ID": "", "ID cannot contain \":\" or \"|\" characters": "", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "", "iframe Sandbox Allow Same Origin": "", "Ignite curiosity": "", @@ -1182,6 +1199,7 @@ "Max Speakers": "", "Max Upload Count": "", "Max Upload Size": "", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "", @@ -1213,6 +1231,7 @@ "Microsoft OneDrive": "", "Microsoft OneDrive (personal)": "", "Microsoft OneDrive (work/school)": "", + "min": "", "MinerU": "", "MinerU API Key required for Cloud API mode.": "", "Mistral OCR": "", @@ -1318,6 +1337,7 @@ "No kernel": "", "No knowledge bases found.": "", "No knowledge found": "", + "No limit": "", "No memories to clear": "", "No model IDs": "", "No models available": "", @@ -1390,6 +1410,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "", "Open file": "", "Open in full screen": "", + "Open in new tab": "", "Open link": "", "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", @@ -1450,6 +1471,7 @@ "Perplexity Model": "", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "", + "Persistent": "", "Personalization": "", "Pin": "", "Pinned": "", @@ -1486,6 +1508,7 @@ "Please select a valid JSON file": "", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "", + "Policy ID": "", "Port": "", "Ports": "", "Positive attitude": "", @@ -1565,6 +1588,7 @@ "Remove image": "", "Remove Model": "Modeli Aýyr", "Rename": "Adyny Üýtget", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "", "Reply": "", @@ -1630,6 +1654,7 @@ "Search Groups": "", "Search In Models": "", "Search Knowledge": "", + "Search Memories": "", "Search Models": "", "Search Notes": "", "Search options": "", @@ -1671,6 +1696,7 @@ "Select a theme": "", "Select a tool": "", "Select a voice": "", + "Select All": "", "Select an auth method": "", "Select an embedding model engine": "", "Select an engine": "", @@ -1699,6 +1725,7 @@ "Serper API Key": "", "Serply API Key": "", "Serpstack API Key": "", + "Server connection failed": "", "Server connection verified": "", "Session": "", "Set as default": "", @@ -1800,6 +1827,7 @@ "Stop Download": "", "Stop Generating": "", "Stop Sequence": "", + "Storage": "", "Stream Chat Response": "", "Stream Delta Chunk Size": "", "Streamable HTTP": "", diff --git a/src/lib/i18n/locales/tr-TR/translation.json b/src/lib/i18n/locales/tr-TR/translation.json index 6dd6a88393..989f244bfa 100644 --- a/src/lib/i18n/locales/tr-TR/translation.json +++ b/src/lib/i18n/locales/tr-TR/translation.json @@ -17,6 +17,8 @@ "{{COUNT}} members": "{{COUNT}} üye", "{{COUNT}} Replies": "{{COUNT}} Yanıt", "{{COUNT}} Rows": "{{COUNT}} satır", + "{{count}} selected_one": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "{{COUNT}} kaynak", "{{COUNT}} words": "{{COUNT}} kelime", "{{COUNT}}d_time_ago": "{{COUNT}} gün önce", @@ -127,6 +129,7 @@ "Allow File Upload": "Dosya Yüklemeye İzin Ver", "Allow Multiple Models in Chat": "Sohbette Birden Fazla Modele İzin Ver", "Allow non-local voices": "Yerel olmayan seslere izin ver", + "Allow public write access": "", "Allow Rate Response": "Yanıtı Değerlendirmeye İzin Ver", "Allow Regenerate Response": "Yanıtı Yeniden Oluşturmaya İzin Ver", "Allow Sharing With Users": "Kullanıcılarla Paylaşmaya İzin Ver", @@ -181,6 +184,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "\"{{NAME}}\" öğesini silmek istediğinizden emin misiniz?", "Are you sure you want to delete all chats? This action cannot be undone.": "Tüm sohbetleri silmek istediğinizden emin misiniz? Bu işlem geri alınamaz.", "Are you sure you want to delete this channel?": "Bu kanalı silmek istediğinizden emin misiniz?", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "Bu mesajı silmek istediğinizden emin misiniz?", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "Bu sürümü silmek istediğinizden emin misiniz? Alt sürümler bu sürümün üst sürümüne yeniden bağlanacaktır.", "Are you sure you want to delete this?": "", @@ -378,6 +383,7 @@ "Configure": "Yapılandırma", "Confirm": "Onayla", "Confirm Password": "Parolayı Onayla", + "Confirm Prompt from Embed": "", "Confirm your action": "İşleminizi onaylayın", "Confirm your new password": "Yeni parolanızı onaylayın", "Confirm Your Password": "Parolanızı Onaylayın", @@ -386,6 +392,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "Open Terminal örneklerine bağlanın. Tüm kullanıcılar bu sunucular üzerinden dosya gezintisine ve terminal araçlarına erişebilecek.", "Connect to your own OpenAI compatible API endpoints.": "Kendi OpenAI uyumlu API uç noktalarınıza bağlanın.", "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 successful": "Bağlantı başarılı", "Connection Type": "Bağlantı Tipi", @@ -426,6 +433,7 @@ "Copying to clipboard was successful!": "Panoya kopyalama başarılı!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "Open WebUI’dan gelen isteklerin kabul edilebilmesi için sağlayıcının CORS yapılandırmasının doğru şekilde yapılmış olması gerekir.", "Could not read file.": "Dosya okunamadı.", + "CPU": "", "Create": "Oluştur", "Create a knowledge base": "Bir bilgi tabanı oluştur", "Create a model": "Bir model oluştur", @@ -497,6 +505,7 @@ "Delete File": "Dosyayı Sil", "Delete folder?": "Klasörü sil?", "Delete function?": "Fonksiyonu sil?", + "Delete Memory?": "", "Delete Message": "Mesajı Sil", "Delete message?": "Mesaj Silinsin mi?", "Delete Model": "Modeli Sil", @@ -510,6 +519,7 @@ "Deleted": "Silindi", "Deleted {{deleteModelTag}}": "{{deleteModelTag}} silindi", "Deleted {{name}}": "{{name}} silindi", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "Kullanıcı Silindi", "Deployment names are required for Azure OpenAI": "Azure OpenAI için dağıtım adları gereklidir", "Desc": "Azalan", @@ -518,6 +528,7 @@ "Describe what changed...": "Nelerin değiştiğini açıklayın...", "Describe your knowledge base and objectives": "Bilgi tabanınızı ve hedeflerinizi açıklayın", "Description": "Açıklama", + "Deselect": "", "Detect Artifacts Automatically": "Eserleri Otomatik Algıla", "Dictate": "Dikte Et", "Didn't fully follow instructions": "Talimatları tam olarak takip etmedi", @@ -780,6 +791,8 @@ "Enter Your Username": "Kullanıcı Adınızı Girin", "Enter your webhook URL": "Webhook URL'nizi girin", "Entra ID": "Entra ID", + "Environment Variables": "", + "Ephemeral": "", "Error": "Hata", "ERROR": "HATA", "Error accessing directory": "Dizine erişilirken hata oluştu", @@ -856,6 +869,7 @@ "Failed to save connections": "Bağlantılar kaydedilemedi", "Failed to save conversation": "Sohbet kaydedilemedi", "Failed to save models configuration": "Modeller yapılandırması kaydedilemedi", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "Terminal sunucuları kaydedilemedi", "Failed to unshare chat.": "Sohbet paylaşımı kaldırılamadı.", "Failed to update settings": "Ayarlar güncellenemedi", @@ -871,6 +885,7 @@ "Feedback History": "Geri Bildirim Geçmişi", "Feel free to add specific details": "Spesifik ayrıntılar eklemekten çekinmeyin", "Female": "Kadın", + "Fetch URL Content Length Limit": "", "File": "Dosya", "File added successfully.": "Dosya başarıyla eklendi.", "File attached to chat": "Dosya sohbete eklendi", @@ -925,6 +940,7 @@ "Format Lines": "Satırları Biçimlendir", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "Çıktıdaki satırları biçimlendir. Varsayılan olarak False. True olarak ayarlanırsa, satırlar satır içi matematik ve stilleri algılamak için biçimlendirilecektir.", "Formatting may be inconsistent from source.": "Biçimlendirme kaynaktan tutarsız olabilir.", + "Forward": "", "Forwards system user OAuth access token to authenticate": "Kimlik doğrulamak için sistem kullanıcı OAuth erişim belirtecini iletir", "Forwards system user session credentials to authenticate": "Kimlik doğrulamak için sistem kullanıcı oturum kimlik bilgilerini iletir", "Full Context Mode": "Tam Bağlam Modu", @@ -1012,6 +1028,7 @@ "ID": "ID", "ID cannot contain \":\" or \"|\" characters": "", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "", "iframe Sandbox Allow Same Origin": "", "Ignite curiosity": "Merak uyandırın", @@ -1182,6 +1199,7 @@ "Max Speakers": "", "Max Upload Count": "Maksimum Yükleme Sayısı", "Max Upload Size": "Maksimum Yükleme Boyutu", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "Klasör başına maksimum dosya sayısı {{max}}.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Aynı anda en fazla 3 model indirilebilir. Lütfen daha sonra tekrar deneyin.", @@ -1213,6 +1231,7 @@ "Microsoft OneDrive": "Microsoft OneDrive", "Microsoft OneDrive (personal)": "Microsoft OneDrive (kişisel)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (iş/okul)", + "min": "", "MinerU": "", "MinerU API Key required for Cloud API mode.": "", "Mistral OCR": "Mistral OCR", @@ -1318,6 +1337,7 @@ "No kernel": "Kernel yok", "No knowledge bases found.": "Bilgi tabanı bulunamadı.", "No knowledge found": "Bilgi bulunamadı", + "No limit": "", "No memories to clear": "Temizlenecek bellek yok", "No model IDs": "Model ID yok", "No models available": "Kullanılabilir model yok", @@ -1390,6 +1410,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Hay aksi! Desteklenmeyen bir yöntem kullanıyorsunuz (yalnızca önyüz). Lütfen WebUI'yi arka uçtan sunun.", "Open file": "Dosyayı aç", "Open in full screen": "Tam ekranda aç", + "Open in new tab": "", "Open link": "", "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "Yüzen hızlı eylemleri yönetmek için pencereyi aç", @@ -1450,6 +1471,7 @@ "Perplexity Model": "Perplexity Modeli", "Perplexity Search API URL": "Perplexity Search API URL'si", "Perplexity Search Context Usage": "Perplexity Search Bağlam Kullanımı", + "Persistent": "", "Personalization": "Kişiselleştirme", "Pin": "Sabitle", "Pinned": "Sabitlenmiş", @@ -1486,6 +1508,7 @@ "Please select a valid JSON file": "", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "", + "Policy ID": "", "Port": "Port", "Ports": "", "Positive attitude": "Olumlu yaklaşım", @@ -1565,6 +1588,7 @@ "Remove image": "", "Remove Model": "Modeli Kaldır", "Rename": "Yeniden Adlandır", + "Renamed to {{name}}": "", "Render Markdown in Previews": "Önizlemelerde Markdown'u İşle", "Reorder Models": "Modelleri Yeniden Sırala", "Reply": "", @@ -1630,6 +1654,7 @@ "Search Groups": "Grupları Ara", "Search In Models": "Modellerde Ara", "Search Knowledge": "Bilgi Ara", + "Search Memories": "", "Search Models": "Modelleri Ara", "Search Notes": "Notları Ara", "Search options": "Arama seçenekleri", @@ -1671,6 +1696,7 @@ "Select a theme": "Bir tema seçin", "Select a tool": "Bir araç seç", "Select a voice": "Bir ses seçin", + "Select All": "", "Select an auth method": "Yetkilendirme yöntemi seç", "Select an embedding model engine": "Bir gömme modeli motoru seçin", "Select an engine": "Bir motor seçin", @@ -1699,6 +1725,7 @@ "Serper API Key": "Serper API Anahtarı", "Serply API Key": "Serply API Anahtarı", "Serpstack API Key": "Serpstack API Anahtarı", + "Server connection failed": "", "Server connection verified": "Sunucu bağlantısı doğrulandı", "Session": "Oturum", "Set as default": "Varsayılan olarak ayarla", @@ -1800,6 +1827,7 @@ "Stop Download": "İndirmeyi Durdur", "Stop Generating": "Oluşturmayı Durdur", "Stop Sequence": "Diziyi Durdur", + "Storage": "", "Stream Chat Response": "Akış Sohbet Yanıtı", "Stream Delta Chunk Size": "Akış Delta Parça Boyutu", "Streamable HTTP": "Akışlanabilir HTTP", diff --git a/src/lib/i18n/locales/ug-CN/translation.json b/src/lib/i18n/locales/ug-CN/translation.json index d5530c937d..2867af46c9 100644 --- a/src/lib/i18n/locales/ug-CN/translation.json +++ b/src/lib/i18n/locales/ug-CN/translation.json @@ -17,6 +17,8 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "{{COUNT}} ئىنكاس", "{{COUNT}} Rows": "", + "{{count}} selected_one": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", "{{COUNT}}d_time_ago": "", @@ -127,6 +129,7 @@ "Allow File Upload": "ھۆججەت چىقىرىشقا ئىجازەت", "Allow Multiple Models in Chat": "سۆھبەتتە بىر قانچە مودېل ئىشلىتىشكە ئىجازەت", "Allow non-local voices": "يەرلىك بولمىغان ئاۋازلارغا ئىجازەت", + "Allow public write access": "", "Allow Rate Response": "", "Allow Regenerate Response": "", "Allow Sharing With Users": "", @@ -181,6 +184,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "بۇ قانالنى ئۆچۈرەمسىز؟", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "بۇ ئۇچۇرنى ئۆچۈرەمسىز؟", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +383,7 @@ "Configure": "تەڭشەك", "Confirm": "جەزملەش", "Confirm Password": "پارولنى جەزملەش", + "Confirm Prompt from Embed": "", "Confirm your action": "ھەرىكىتىڭىزنى جەزملەڭ", "Confirm your new password": "يېڭى پارولىڭىزنى جەزملەڭ", "Confirm Your Password": "", @@ -386,6 +392,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "ئۆزىڭىزنىڭ OpenAI غا ماس كېلىدىغان API ئۇلانمىلىرىڭىزغا باغلىنىڭ.", "Connect to your own OpenAPI compatible external tool servers.": "OpenAPI ماس كېلىدىغان سىرتقى قورال مۇلازىمېتىرلىرىغا باغلىنىڭ.", + "Connected ({{type}})": "", "Connection failed": "ئۇلىنىش مەغلۇپ بولدى", "Connection successful": "ئۇلىنىش مۇۋەپپەقىيەتلىك", "Connection Type": "ئۇلىنىش تىپى", @@ -426,6 +433,7 @@ "Copying to clipboard was successful!": "چاپلاش تاختىسىغا كۆچۈرۈش مۇۋەپپەقىيەتلىك بولدى!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "Open WebUIنىڭ تەلىپكە ئىجازەت بېرىش ئۈچۈن CORS توغرا تەڭشىلىشى كېرەك.", "Could not read file.": "", + "CPU": "", "Create": "قۇرۇش", "Create a knowledge base": "بىلىم ئاساسى قۇرۇش", "Create a model": "مودېل قۇرۇش", @@ -497,6 +505,7 @@ "Delete File": "", "Delete folder?": "قىسقۇچ ئۆچۈرەمسىز؟", "Delete function?": "فۇنكسىيە ئۆچۈرەمسىز؟", + "Delete Memory?": "", "Delete Message": "ئۇچۇر ئۆچۈرۈش", "Delete message?": "ئۇچۇر ئۆچۈرەمسىز؟", "Delete Model": "", @@ -510,6 +519,7 @@ "Deleted": "", "Deleted {{deleteModelTag}}": "{{deleteModelTag}} ئۆچۈرۈلدى", "Deleted {{name}}": "{{name}} ئۆچۈرۈلدى", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "ئۆچۈرۈلگەن ئىشلەتكۈچى", "Deployment names are required for Azure OpenAI": "Azure OpenAI ئۈچۈن ئورۇنلاشتۇرۇش ئىسمى زۆرۈر ", "Desc": "", @@ -518,6 +528,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "بىلىم ئاساسى ۋە نىشانلىرىڭىزنى چۈشەندۈرۈڭ", "Description": "چۈشەندۈرۈش", + "Deselect": "", "Detect Artifacts Automatically": "ئۇزۇقلارنى ئاپتوماتىك بايقايدۇ", "Dictate": "سۆزلەش", "Didn't fully follow instructions": "كۆرسىتىلمىلەرگە تولۇق ئەمەل قىلمايدۇ", @@ -780,6 +791,8 @@ "Enter Your Username": "ئىشلەتكۈچى نامىڭىزنى كىرگۈزۈڭ", "Enter your webhook URL": "webhook URL كىرگۈزۈڭ", "Entra ID": "", + "Environment Variables": "", + "Ephemeral": "", "Error": "خاتا", "ERROR": "خاتالىق", "Error accessing directory": "", @@ -856,6 +869,7 @@ "Failed to save connections": "ئۇلىنىشلارنى ساقلاش مەغلۇپ بولدى", "Failed to save conversation": "سۆھبەتنى ساقلاش مەغلۇپ بولدى", "Failed to save models configuration": "مودېل تەڭشەكلىرىنى ساقلاش مەغلۇپ بولدى", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "تەڭشەكلەرنى يېڭىلاش مەغلۇپ بولدى", @@ -871,6 +885,7 @@ "Feedback History": "پىكىر تارىخى", "Feel free to add specific details": "تەپسىلىي ئۇچۇر قوشسىڭىز بولىدۇ", "Female": "", + "Fetch URL Content Length Limit": "", "File": "ھۆججەت", "File added successfully.": "ھۆججەت مۇۋەپپەقىيەتلىك قوشۇلدى.", "File attached to chat": "", @@ -925,6 +940,7 @@ "Format Lines": "", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "", "Formatting may be inconsistent from source.": "", + "Forward": "", "Forwards system user OAuth access token to authenticate": "", "Forwards system user session credentials to authenticate": "سىستېما ئىشلەتكۈچىسى ئۇچۇرلىرىنى دەلىللەشكە يوللايدۇ", "Full Context Mode": "تولۇق مەزمۇن ھالىتى", @@ -1012,6 +1028,7 @@ "ID": "ID", "ID cannot contain \":\" or \"|\" characters": "", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "iframe Sandbox فورمىلارغا ئىجازەت", "iframe Sandbox Allow Same Origin": "iframe Sandbox بىر مەنبەلىككە ئىجازەت", "Ignite curiosity": "قىزىقىشىڭىزنى قوزغىتىڭ", @@ -1182,6 +1199,7 @@ "Max Speakers": "ئەڭ كۆپ سۆزلىگۈچىلەر", "Max Upload Count": "ئەڭ كۆپ چىقىرىش سانى", "Max Upload Size": "ئەڭ چوڭ چىقىرىش چوڭلۇقى", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "بىر ۋاقىتتا ئەڭ كۆپ 3 مودېل چۈشۈرۈلىدۇ. كىيىنچە قايتا سىناڭ.", @@ -1213,6 +1231,7 @@ "Microsoft OneDrive": "Microsoft OneDrive", "Microsoft OneDrive (personal)": "Microsoft OneDrive (شەخسىي)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (خىزمەت/مەكتىپ)", + "min": "", "MinerU": "", "MinerU API Key required for Cloud API mode.": "", "Mistral OCR": "Mistral OCR", @@ -1318,6 +1337,7 @@ "No kernel": "", "No knowledge bases found.": "", "No knowledge found": "بىلىم تېپىلمىدى", + "No limit": "", "No memories to clear": "تازلاشقا ئەسلەتمە يوق", "No model IDs": "مودېل ID يوق", "No models available": "", @@ -1390,6 +1410,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "قوللىمايدىغان ئۇسۇل ئىشلىتىلدى (پەقەت ئالدى كۆرۈنۈش). WebUI نى ئارقا سۇپىدىن قوزغىتىڭ.", "Open file": "ھۆججەت ئېچىش", "Open in full screen": "پۈتۈن ئېكراندا ئېچىش", + "Open in new tab": "", "Open link": "", "Open modal to configure connection": "ئۇلىنىش تەڭشەك مودالىنى ئېچىڭ", "Open Modal To Manage Floating Quick Actions": "", @@ -1450,6 +1471,7 @@ "Perplexity Model": "Perplexity مودېلى", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "Perplexity ئىزدەش مۇھىتى ئىشلىتىش", + "Persistent": "", "Personalization": "شەخسىيلاشتۇرۇش", "Pin": "مۇقىملا", "Pinned": "مۇقىملاندى", @@ -1486,6 +1508,7 @@ "Please select a valid JSON file": "", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "", + "Policy ID": "", "Port": "ئېغىز", "Ports": "", "Positive attitude": "ئىجابىي پوزىتسىيە", @@ -1565,6 +1588,7 @@ "Remove image": "", "Remove Model": "مودېل چىقىرىۋېتىش", "Rename": "ئات ئۆزگەرتىش", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "مودېللارنى قايتا تەرتىپلەش", "Reply": "", @@ -1630,6 +1654,7 @@ "Search Groups": "", "Search In Models": "", "Search Knowledge": "بىلىم ئىزدەش", + "Search Memories": "", "Search Models": "مودېللارنى ئىزدەش", "Search Notes": "", "Search options": "ئىزدەش تاللاشلىرى", @@ -1671,6 +1696,7 @@ "Select a theme": "", "Select a tool": "قورال تاللاڭ", "Select a voice": "", + "Select All": "", "Select an auth method": "دەلىللەش ئۇسۇلى تاللاڭ", "Select an embedding model engine": "", "Select an engine": "", @@ -1699,6 +1725,7 @@ "Serper API Key": "Serper API ئاچقۇچى", "Serply API Key": "Serply API ئاچقۇچى", "Serpstack API Key": "Serpstack API ئاچقۇچى", + "Server connection failed": "", "Server connection verified": "مۇلازىمېتىر ئۇلىنىشى جەزملەندى", "Session": "", "Set as default": "كۆڭۈلدىكى قىلىش", @@ -1800,6 +1827,7 @@ "Stop Download": "", "Stop Generating": "", "Stop Sequence": "توختاش تىزىقى", + "Storage": "", "Stream Chat Response": "سۆھبەت ئىنكاسىنى ئېقىم قىلىش", "Stream Delta Chunk Size": "", "Streamable HTTP": "", diff --git a/src/lib/i18n/locales/uk-UA/translation.json b/src/lib/i18n/locales/uk-UA/translation.json index cdd32362ff..0208752eee 100644 --- a/src/lib/i18n/locales/uk-UA/translation.json +++ b/src/lib/i18n/locales/uk-UA/translation.json @@ -17,6 +17,10 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "{{COUNT}} Відповіді", "{{COUNT}} Rows": "", + "{{count}} selected_one": "", + "{{count}} selected_few": "", + "{{count}} selected_many": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", "{{COUNT}}d_time_ago": "", @@ -127,6 +131,7 @@ "Allow File Upload": "Дозволити завантаження файлів", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Дозволити не локальні голоси", + "Allow public write access": "", "Allow Rate Response": "", "Allow Regenerate Response": "", "Allow Sharing With Users": "", @@ -181,6 +186,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "Ви впевнені, що хочете видалити цей канал?", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "Ви впевнені, що хочете видалити це повідомлення?", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +385,7 @@ "Configure": "Налаштувати", "Confirm": "Підтвердити", "Confirm Password": "Підтвердіть пароль", + "Confirm Prompt from Embed": "", "Confirm your action": "Підтвердіть свою дію", "Confirm your new password": "Підтвердіть свій новий пароль", "Confirm Your Password": "", @@ -386,6 +394,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "Підключіться до своїх власних API-ендпоінтів, сумісних з OpenAI.", "Connect to your own OpenAPI compatible external tool servers.": "Підключіться до своїх власних зовнішніх серверів інструментів, сумісних з OpenAPI.", + "Connected ({{type}})": "", "Connection failed": "", "Connection successful": "", "Connection Type": "", @@ -426,6 +435,7 @@ "Copying to clipboard was successful!": "Копіювання в буфер обміну виконано успішно!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "CORS має бути правильно налаштований постачальником, щоб дозволити запити з Open WebUI.", "Could not read file.": "", + "CPU": "", "Create": "Створити", "Create a knowledge base": "Створити базу знань", "Create a model": "Створити модель", @@ -497,6 +507,7 @@ "Delete File": "", "Delete folder?": "Видалити папку?", "Delete function?": "Видалити функцію?", + "Delete Memory?": "", "Delete Message": "Видалити повідомлення", "Delete message?": "Видалити повідомлення?", "Delete Model": "", @@ -510,6 +521,7 @@ "Deleted": "", "Deleted {{deleteModelTag}}": "Видалено {{deleteModelTag}}", "Deleted {{name}}": "Видалено {{name}}", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "Видалений користувач", "Deployment names are required for Azure OpenAI": "", "Desc": "", @@ -518,6 +530,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "Опишіть вашу базу знань та цілі", "Description": "Опис", + "Deselect": "", "Detect Artifacts Automatically": "", "Dictate": "", "Didn't fully follow instructions": "Не повністю дотримувалися інструкцій", @@ -780,6 +793,8 @@ "Enter Your Username": "Введіть своє ім'я користувача", "Enter your webhook URL": "Введіть URL вашого вебхука", "Entra ID": "", + "Environment Variables": "", + "Ephemeral": "", "Error": "Помилка", "ERROR": "ПОМИЛКА", "Error accessing directory": "", @@ -856,6 +871,7 @@ "Failed to save connections": "", "Failed to save conversation": "Не вдалося зберегти розмову", "Failed to save models configuration": "Не вдалося зберегти конфігурацію моделей", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "Не вдалося оновити налаштування", @@ -871,6 +887,7 @@ "Feedback History": "Історія відгуків", "Feel free to add specific details": "Не соромтеся додавати конкретні деталі", "Female": "", + "Fetch URL Content Length Limit": "", "File": "Файл", "File added successfully.": "Файл успішно додано.", "File attached to chat": "", @@ -925,6 +942,7 @@ "Format Lines": "", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "", "Formatting may be inconsistent from source.": "", + "Forward": "", "Forwards system user OAuth access token to authenticate": "", "Forwards system user session credentials to authenticate": "", "Full Context Mode": "Режим повного контексту", @@ -1012,6 +1030,7 @@ "ID": "ID", "ID cannot contain \":\" or \"|\" characters": "", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "", "iframe Sandbox Allow Same Origin": "", "Ignite curiosity": "Запаліть цікавість", @@ -1182,6 +1201,7 @@ "Max Speakers": "", "Max Upload Count": "Макс. кількість завантажень", "Max Upload Size": "Макс. розмір завантаження", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Максимум 3 моделі можна завантажити одночасно. Будь ласка, спробуйте пізніше.", @@ -1213,6 +1233,7 @@ "Microsoft OneDrive": "", "Microsoft OneDrive (personal)": "", "Microsoft OneDrive (work/school)": "", + "min": "", "MinerU": "", "MinerU API Key required for Cloud API mode.": "", "Mistral OCR": "", @@ -1318,6 +1339,7 @@ "No kernel": "", "No knowledge bases found.": "", "No knowledge found": "Знання не знайдено.", + "No limit": "", "No memories to clear": "Немає спогадів для очищення", "No model IDs": "Немає ID моделей", "No models available": "", @@ -1390,6 +1412,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Упс! Ви використовуєте непідтримуваний метод (тільки для фронтенду). Будь ласка, обслуговуйте WebUI з бекенду.", "Open file": "Відкрити файл", "Open in full screen": "Відкрити на весь екран", + "Open in new tab": "", "Open link": "", "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", @@ -1450,6 +1473,7 @@ "Perplexity Model": "", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "", + "Persistent": "", "Personalization": "Персоналізація", "Pin": "Зачепити", "Pinned": "Зачеплено", @@ -1486,6 +1510,7 @@ "Please select a valid JSON file": "", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "", + "Policy ID": "", "Port": "Порт", "Ports": "", "Positive attitude": "Позитивне ставлення", @@ -1565,6 +1590,7 @@ "Remove image": "", "Remove Model": "Видалити модель", "Rename": "Переназвати", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "Переставити моделі", "Reply": "", @@ -1632,6 +1658,7 @@ "Search Groups": "", "Search In Models": "", "Search Knowledge": "Шукати знання", + "Search Memories": "", "Search Models": "Пошук моделей", "Search Notes": "", "Search options": "Опції пошуку", @@ -1673,6 +1700,7 @@ "Select a theme": "", "Select a tool": "Оберіть інструмент", "Select a voice": "", + "Select All": "", "Select an auth method": "Оберіть метод аутентифікації.", "Select an embedding model engine": "", "Select an engine": "", @@ -1701,6 +1729,7 @@ "Serper API Key": "Ключ API Serper", "Serply API Key": "Ключ API Serply", "Serpstack API Key": "Ключ API Serpstack", + "Server connection failed": "", "Server connection verified": "З'єднання з сервером підтверджено", "Session": "", "Set as default": "Встановити за замовчуванням", @@ -1802,6 +1831,7 @@ "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Символ зупинки", + "Storage": "", "Stream Chat Response": "Відповідь стрім-чату", "Stream Delta Chunk Size": "", "Streamable HTTP": "", diff --git a/src/lib/i18n/locales/ur-PK/translation.json b/src/lib/i18n/locales/ur-PK/translation.json index 2bd69a6b0a..513ad10421 100644 --- a/src/lib/i18n/locales/ur-PK/translation.json +++ b/src/lib/i18n/locales/ur-PK/translation.json @@ -17,6 +17,8 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "", "{{COUNT}} Rows": "", + "{{count}} selected_one": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", "{{COUNT}}d_time_ago": "", @@ -127,6 +129,7 @@ "Allow File Upload": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "غیر مقامی آوازوں کی اجازت دیں", + "Allow public write access": "", "Allow Rate Response": "", "Allow Regenerate Response": "", "Allow Sharing With Users": "", @@ -181,6 +184,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +383,7 @@ "Configure": "", "Confirm": "تصدیق کریں", "Confirm Password": "پاس ورڈ کی توثیق کریں", + "Confirm Prompt from Embed": "", "Confirm your action": "اپنی کارروائی کی تصدیق کریں", "Confirm your new password": "", "Confirm Your Password": "", @@ -386,6 +392,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "", "Connect to your own OpenAPI compatible external tool servers.": "", + "Connected ({{type}})": "", "Connection failed": "", "Connection successful": "", "Connection Type": "", @@ -426,6 +433,7 @@ "Copying to clipboard was successful!": "کلپ بورڈ میں کاپی کامیاب ہوئی!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "", "Could not read file.": "", + "CPU": "", "Create": "", "Create a knowledge base": "", "Create a model": "ماڈل بنائیں", @@ -497,6 +505,7 @@ "Delete File": "", "Delete folder?": "کیا فولڈر حذف کریں؟", "Delete function?": "حذف کریں؟", + "Delete Memory?": "", "Delete Message": "", "Delete message?": "", "Delete Model": "", @@ -510,6 +519,7 @@ "Deleted": "", "Deleted {{deleteModelTag}}": "{{deleteModelTag}} حذف کر دیا گیا", "Deleted {{name}}": "حذف کر دیا گیا {{name}}", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "", "Deployment names are required for Azure OpenAI": "", "Desc": "", @@ -518,6 +528,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "", "Description": "تفصیل", + "Deselect": "", "Detect Artifacts Automatically": "", "Dictate": "", "Didn't fully follow instructions": "ہدایات کو مکمل طور پر نہیں سمجھا", @@ -780,6 +791,8 @@ "Enter Your Username": "", "Enter your webhook URL": "", "Entra ID": "", + "Environment Variables": "", + "Ephemeral": "", "Error": "غلطی", "ERROR": "غلطی", "Error accessing directory": "", @@ -856,6 +869,7 @@ "Failed to save connections": "", "Failed to save conversation": "گفتگو محفوظ نہیں ہو سکی", "Failed to save models configuration": "", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "ترتیبات کی تازہ کاری ناکام رہی", @@ -871,6 +885,7 @@ "Feedback History": "تاریخ رائے", "Feel free to add specific details": "تفصیلات شامل کرنے کے لیے آزاد محسوس کریں", "Female": "", + "Fetch URL Content Length Limit": "", "File": "فائل", "File added successfully.": "فائل کامیابی سے شامل ہو گئی", "File attached to chat": "", @@ -925,6 +940,7 @@ "Format Lines": "", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "", "Formatting may be inconsistent from source.": "", + "Forward": "", "Forwards system user OAuth access token to authenticate": "", "Forwards system user session credentials to authenticate": "", "Full Context Mode": "", @@ -1012,6 +1028,7 @@ "ID": "شناخت", "ID cannot contain \":\" or \"|\" characters": "", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "", "iframe Sandbox Allow Same Origin": "", "Ignite curiosity": "", @@ -1182,6 +1199,7 @@ "Max Speakers": "", "Max Upload Count": "زیادہ سے زیادہ اپلوڈ تعداد", "Max Upload Size": "زیادہ سے زیادہ اپلوڈ سائز", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "بیک وقت زیادہ سے زیادہ 3 ماڈل ڈاؤن لوڈ کیے جا سکتے ہیں براہ کرم بعد میں دوبارہ کوشش کریں", @@ -1213,6 +1231,7 @@ "Microsoft OneDrive": "", "Microsoft OneDrive (personal)": "", "Microsoft OneDrive (work/school)": "", + "min": "", "MinerU": "", "MinerU API Key required for Cloud API mode.": "", "Mistral OCR": "", @@ -1318,6 +1337,7 @@ "No kernel": "", "No knowledge bases found.": "", "No knowledge found": "کوئی معلومات نہیں ملی", + "No limit": "", "No memories to clear": "", "No model IDs": "", "No models available": "", @@ -1390,6 +1410,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "اوہ! آپ ایک غیر معاون طریقہ استعمال کر رہے ہیں (صرف فرنٹ اینڈ) براہ کرم ویب یو آئی کو بیک اینڈ سے پیش کریں", "Open file": "فائل کھولیں", "Open in full screen": "پوری اسکرین میں کھولیں", + "Open in new tab": "", "Open link": "", "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", @@ -1450,6 +1471,7 @@ "Perplexity Model": "", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "", + "Persistent": "", "Personalization": "شخصی ترتیبات", "Pin": "پن", "Pinned": "پن کیا گیا", @@ -1486,6 +1508,7 @@ "Please select a valid JSON file": "", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "", + "Policy ID": "", "Port": "", "Ports": "", "Positive attitude": "مثبت رویہ", @@ -1565,6 +1588,7 @@ "Remove image": "", "Remove Model": "ماڈل ہٹائیں", "Rename": "تبدیل نام کریں", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "", "Reply": "", @@ -1630,6 +1654,7 @@ "Search Groups": "", "Search In Models": "", "Search Knowledge": "علم تلاش کریں", + "Search Memories": "", "Search Models": "ماڈلز تلاش کریں", "Search Notes": "", "Search options": "", @@ -1671,6 +1696,7 @@ "Select a theme": "", "Select a tool": "ایک ٹول منتخب کریں", "Select a voice": "", + "Select All": "", "Select an auth method": "", "Select an embedding model engine": "", "Select an engine": "", @@ -1699,6 +1725,7 @@ "Serper API Key": "سرپر API کلید", "Serply API Key": "سرپلی API کی کلید", "Serpstack API Key": "سرپ اسٹیک اے پی آئی کلید", + "Server connection failed": "", "Server connection verified": "سرور کنکشن تصدیق شدہ ہے", "Session": "", "Set as default": "بطور ڈیفالٹ سیٹ کریں", @@ -1800,6 +1827,7 @@ "Stop Download": "", "Stop Generating": "", "Stop Sequence": "ترتیب روکیں", + "Storage": "", "Stream Chat Response": "اسٹریم چیٹ جواب", "Stream Delta Chunk Size": "", "Streamable HTTP": "", diff --git a/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json b/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json index 4fe68bfb54..e256dec394 100644 --- a/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json +++ b/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json @@ -17,6 +17,8 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "{{COUNT}} та жавоб", "{{COUNT}} Rows": "", + "{{count}} selected_one": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", "{{COUNT}}d_time_ago": "", @@ -127,6 +129,7 @@ "Allow File Upload": "Файл юклашга рухсат беринг", "Allow Multiple Models in Chat": "Чатда бир нечта моделларга рухсат беринг", "Allow non-local voices": "Маҳаллий бўлмаган овозларга рухсат беринг", + "Allow public write access": "", "Allow Rate Response": "", "Allow Regenerate Response": "", "Allow Sharing With Users": "", @@ -181,6 +184,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "Ҳақиқатан ҳам бу канални ўчириб ташламоқчимисиз?", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "Ҳақиқатан ҳам бу хабарни ўчириб ташламоқчимисиз?", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +383,7 @@ "Configure": "Созланг", "Confirm": "Тасдиқланг", "Confirm Password": "Паролни тасдиқланг", + "Confirm Prompt from Embed": "", "Confirm your action": "Ҳаракатингизни тасдиқланг", "Confirm your new password": "Янги паролингизни тасдиқланг", "Confirm Your Password": "", @@ -386,6 +392,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "Ўзингизнинг OpenAIга мос келадиган АПИ сўнгги нуқталарига уланинг.", "Connect to your own OpenAPI compatible external tool servers.": "Ўзингизнинг OpenAIга мос келадиган ташқи асбоблар серверларига уланинг.", + "Connected ({{type}})": "", "Connection failed": "Уланиш амалга ошмади", "Connection successful": "Уланиш муваффақиятли", "Connection Type": "Уланиш тури", @@ -426,6 +433,7 @@ "Copying to clipboard was successful!": "Буферга нусхалаш муваффақиятли бўлди!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "Open WebUI сўровларига рухсат бериш учун CORS провайдер томонидан тўғри созланган бўлиши керак.", "Could not read file.": "", + "CPU": "", "Create": "Яратиш", "Create a knowledge base": "Билимлар базасини яратинг", "Create a model": "Модел яратиш", @@ -497,6 +505,7 @@ "Delete File": "", "Delete folder?": "Жилд ўчирилсинми?", "Delete function?": "Функция ўчирилсинми?", + "Delete Memory?": "", "Delete Message": "Хабарни ўчириш", "Delete message?": "Хабар ўчирилсинми?", "Delete Model": "", @@ -510,6 +519,7 @@ "Deleted": "", "Deleted {{deleteModelTag}}": "Ўчирилди {{deleteModelTag}}", "Deleted {{name}}": "{{name}} ўчирилди", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "Ўчирилган фойдаланувчи", "Deployment names are required for Azure OpenAI": "Azure OpenAI учун тарқатиш номлари талаб қилинади", "Desc": "", @@ -518,6 +528,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "Билим базаси ва мақсадларингизни тавсифланг", "Description": "Тавсиф", + "Deselect": "", "Detect Artifacts Automatically": "Артефактларни автоматик аниқлаш", "Dictate": "Диктация қилиш", "Didn't fully follow instructions": "Кўрсатмаларга тўлиқ амал қилмади", @@ -780,6 +791,8 @@ "Enter Your Username": "Фойдаланувчи номингизни киритинг", "Enter your webhook URL": "Вебҳук УРЛ манзилингизни киритинг", "Entra ID": "", + "Environment Variables": "", + "Ephemeral": "", "Error": "Хато", "ERROR": "ХАТО", "Error accessing directory": "", @@ -856,6 +869,7 @@ "Failed to save connections": "Уланишлар сақланмади", "Failed to save conversation": "Суҳбат сақланмади", "Failed to save models configuration": "Моделлар конфигурацияси сақланмади", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "Созламаларни янгилаб бўлмади", @@ -871,6 +885,7 @@ "Feedback History": "Фикр-мулоҳаза тарихи", "Feel free to add specific details": "Муайян тафсилотларни қўшишингиз мумкин", "Female": "", + "Fetch URL Content Length Limit": "", "File": "Файл", "File added successfully.": "Файл муваффақиятли қўшилди.", "File attached to chat": "", @@ -925,6 +940,7 @@ "Format Lines": "", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "", "Formatting may be inconsistent from source.": "", + "Forward": "", "Forwards system user OAuth access token to authenticate": "", "Forwards system user session credentials to authenticate": "Аутентификация қилиш учун тизим фойдаланувчиси сеанси ҳисоб маълумотларини йўналтиради", "Full Context Mode": "Тўлиқ контекст режими", @@ -1012,6 +1028,7 @@ "ID": "ИД", "ID cannot contain \":\" or \"|\" characters": "", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "ифраме Сандбох рухсат шакллари", "iframe Sandbox Allow Same Origin": "ифраме Сандбох бир хил келиб чиқишига рухсат беради", "Ignite curiosity": "Қизиқувчанликни ёқинг", @@ -1182,6 +1199,7 @@ "Max Speakers": "Максимал динамиклар", "Max Upload Count": "Максимал юклаш сони", "Max Upload Size": "Максимал юклаш ҳажми", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Бир вақтнинг ўзида максимал 3 та моделни юклаб олиш мумкин. Кейинроқ қайта уриниб кўринг.", @@ -1213,6 +1231,7 @@ "Microsoft OneDrive": "Microsoft ОнеДриве", "Microsoft OneDrive (personal)": "Microsoft ОнеДриве (шахсий)", "Microsoft OneDrive (work/school)": "Microsoft ОнеДриве (иш/мактаб)", + "min": "", "MinerU": "", "MinerU API Key required for Cloud API mode.": "", "Mistral OCR": "Mistral ОCР", @@ -1318,6 +1337,7 @@ "No kernel": "", "No knowledge bases found.": "", "No knowledge found": "Ҳеч қандай билим топилмади", + "No limit": "", "No memories to clear": "Тозалаш учун хотиралар йўқ", "No model IDs": "Модел идентификаторлари йўқ", "No models available": "", @@ -1390,6 +1410,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Вой! Сиз қўллаб-қувватланмайдиган усулдан фойдаланмоқдасиз (фақат фронтенд). Илтимос, WебУИ-га баcкенд орқали хизмат кўрсатинг.", "Open file": "Файлни очиш", "Open in full screen": "Тўлиқ экранда очинг", + "Open in new tab": "", "Open link": "", "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", @@ -1450,6 +1471,7 @@ "Perplexity Model": "", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "", + "Persistent": "", "Personalization": "Шахсийлаштириш", "Pin": "Пин", "Pinned": "Қадалган", @@ -1486,6 +1508,7 @@ "Please select a valid JSON file": "", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "", + "Policy ID": "", "Port": "Порт", "Ports": "", "Positive attitude": "Ижобий муносабат", @@ -1565,6 +1588,7 @@ "Remove image": "", "Remove Model": "Моделни олиб ташлаш", "Rename": "Номини ўзгартириш", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "Моделларни қайта тартиблаш", "Reply": "", @@ -1630,6 +1654,7 @@ "Search Groups": "", "Search In Models": "", "Search Knowledge": "Билимларни қидириш", + "Search Memories": "", "Search Models": "Моделларни қидириш", "Search Notes": "", "Search options": "Қидирув вариантлари", @@ -1671,6 +1696,7 @@ "Select a theme": "", "Select a tool": "Асбобни танланг", "Select a voice": "", + "Select All": "", "Select an auth method": "Аутентификация усулини танланг", "Select an embedding model engine": "", "Select an engine": "", @@ -1699,6 +1725,7 @@ "Serper API Key": "Serper АПИ калити", "Serply API Key": "Serply АПИ калити", "Serpstack API Key": "Serpstack АПИ калити", + "Server connection failed": "", "Server connection verified": "Сервер уланиши тасдиқланди", "Session": "", "Set as default": "Стандарт сифатида ўрнатинг", @@ -1800,6 +1827,7 @@ "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Кетма-кетликни тўхтатиш", + "Storage": "", "Stream Chat Response": "Chat жавобини юбориш", "Stream Delta Chunk Size": "", "Streamable HTTP": "", diff --git a/src/lib/i18n/locales/uz-Latn-Uz/translation.json b/src/lib/i18n/locales/uz-Latn-Uz/translation.json index dee9c103c6..09ec2a710e 100644 --- a/src/lib/i18n/locales/uz-Latn-Uz/translation.json +++ b/src/lib/i18n/locales/uz-Latn-Uz/translation.json @@ -17,6 +17,8 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "{{COUNT}} ta javob", "{{COUNT}} Rows": "", + "{{count}} selected_one": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", "{{COUNT}}d_time_ago": "", @@ -127,6 +129,7 @@ "Allow File Upload": "Fayl yuklashga ruxsat bering", "Allow Multiple Models in Chat": "Chatda bir nechta modellarga ruxsat bering", "Allow non-local voices": "Mahalliy bo'lmagan ovozlarga ruxsat bering", + "Allow public write access": "", "Allow Rate Response": "", "Allow Regenerate Response": "", "Allow Sharing With Users": "", @@ -181,6 +184,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "Haqiqatan ham bu kanalni oʻchirib tashlamoqchimisiz?", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "Haqiqatan ham bu xabarni oʻchirib tashlamoqchimisiz?", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +383,7 @@ "Configure": "Sozlang", "Confirm": "Tasdiqlang", "Confirm Password": "Parolni tasdiqlang", + "Confirm Prompt from Embed": "", "Confirm your action": "Harakatingizni tasdiqlang", "Confirm your new password": "Yangi parolingizni tasdiqlang", "Confirm Your Password": "", @@ -386,6 +392,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "O'zingizning OpenAI-ga mos keladigan API so'nggi nuqtalariga ulaning.", "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 successful": "Ulanish muvaffaqiyatli", "Connection Type": "Ulanish turi", @@ -426,6 +433,7 @@ "Copying to clipboard was successful!": "Buferga nusxalash muvaffaqiyatli boʻldi!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "Open WebUI soʻrovlariga ruxsat berish uchun CORS provayder tomonidan toʻgʻri sozlangan boʻlishi kerak.", "Could not read file.": "", + "CPU": "", "Create": "Yaratish", "Create a knowledge base": "Bilimlar bazasini yarating", "Create a model": "Model yaratish", @@ -497,6 +505,7 @@ "Delete File": "", "Delete folder?": "Jild oʻchirilsinmi?", "Delete function?": "Funktsiya o'chirilsinmi?", + "Delete Memory?": "", "Delete Message": "Xabarni o'chirish", "Delete message?": "Xabar oʻchirilsinmi?", "Delete Model": "", @@ -510,6 +519,7 @@ "Deleted": "", "Deleted {{deleteModelTag}}": "Oʻchirildi {{deleteModelTag}}", "Deleted {{name}}": "{{name}} oʻchirildi", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "O'chirilgan foydalanuvchi", "Deployment names are required for Azure OpenAI": "Azure OpenAI uchun tarqatish nomlari talab qilinadi", "Desc": "", @@ -518,6 +528,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "Bilim bazasi va maqsadlaringizni tavsiflang", "Description": "Tavsif", + "Deselect": "", "Detect Artifacts Automatically": "Artefaktlarni avtomatik aniqlash", "Dictate": "Diktatsiya qilish", "Didn't fully follow instructions": "Ko'rsatmalarga to'liq amal qilmadi", @@ -780,6 +791,8 @@ "Enter Your Username": "Foydalanuvchi nomingizni kiriting", "Enter your webhook URL": "Vebhuk URL manzilingizni kiriting", "Entra ID": "", + "Environment Variables": "", + "Ephemeral": "", "Error": "Xato", "ERROR": "XATO", "Error accessing directory": "", @@ -856,6 +869,7 @@ "Failed to save connections": "Ulanishlar saqlanmadi", "Failed to save conversation": "Suhbat saqlanmadi", "Failed to save models configuration": "Modellar konfiguratsiyasi saqlanmadi", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "Sozlamalarni yangilab bo‘lmadi", @@ -871,6 +885,7 @@ "Feedback History": "Fikr-mulohaza tarixi", "Feel free to add specific details": "Muayyan tafsilotlarni qo'shishingiz mumkin", "Female": "", + "Fetch URL Content Length Limit": "", "File": "Fayl", "File added successfully.": "Fayl muvaffaqiyatli qo'shildi.", "File attached to chat": "", @@ -925,6 +940,7 @@ "Format Lines": "", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "", "Formatting may be inconsistent from source.": "", + "Forward": "", "Forwards system user OAuth access token to authenticate": "", "Forwards system user session credentials to authenticate": "Autentifikatsiya qilish uchun tizim foydalanuvchisi seansi hisob ma'lumotlarini yo'naltiradi", "Full Context Mode": "To'liq kontekst rejimi", @@ -1012,6 +1028,7 @@ "ID": "ID", "ID cannot contain \":\" or \"|\" characters": "", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "iframe Sandbox ruxsat shakllari", "iframe Sandbox Allow Same Origin": "iframe Sandbox bir xil kelib chiqishiga ruxsat beradi", "Ignite curiosity": "Qiziquvchanlikni yoqing", @@ -1182,6 +1199,7 @@ "Max Speakers": "Maksimal dinamiklar", "Max Upload Count": "Maksimal yuklash soni", "Max Upload Size": "Maksimal yuklash hajmi", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Bir vaqtning o'zida maksimal 3 ta modelni yuklab olish mumkin. Keyinroq qayta urinib ko‘ring.", @@ -1213,6 +1231,7 @@ "Microsoft OneDrive": "Microsoft OneDrive", "Microsoft OneDrive (personal)": "Microsoft OneDrive (shaxsiy)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive (ish/maktab)", + "min": "", "MinerU": "", "MinerU API Key required for Cloud API mode.": "", "Mistral OCR": "Mistral OCR", @@ -1318,6 +1337,7 @@ "No kernel": "", "No knowledge bases found.": "", "No knowledge found": "Hech qanday bilim topilmadi", + "No limit": "", "No memories to clear": "Tozalash uchun xotiralar yo'q", "No model IDs": "Model identifikatorlari yo'q", "No models available": "", @@ -1390,6 +1410,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Voy! Siz qoʻllab-quvvatlanmaydigan usuldan foydalanmoqdasiz (faqat frontend). Iltimos, WebUI-ga backend orqali xizmat ko'rsating.", "Open file": "Faylni ochish", "Open in full screen": "Toʻliq ekranda oching", + "Open in new tab": "", "Open link": "", "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", @@ -1450,6 +1471,7 @@ "Perplexity Model": "", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "", + "Persistent": "", "Personalization": "Shaxsiylashtirish", "Pin": "Pin", "Pinned": "Qadalgan", @@ -1486,6 +1508,7 @@ "Please select a valid JSON file": "", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "", + "Policy ID": "", "Port": "Port", "Ports": "", "Positive attitude": "Ijobiy munosabat", @@ -1565,6 +1588,7 @@ "Remove image": "", "Remove Model": "Modelni olib tashlash", "Rename": "Nomini o'zgartirish", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "Modellarni qayta tartiblash", "Reply": "", @@ -1630,6 +1654,7 @@ "Search Groups": "", "Search In Models": "", "Search Knowledge": "Bilimlarni qidirish", + "Search Memories": "", "Search Models": "Modellarni qidirish", "Search Notes": "", "Search options": "Qidiruv variantlari", @@ -1671,6 +1696,7 @@ "Select a theme": "", "Select a tool": "Asbobni tanlang", "Select a voice": "", + "Select All": "", "Select an auth method": "Auth usulini tanlang", "Select an embedding model engine": "", "Select an engine": "", @@ -1699,6 +1725,7 @@ "Serper API Key": "Serper API kaliti", "Serply API Key": "Serply API kaliti", "Serpstack API Key": "Serpstack API kaliti", + "Server connection failed": "", "Server connection verified": "Server ulanishi tasdiqlandi", "Session": "", "Set as default": "Standart sifatida o'rnating", @@ -1800,6 +1827,7 @@ "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Ketma-ketlikni to'xtatish", + "Storage": "", "Stream Chat Response": "Stream Chat javobi", "Stream Delta Chunk Size": "", "Streamable HTTP": "", diff --git a/src/lib/i18n/locales/vi-VN/translation.json b/src/lib/i18n/locales/vi-VN/translation.json index ae40e383f1..318c2bbf45 100644 --- a/src/lib/i18n/locales/vi-VN/translation.json +++ b/src/lib/i18n/locales/vi-VN/translation.json @@ -17,6 +17,7 @@ "{{COUNT}} members": "", "{{COUNT}} Replies": "{{COUNT}} Trả lời", "{{COUNT}} Rows": "", + "{{count}} selected_other": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", "{{COUNT}}d_time_ago": "", @@ -127,6 +128,7 @@ "Allow File Upload": "Cho phép Tải tệp lên", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Cho phép giọng nói không bản xứ", + "Allow public write access": "", "Allow Rate Response": "", "Allow Regenerate Response": "", "Allow Sharing With Users": "", @@ -181,6 +183,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete all chats? This action cannot be undone.": "", "Are you sure you want to delete this channel?": "Bạn có chắc chắn muốn xóa kênh này không?", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "Bạn có chắc chắn muốn xóa tin nhắn này không?", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "", "Are you sure you want to delete this?": "", @@ -378,6 +382,7 @@ "Configure": "Cấu hình", "Confirm": "Xác nhận", "Confirm Password": "Xác nhận Mật khẩu", + "Confirm Prompt from Embed": "", "Confirm your action": "Xác nhận hành động của bạn", "Confirm your new password": "Xác nhận mật khẩu mới của bạn", "Confirm Your Password": "", @@ -386,6 +391,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "", "Connect to your own OpenAI compatible API endpoints.": "Kết nối với các điểm cuối API tương thích OpenAI của riêng bạn.", "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 successful": "Kết nối thành công", "Connection Type": "", @@ -426,6 +432,7 @@ "Copying to clipboard was successful!": "Sao chép vào clipboard thành công!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "CORS phải được cấu hình đúng bởi nhà cung cấp để cho phép các yêu cầu từ Open WebUI.", "Could not read file.": "", + "CPU": "", "Create": "Tạo", "Create a knowledge base": "Tạo cơ sở kiến thức", "Create a model": "Tạo model", @@ -497,6 +504,7 @@ "Delete File": "", "Delete folder?": "Xóa thư mục?", "Delete function?": "Xóa function?", + "Delete Memory?": "", "Delete Message": "Xóa Tin nhắn", "Delete message?": "Xóa tin nhắn?", "Delete Model": "", @@ -510,6 +518,7 @@ "Deleted": "", "Deleted {{deleteModelTag}}": "Đã xóa {{deleteModelTag}}", "Deleted {{name}}": "Đã xóa {{name}}", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "Người dùng đã xóa", "Deployment names are required for Azure OpenAI": "", "Desc": "", @@ -518,6 +527,7 @@ "Describe what changed...": "", "Describe your knowledge base and objectives": "Mô tả cơ sở kiến thức và mục tiêu của bạn", "Description": "Mô tả", + "Deselect": "", "Detect Artifacts Automatically": "", "Dictate": "", "Didn't fully follow instructions": "Không tuân theo chỉ dẫn một cách đầy đủ", @@ -780,6 +790,8 @@ "Enter Your Username": "Nhập Tên đăng nhập của bạn", "Enter your webhook URL": "Nhập URL webhook của bạn", "Entra ID": "", + "Environment Variables": "", + "Ephemeral": "", "Error": "Lỗi", "ERROR": "LỖI", "Error accessing directory": "", @@ -856,6 +868,7 @@ "Failed to save connections": "Không thể lưu các kết nối", "Failed to save conversation": "Không thể lưu cuộc trò chuyện", "Failed to save models configuration": "Không thể lưu cấu hình mô hình", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "", "Failed to unshare chat.": "", "Failed to update settings": "Lỗi khi cập nhật các cài đặt", @@ -871,6 +884,7 @@ "Feedback History": "Lịch sử Phản hồi", "Feel free to add specific details": "Mô tả chi tiết về chất lượng của câu hỏi và phương án trả lời", "Female": "", + "Fetch URL Content Length Limit": "", "File": "Tệp", "File added successfully.": "Thêm tệp thành công.", "File attached to chat": "", @@ -925,6 +939,7 @@ "Format Lines": "", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "", "Formatting may be inconsistent from source.": "", + "Forward": "", "Forwards system user OAuth access token to authenticate": "", "Forwards system user session credentials to authenticate": "Chuyển tiếp thông tin xác thực phiên người dùng hệ thống để xác thực", "Full Context Mode": "Chế độ Ngữ cảnh Đầy đủ", @@ -1012,6 +1027,7 @@ "ID": "ID", "ID cannot contain \":\" or \"|\" characters": "", "ID copied to clipboard": "", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "", "iframe Sandbox Allow Same Origin": "", "Ignite curiosity": "Khơi dậy sự tò mò", @@ -1182,6 +1198,7 @@ "Max Speakers": "", "Max Upload Count": "Số lượng Tải lên Tối đa", "Max Upload Size": "Kích thước Tải lên Tối đa", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "", "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Tối đa 3 mô hình có thể được tải xuống cùng lúc. Vui lòng thử lại sau.", @@ -1213,6 +1230,7 @@ "Microsoft OneDrive": "", "Microsoft OneDrive (personal)": "", "Microsoft OneDrive (work/school)": "", + "min": "", "MinerU": "", "MinerU API Key required for Cloud API mode.": "", "Mistral OCR": "Mistral OCR", @@ -1318,6 +1336,7 @@ "No kernel": "", "No knowledge bases found.": "", "No knowledge found": "Không tìm thấy kiến thức", + "No limit": "", "No memories to clear": "Không có bộ nhớ nào để xóa", "No model IDs": "Không có ID mô hình", "No models available": "", @@ -1390,6 +1409,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Rất tiếc! Bạn đang sử dụng một phương thức không được hỗ trợ (chỉ dành cho frontend). Vui lòng cung cấp phương thức cho WebUI từ phía backend.", "Open file": "Mở tệp", "Open in full screen": "Mở toàn màn hình", + "Open in new tab": "", "Open link": "", "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", @@ -1450,6 +1470,7 @@ "Perplexity Model": "", "Perplexity Search API URL": "", "Perplexity Search Context Usage": "", + "Persistent": "", "Personalization": "Cá nhân hóa", "Pin": "Ghim", "Pinned": "Đã ghim", @@ -1486,6 +1507,7 @@ "Please select a valid JSON file": "", "Please select at least one user for Direct Message channel.": "", "Please wait until all files are uploaded.": "", + "Policy ID": "", "Port": "Cổng", "Ports": "", "Positive attitude": "Thái độ tích cực", @@ -1565,6 +1587,7 @@ "Remove image": "", "Remove Model": "Xóa model", "Rename": "Đổi tên", + "Renamed to {{name}}": "", "Render Markdown in Previews": "", "Reorder Models": "Sắp xếp lại Mô hình", "Reply": "", @@ -1629,6 +1652,7 @@ "Search Groups": "", "Search In Models": "", "Search Knowledge": "Tìm kiếm Kiến thức", + "Search Memories": "", "Search Models": "Tìm model", "Search Notes": "", "Search options": "Tùy chọn tìm kiếm", @@ -1670,6 +1694,7 @@ "Select a theme": "", "Select a tool": "Chọn tool", "Select a voice": "", + "Select All": "", "Select an auth method": "Chọn một phương thức xác thực", "Select an embedding model engine": "", "Select an engine": "", @@ -1698,6 +1723,7 @@ "Serper API Key": "Khóa API Serper", "Serply API Key": "Khóa API Serply", "Serpstack API Key": "Khóa API Serpstack", + "Server connection failed": "", "Server connection verified": "Kết nối máy chủ đã được xác minh", "Session": "", "Set as default": "Đặt làm mặc định", @@ -1799,6 +1825,7 @@ "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Trình tự Dừng", + "Storage": "", "Stream Chat Response": "Truyền trực tiếp Phản hồi Chat", "Stream Delta Chunk Size": "", "Streamable HTTP": "", diff --git a/src/lib/i18n/locales/zh-CN/translation.json b/src/lib/i18n/locales/zh-CN/translation.json index b823a7ac82..3027a681da 100644 --- a/src/lib/i18n/locales/zh-CN/translation.json +++ b/src/lib/i18n/locales/zh-CN/translation.json @@ -17,6 +17,7 @@ "{{COUNT}} members": "{{COUNT}} 位成员", "{{COUNT}} Replies": "{{COUNT}} 条回复", "{{COUNT}} Rows": "{{COUNT}} 行", + "{{count}} selected_other": "", "{{COUNT}} Sources": "{{COUNT}} 个引用来源", "{{COUNT}} words": "{{COUNT}} 个字", "{{COUNT}}d_time_ago": "{{COUNT}}天前", @@ -127,6 +128,7 @@ "Allow File Upload": "允许上传文件", "Allow Multiple Models in Chat": "允许在对话中使用多个模型", "Allow non-local voices": "允许调用非本土音色", + "Allow public write access": "", "Allow Rate Response": "允许对回答进行评价", "Allow Regenerate Response": "允许重新生成回答", "Allow Sharing With Users": "允许分享给其他用户", @@ -181,6 +183,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "您确认要删除“{{NAME}}”吗?", "Are you sure you want to delete all chats? This action cannot be undone.": "您确认要删除所有对话吗?此操作无法撤销。", "Are you sure you want to delete this channel?": "您确认要删除此频道吗?", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "您确认要删除此消息吗?", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "您确认要删除此版本吗?其子版本将重新链接到该版本的上一级。", "Are you sure you want to delete this?": "确定要删除吗?", @@ -378,6 +382,7 @@ "Configure": "配置", "Confirm": "确认", "Confirm Password": "确认密码", + "Confirm Prompt from Embed": "", "Confirm your action": "确认要继续吗?", "Confirm your new password": "确认新密码", "Confirm Your Password": "确认您的密码", @@ -386,6 +391,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "连接到 Open Terminal 实例后,所有用户将可以浏览服务器上的文件,并使用终端工具。", "Connect to your own OpenAI compatible API endpoints.": "连接到符合 OpenAI 接口格式的接口", "Connect to your own OpenAPI compatible external tool servers.": "连接到符合 OpenAPI 规范的外部工具服务器", + "Connected ({{type}})": "", "Connection failed": "连接失败", "Connection successful": "连接成功", "Connection Type": "连接类型", @@ -426,6 +432,7 @@ "Copying to clipboard was successful!": "成功复制到剪贴板!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "为允许 Open WebUI 发出的请求,提供商必须正确配置 CORS", "Could not read file.": "读取文件失败。", + "CPU": "", "Create": "创建", "Create a knowledge base": "创建知识库", "Create a model": "创建模型", @@ -497,6 +504,7 @@ "Delete File": "删除文件", "Delete folder?": "要删除此分组吗?", "Delete function?": "要删除此函数吗?", + "Delete Memory?": "", "Delete Message": "删除消息", "Delete message?": "要删除此消息吗?", "Delete Model": "删除模型", @@ -510,6 +518,7 @@ "Deleted": "删除成功", "Deleted {{deleteModelTag}}": "已删除 {{deleteModelTag}}", "Deleted {{name}}": "已删除 {{name}}", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "已删除用户", "Deployment names are required for Azure OpenAI": "Azure OpenAI 需要部署名称", "Desc": "降序", @@ -518,6 +527,7 @@ "Describe what changed...": "描述变更内容…", "Describe your knowledge base and objectives": "描述您的知识库和目标", "Description": "描述", + "Deselect": "", "Detect Artifacts Automatically": "自动检测对话产物", "Dictate": "语音输入", "Didn't fully follow instructions": "没有完全遵循指令", @@ -780,6 +790,8 @@ "Enter Your Username": "输入您的用户名", "Enter your webhook URL": "输入您的 Webhook 链接", "Entra ID": "Entra ID", + "Environment Variables": "", + "Ephemeral": "", "Error": "错误", "ERROR": "错误", "Error accessing directory": "访问目录时出错", @@ -856,6 +868,7 @@ "Failed to save connections": "保存连接失败", "Failed to save conversation": "保存对话失败", "Failed to save models configuration": "保存模型配置失败", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "终端服务器保存失败", "Failed to unshare chat.": "取消对话分享失败。", "Failed to update settings": "更新设置失败", @@ -871,6 +884,7 @@ "Feedback History": "历史反馈", "Feel free to add specific details": "欢迎补充具体细节", "Female": "女性", + "Fetch URL Content Length Limit": "", "File": "文件", "File added successfully.": "文件成功添加", "File attached to chat": "文件已被添加到对话中", @@ -925,6 +939,7 @@ "Format Lines": "行内容格式化", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "对输出中的文本行进行格式处理。默认为 False。设置为 True 时,会对所有文本行的内容进行格式化,检测并识别行内的数学公式和样式。", "Formatting may be inconsistent from source.": "格式可能会与原始文件不完全一致。", + "Forward": "", "Forwards system user OAuth access token to authenticate": "转发用户的 OAuth 访问令牌(Access Token)以进行身份验证", "Forwards system user session credentials to authenticate": "转发用户的会话凭证(Session Credentials)以进行身份验证", "Full Context Mode": "完整上下文模式", @@ -1012,6 +1027,7 @@ "ID": "ID", "ID cannot contain \":\" or \"|\" characters": "ID 中不允许包含 “:” 或 “|” 字符", "ID copied to clipboard": "已复制 ID 到剪贴板", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "iframe 沙盒允许表单提交", "iframe Sandbox Allow Same Origin": "iframe 沙盒允许同源访问", "Ignite curiosity": "点燃求知", @@ -1182,6 +1198,7 @@ "Max Speakers": "最大扬声器数量", "Max Upload Count": "最大上传数量", "Max Upload Size": "最大上传大小", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "每个分组允许的最大文件数量。", "Maximum number of files per folder is {{max}}.": "每个分组允许的最大文件数量为 {{max}}。", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "最多可同时下载 3 个模型,请稍后重试。", @@ -1213,6 +1230,7 @@ "Microsoft OneDrive": "Microsoft OneDrive", "Microsoft OneDrive (personal)": "Microsoft OneDrive(个人账户)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive(工作或学校账户)", + "min": "", "MinerU": "MinerU", "MinerU API Key required for Cloud API mode.": "使用 MinerU 云服务模式需要接口密钥。", "Mistral OCR": "Mistral OCR", @@ -1318,6 +1336,7 @@ "No kernel": "未找到内核", "No knowledge bases found.": "未找到知识库", "No knowledge found": "未找到知识", + "No limit": "", "No memories to clear": "记忆为空,无须清理", "No model IDs": "没有模型 ID", "No models available": "暂无可用模型", @@ -1390,6 +1409,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "糟糕!您正在使用不受支持的方法(仅运行前端服务)。请通过后端服务提供 WebUI。", "Open file": "打开文件", "Open in full screen": "全屏打开", + "Open in new tab": "", "Open link": "打开链接", "Open modal to configure connection": "打开外部连接配置弹窗", "Open Modal To Manage Floating Quick Actions": "管理快捷操作浮窗", @@ -1450,6 +1470,7 @@ "Perplexity Model": "Perplexity 模型", "Perplexity Search API URL": "Perplexity 搜索接口地址", "Perplexity Search Context Usage": "Perplexity 搜索上下文用量", + "Persistent": "", "Personalization": "个性化", "Pin": "置顶", "Pinned": "已置顶", @@ -1486,6 +1507,7 @@ "Please select a valid JSON file": "请选择合法的 JSON 文件", "Please select at least one user for Direct Message channel.": "请至少选择一个用户以创建私聊频道。", "Please wait until all files are uploaded.": "请等待所有文件上传完毕。", + "Policy ID": "", "Port": "端口", "Ports": "端口", "Positive attitude": "态度积极", @@ -1565,6 +1587,7 @@ "Remove image": "移除图像", "Remove Model": "移除模型", "Rename": "重命名", + "Renamed to {{name}}": "", "Render Markdown in Previews": "在文件和引用预览中渲染 Markdown", "Reorder Models": "重新排序模型", "Reply": "回复", @@ -1629,6 +1652,7 @@ "Search Groups": "搜索权限组", "Search In Models": "搜索模型", "Search Knowledge": "搜索知识", + "Search Memories": "", "Search Models": "搜索模型", "Search Notes": "搜索笔记", "Search options": "搜索选项", @@ -1670,6 +1694,7 @@ "Select a theme": "选择主题", "Select a tool": "选择工具", "Select a voice": "选择声音", + "Select All": "", "Select an auth method": "选择身份验证方式", "Select an embedding model engine": "选择嵌入模型引擎", "Select an engine": "选择引擎", @@ -1698,6 +1723,7 @@ "Serper API Key": "Serper 接口密钥", "Serply API Key": "Serply 接口密钥", "Serpstack API Key": "Serpstack 接口密钥", + "Server connection failed": "", "Server connection verified": "已验证服务器连接", "Session": "用户会话(Session)", "Set as default": "设为默认", @@ -1799,6 +1825,7 @@ "Stop Download": "停止下载", "Stop Generating": "停止生成", "Stop Sequence": "停止序列 (Stop Sequence)", + "Storage": "", "Stream Chat Response": "流式对话响应 (Stream Chat Response)", "Stream Delta Chunk Size": "流式增量输出的分块大小(Stream Delta Chunk Size)", "Streamable HTTP": "流式 HTTP", diff --git a/src/lib/i18n/locales/zh-TW/translation.json b/src/lib/i18n/locales/zh-TW/translation.json index 8fe5bc2c6b..d204371480 100644 --- a/src/lib/i18n/locales/zh-TW/translation.json +++ b/src/lib/i18n/locales/zh-TW/translation.json @@ -17,6 +17,7 @@ "{{COUNT}} members": "{{COUNT}} 位成員", "{{COUNT}} Replies": "{{COUNT}} 回覆", "{{COUNT}} Rows": "{{COUNT}} 行", + "{{count}} selected_other": "", "{{COUNT}} Sources": "{{COUNT}} 個來源", "{{COUNT}} words": "{{COUNT}} 個詞", "{{COUNT}}d_time_ago": "{{COUNT}} 天前", @@ -127,6 +128,7 @@ "Allow File Upload": "允許上傳檔案", "Allow Multiple Models in Chat": "允許在對話中使用多個模型", "Allow non-local voices": "允許非本機語音", + "Allow public write access": "", "Allow Rate Response": "允許為回應評分", "Allow Regenerate Response": "允許重新產生回應", "Allow Sharing With Users": "允許與其他使用者分享", @@ -181,6 +183,8 @@ "Are you sure you want to delete \"{{NAME}}\"?": "您確定要刪除「{{NAME}}」嗎?", "Are you sure you want to delete all chats? This action cannot be undone.": "您確定要刪除所有對話嗎?此操作無法復原。", "Are you sure you want to delete this channel?": "您確定要刪除此頻道嗎?", + "Are you sure you want to delete this connection? This action cannot be undone.": "", + "Are you sure you want to delete this memory? This action cannot be undone.": "", "Are you sure you want to delete this message?": "您確定要刪除此訊息嗎?", "Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "您確定要刪除此版本嗎?子版本將重新連結至上一層版本。", "Are you sure you want to delete this?": "確定要刪除嗎?", @@ -378,6 +382,7 @@ "Configure": "設定", "Confirm": "確認", "Confirm Password": "確認密碼", + "Confirm Prompt from Embed": "", "Confirm your action": "確認您的操作", "Confirm your new password": "確認您的新密碼", "Confirm Your Password": "確認您的密碼", @@ -386,6 +391,7 @@ "Connect to Open Terminal instances. All users will have access to file browsing and terminal tools through these servers.": "連接到 Open Terminal 實例後,所有使用者將可瀏覽伺服器上的檔案,並使用終端工具。", "Connect to your own OpenAI compatible API endpoints.": "連線至您自有或其他與 OpenAI API 相容的端點。", "Connect to your own OpenAPI compatible external tool servers.": "連線至您自有或其他與 OpenAPI 相容的外部工具伺服器。", + "Connected ({{type}})": "", "Connection failed": "連線失敗", "Connection successful": "連線成功", "Connection Type": "連線類型", @@ -426,6 +432,7 @@ "Copying to clipboard was successful!": "成功複製到剪貼簿!", "CORS must be properly configured by the provider to allow requests from Open WebUI.": "CORS 必須由供應商正確設定,以允許來自 Open WebUI 的請求。", "Could not read file.": "無法讀取檔案。", + "CPU": "", "Create": "建立", "Create a knowledge base": "建立知識", "Create a model": "建立模型", @@ -497,6 +504,7 @@ "Delete File": "刪除檔案", "Delete folder?": "刪除資料夾?", "Delete function?": "刪除函式?", + "Delete Memory?": "", "Delete Message": "刪除訊息", "Delete message?": "刪除訊息?", "Delete Model": "刪除模型", @@ -510,6 +518,7 @@ "Deleted": "刪除成功", "Deleted {{deleteModelTag}}": "已刪除 {{deleteModelTag}}", "Deleted {{name}}": "已刪除 {{name}}", + "Deleted {{ok}} of {{total}} items": "", "Deleted User": "已刪除的使用者", "Deployment names are required for Azure OpenAI": "需要提供 Azure OpenAI 部署名稱", "Desc": "降序", @@ -518,6 +527,7 @@ "Describe what changed...": "描述變更內容…", "Describe your knowledge base and objectives": "描述您的知識庫和目標", "Description": "描述", + "Deselect": "", "Detect Artifacts Automatically": "自動偵測對話產物", "Dictate": "語音輸入", "Didn't fully follow instructions": "未完全遵循指示", @@ -780,6 +790,8 @@ "Enter Your Username": "輸入您的使用者名稱", "Enter your webhook URL": "輸入您的 webhook URL", "Entra ID": "Entra ID", + "Environment Variables": "", + "Ephemeral": "", "Error": "錯誤", "ERROR": "錯誤", "Error accessing directory": "存取目錄時發生錯誤", @@ -856,6 +868,7 @@ "Failed to save connections": "儲存連線失敗", "Failed to save conversation": "儲存對話失敗", "Failed to save models configuration": "儲存模型設定失敗", + "Failed to save policy: {{error}}": "", "Failed to save terminal servers": "終端伺服器儲存失敗", "Failed to unshare chat.": "取消分享對話失敗。", "Failed to update settings": "更新設定失敗", @@ -871,6 +884,7 @@ "Feedback History": "回饋歷史", "Feel free to add specific details": "歡迎自由新增特定細節", "Female": "女性", + "Fetch URL Content Length Limit": "", "File": "檔案", "File added successfully.": "成功新增檔案。", "File attached to chat": "檔案已加入對話中", @@ -925,6 +939,7 @@ "Format Lines": "行內容格式化", "Format the lines in the output. Defaults to False. If set to True, the lines will be formatted to detect inline math and styles.": "對輸出中的文字行進行格式處理。預設為 False。設定為 True 時,將會格式化這些文字行,以偵測並識別行內數學公式和樣式。", "Formatting may be inconsistent from source.": "可能與原始格式不完全一致。", + "Forward": "", "Forwards system user OAuth access token to authenticate": "轉發使用者 OAuth 存取權杖(Access Token)以進行驗證", "Forwards system user session credentials to authenticate": "轉發使用者工作階段憑證(Session Credentials)以進行驗證", "Full Context Mode": "完整上下文模式", @@ -1012,6 +1027,7 @@ "ID": "ID", "ID cannot contain \":\" or \"|\" characters": "ID 不能包含 \":\" 或 \"|\" 字元", "ID copied to clipboard": "ID 已複製到剪貼簿", + "Idle Timeout": "", "iframe Sandbox Allow Forms": "iframe 沙盒允許表單", "iframe Sandbox Allow Same Origin": "iframe 沙盒允許同源", "Ignite curiosity": "點燃好奇心", @@ -1182,6 +1198,7 @@ "Max Speakers": "最大發言者數量", "Max Upload Count": "最大上傳數量", "Max Upload Size": "最大上傳大小", + "Maximum characters to return from fetched URLs. Leave empty for no limit.": "", "Maximum number of files allowed per folder.": "每個分組允許的最大檔案數量。", "Maximum number of files per folder is {{max}}.": "每個分組允許的最大檔案數量為 {{max}}。", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "最多同時下載 3 個模型。請稍後再試。", @@ -1213,6 +1230,7 @@ "Microsoft OneDrive": "Microsoft OneDrive", "Microsoft OneDrive (personal)": "Microsoft OneDrive(個人版)", "Microsoft OneDrive (work/school)": "Microsoft OneDrive(公司版/學校版)", + "min": "", "MinerU": "MinerU", "MinerU API Key required for Cloud API mode.": "使用 MinerU 雲端服務模式需要 API 金鑰。", "Mistral OCR": "Mistral OCR", @@ -1318,6 +1336,7 @@ "No kernel": "無核心", "No knowledge bases found.": "未找到知識庫", "No knowledge found": "未找到知識", + "No limit": "", "No memories to clear": "沒有記憶可清除", "No model IDs": "沒有模型 ID", "No models available": "暫無可用模型", @@ -1390,6 +1409,7 @@ "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "哎呀!您使用了不支援的方法(僅限前端)。請從後端提供 WebUI。", "Open file": "開啟檔案", "Open in full screen": "全螢幕開啟", + "Open in new tab": "", "Open link": "開啟連結", "Open modal to configure connection": "開啟外部連線設定彈出視窗", "Open Modal To Manage Floating Quick Actions": "開啟管理浮動快速操作的彈出視窗", @@ -1450,6 +1470,7 @@ "Perplexity Model": "Perplexity 模型", "Perplexity Search API URL": "Perplexity 搜尋 API URL", "Perplexity Search Context Usage": "Perplexity 搜尋上下文使用量", + "Persistent": "", "Personalization": "個人化", "Pin": "釘選", "Pinned": "已釘選", @@ -1486,6 +1507,7 @@ "Please select a valid JSON file": "請選擇有效的 JSON 檔案", "Please select at least one user for Direct Message channel.": "請至少選擇一位使用者以建立直接訊息頻道。", "Please wait until all files are uploaded.": "請等待所有檔案上傳完畢。", + "Policy ID": "", "Port": "連接埠", "Ports": "連接埠", "Positive attitude": "積極的態度", @@ -1565,6 +1587,7 @@ "Remove image": "移除圖片", "Remove Model": "移除模型", "Rename": "重新命名", + "Renamed to {{name}}": "", "Render Markdown in Previews": "在檔案與引用預覽中轉譯 Markdown", "Reorder Models": "重新排序模型", "Reply": "回覆", @@ -1629,6 +1652,7 @@ "Search Groups": "搜尋權限群組", "Search In Models": "在模型中搜尋", "Search Knowledge": "搜尋知識庫", + "Search Memories": "", "Search Models": "搜尋模型", "Search Notes": "搜尋筆記", "Search options": "搜尋選項", @@ -1670,6 +1694,7 @@ "Select a theme": "選擇主題", "Select a tool": "選擇工具", "Select a voice": "選擇語音", + "Select All": "", "Select an auth method": "選擇驗證方式", "Select an embedding model engine": "選擇嵌入模型引擎", "Select an engine": "選擇引擎", @@ -1698,6 +1723,7 @@ "Serper API Key": "Serper API 金鑰", "Serply API Key": "Serply API 金鑰", "Serpstack API Key": "Serpstack API 金鑰", + "Server connection failed": "", "Server connection verified": "伺服器連線已驗證", "Session": "Session", "Set as default": "設為預設", @@ -1799,6 +1825,7 @@ "Stop Download": "停止下載", "Stop Generating": "停止產生", "Stop Sequence": "停止序列", + "Storage": "", "Stream Chat Response": "串流式對話回應", "Stream Delta Chunk Size": "串流增量輸出的分塊大小(Stream Delta Chunk Size)", "Streamable HTTP": "串流 HTTP",