From 48d1e67e798b11ef500042a68653fcb06262bfc1 Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Sun, 23 Nov 2025 20:15:52 -0500 Subject: [PATCH] chore: format --- backend/open_webui/retrieval/utils.py | 6 +- .../retrieval/vector/dbs/weaviate.py | 137 +- backend/open_webui/routers/audio.py | 8 +- backend/open_webui/routers/memories.py | 18 +- backend/open_webui/routers/ollama.py | 1 - backend/open_webui/routers/retrieval.py | 12 +- package-lock.json | 4 +- package.json | 2 +- .../components/admin/Settings/General.svelte | 2 +- src/lib/components/layout/ChatsModal.svelte | 20 +- src/lib/components/layout/SearchModal.svelte | 18 +- src/lib/dayjs.js | 2 +- src/lib/i18n/locales/ar-BH/translation.json | 16 + src/lib/i18n/locales/ar/translation.json | 16 + src/lib/i18n/locales/bg-BG/translation.json | 16 + src/lib/i18n/locales/bn-BD/translation.json | 16 + src/lib/i18n/locales/bo-TB/translation.json | 16 + src/lib/i18n/locales/bs-BA/translation.json | 16 + src/lib/i18n/locales/ca-ES/translation.json | 16 + src/lib/i18n/locales/ceb-PH/translation.json | 16 + src/lib/i18n/locales/cs-CZ/translation.json | 16 + src/lib/i18n/locales/da-DK/translation.json | 16 + src/lib/i18n/locales/de-DE/translation.json | 16 + src/lib/i18n/locales/dg-DG/translation.json | 16 + src/lib/i18n/locales/el-GR/translation.json | 16 + src/lib/i18n/locales/en-GB/translation.json | 16 + src/lib/i18n/locales/en-US/translation.json | 16 + src/lib/i18n/locales/es-ES/translation.json | 16 + src/lib/i18n/locales/et-EE/translation.json | 16 + src/lib/i18n/locales/eu-ES/translation.json | 16 + src/lib/i18n/locales/fa-IR/translation.json | 16 + src/lib/i18n/locales/fi-FI/translation.json | 16 + src/lib/i18n/locales/fr-CA/translation.json | 16 + src/lib/i18n/locales/fr-FR/translation.json | 16 + src/lib/i18n/locales/gl-ES/translation.json | 16 + src/lib/i18n/locales/he-IL/translation.json | 16 + src/lib/i18n/locales/hi-IN/translation.json | 16 + src/lib/i18n/locales/hr-HR/translation.json | 16 + src/lib/i18n/locales/hu-HU/translation.json | 16 + src/lib/i18n/locales/id-ID/translation.json | 16 + src/lib/i18n/locales/ie-GA/translation.json | 16 + src/lib/i18n/locales/it-IT/translation.json | 16 + src/lib/i18n/locales/ja-JP/translation.json | 16 + src/lib/i18n/locales/ka-GE/translation.json | 16 + src/lib/i18n/locales/kab-DZ/translation.json | 16 + src/lib/i18n/locales/ko-KR/translation.json | 16 + src/lib/i18n/locales/lt-LT/translation.json | 16 + src/lib/i18n/locales/ms-MY/translation.json | 16 + src/lib/i18n/locales/nb-NO/translation.json | 16 + src/lib/i18n/locales/nl-NL/translation.json | 16 + src/lib/i18n/locales/pa-IN/translation.json | 16 + src/lib/i18n/locales/pl-PL/translation.json | 16 + src/lib/i18n/locales/pt-BR/translation.json | 17 +- src/lib/i18n/locales/pt-PT/translation.json | 16 + src/lib/i18n/locales/ro-RO/translation.json | 16 + src/lib/i18n/locales/ru-RU/translation.json | 16 + src/lib/i18n/locales/sk-SK/translation.json | 16 + src/lib/i18n/locales/sr-RS/translation.json | 16 + src/lib/i18n/locales/sv-SE/translation.json | 16 + src/lib/i18n/locales/th-TH/translation.json | 3575 +++++++++-------- src/lib/i18n/locales/tk-TM/translation.json | 16 + src/lib/i18n/locales/tr-TR/translation.json | 16 + src/lib/i18n/locales/ug-CN/translation.json | 16 + src/lib/i18n/locales/uk-UA/translation.json | 16 + src/lib/i18n/locales/ur-PK/translation.json | 16 + .../i18n/locales/uz-Cyrl-UZ/translation.json | 16 + .../i18n/locales/uz-Latn-Uz/translation.json | 16 + src/lib/i18n/locales/vi-VN/translation.json | 16 + src/lib/i18n/locales/zh-CN/translation.json | 3 + src/lib/i18n/locales/zh-TW/translation.json | 3 + 70 files changed, 2828 insertions(+), 1864 deletions(-) diff --git a/backend/open_webui/retrieval/utils.py b/backend/open_webui/retrieval/utils.py index 3a01a002b5..0587317bf6 100644 --- a/backend/open_webui/retrieval/utils.py +++ b/backend/open_webui/retrieval/utils.py @@ -540,7 +540,7 @@ def generate_openai_batch_embeddings( } if ENABLE_FORWARD_USER_INFO_HEADERS and user: headers = include_user_info_headers(headers, user) - + r = requests.post( f"{url}/embeddings", headers=headers, @@ -621,7 +621,7 @@ def generate_azure_openai_batch_embeddings( } if ENABLE_FORWARD_USER_INFO_HEADERS and user: headers = include_user_info_headers(headers, user) - + r = requests.post( url, headers=headers, @@ -704,7 +704,7 @@ def generate_ollama_batch_embeddings( } if ENABLE_FORWARD_USER_INFO_HEADERS and user: headers = include_user_info_headers(headers, user) - + r = requests.post( f"{url}/api/embed", headers=headers, diff --git a/backend/open_webui/retrieval/vector/dbs/weaviate.py b/backend/open_webui/retrieval/vector/dbs/weaviate.py index b90d24b499..6bb8a1ecb4 100644 --- a/backend/open_webui/retrieval/vector/dbs/weaviate.py +++ b/backend/open_webui/retrieval/vector/dbs/weaviate.py @@ -10,22 +10,27 @@ from open_webui.retrieval.vector.main import ( GetResult, ) from open_webui.retrieval.vector.utils import process_metadata -from open_webui.config import WEAVIATE_HTTP_HOST, WEAVIATE_HTTP_PORT, WEAVIATE_GRPC_PORT, WEAVIATE_API_KEY +from open_webui.config import ( + WEAVIATE_HTTP_HOST, + WEAVIATE_HTTP_PORT, + WEAVIATE_GRPC_PORT, + WEAVIATE_API_KEY, +) def _convert_uuids_to_strings(obj: Any) -> Any: """ Recursively convert UUID objects to strings in nested data structures. - + This function handles: - UUID objects -> string - Dictionaries with UUID values - Lists/Tuples with UUID values - Nested combinations of the above - + Args: obj: Any object that might contain UUIDs - + Returns: The same object structure with UUIDs converted to strings """ @@ -41,23 +46,23 @@ def _convert_uuids_to_strings(obj: Any) -> Any: return obj - - class WeaviateClient(VectorDBBase): def __init__(self): self.url = WEAVIATE_HTTP_HOST try: - # Build connection parameters + # Build connection parameters connection_params = { "host": WEAVIATE_HTTP_HOST, "port": WEAVIATE_HTTP_PORT, "grpc_port": WEAVIATE_GRPC_PORT, } - + # Only add auth_credentials if WEAVIATE_API_KEY exists and is not empty if WEAVIATE_API_KEY: - connection_params["auth_credentials"] = weaviate.classes.init.Auth.api_key(WEAVIATE_API_KEY) - + connection_params["auth_credentials"] = ( + weaviate.classes.init.Auth.api_key(WEAVIATE_API_KEY) + ) + self.client = weaviate.connect_to_local(**connection_params) self.client.connect() except Exception as e: @@ -73,16 +78,18 @@ class WeaviateClient(VectorDBBase): # The name can only contain letters, numbers, and the underscore (_) character. Spaces are not allowed. # Replace hyphens with underscores and keep only alphanumeric characters - name = re.sub(r'[^a-zA-Z0-9_]', '', collection_name.replace("-", "_")) + name = re.sub(r"[^a-zA-Z0-9_]", "", collection_name.replace("-", "_")) name = name.strip("_") if not name: - raise ValueError("Could not sanitize collection name to be a valid Weaviate class name") + raise ValueError( + "Could not sanitize collection name to be a valid Weaviate class name" + ) # Ensure it starts with a letter and is capitalized if not name[0].isalpha(): name = "C" + name - + return name[0].upper() + name[1:] def has_collection(self, collection_name: str) -> bool: @@ -99,8 +106,10 @@ class WeaviateClient(VectorDBBase): name=collection_name, vector_config=weaviate.classes.config.Configure.Vectors.self_provided(), properties=[ - weaviate.classes.config.Property(name="text", data_type=weaviate.classes.config.DataType.TEXT), - ] + weaviate.classes.config.Property( + name="text", data_type=weaviate.classes.config.DataType.TEXT + ), + ], ) def insert(self, collection_name: str, items: List[VectorItem]) -> None: @@ -109,21 +118,21 @@ class WeaviateClient(VectorDBBase): self._create_collection(sane_collection_name) collection = self.client.collections.get(sane_collection_name) - + with collection.batch.fixed_size(batch_size=100) as batch: for item in items: item_uuid = str(uuid.uuid4()) if not item["id"] else str(item["id"]) - + properties = {"text": item["text"]} if item["metadata"]: - clean_metadata = _convert_uuids_to_strings(process_metadata(item["metadata"])) + clean_metadata = _convert_uuids_to_strings( + process_metadata(item["metadata"]) + ) clean_metadata.pop("text", None) properties.update(clean_metadata) - + batch.add_object( - properties=properties, - uuid=item_uuid, - vector=item["vector"] + properties=properties, uuid=item_uuid, vector=item["vector"] ) def upsert(self, collection_name: str, items: List[VectorItem]) -> None: @@ -132,21 +141,21 @@ class WeaviateClient(VectorDBBase): self._create_collection(sane_collection_name) collection = self.client.collections.get(sane_collection_name) - + with collection.batch.fixed_size(batch_size=100) as batch: for item in items: item_uuid = str(item["id"]) if item["id"] else None - + properties = {"text": item["text"]} if item["metadata"]: - clean_metadata = _convert_uuids_to_strings(process_metadata(item["metadata"])) + clean_metadata = _convert_uuids_to_strings( + process_metadata(item["metadata"]) + ) clean_metadata.pop("text", None) properties.update(clean_metadata) - + batch.add_object( - properties=properties, - uuid=item_uuid, - vector=item["vector"] + properties=properties, uuid=item_uuid, vector=item["vector"] ) def search( @@ -157,9 +166,14 @@ class WeaviateClient(VectorDBBase): return None collection = self.client.collections.get(sane_collection_name) - - result_ids, result_documents, result_metadatas, result_distances = [], [], [], [] - + + result_ids, result_documents, result_metadatas, result_distances = ( + [], + [], + [], + [], + ) + for vector_embedding in vectors: try: response = collection.query.near_vector( @@ -167,21 +181,28 @@ class WeaviateClient(VectorDBBase): limit=limit, return_metadata=weaviate.classes.query.MetadataQuery(distance=True), ) - + ids = [str(obj.uuid) for obj in response.objects] documents = [] metadatas = [] distances = [] - + for obj in response.objects: properties = dict(obj.properties) if obj.properties else {} documents.append(properties.pop("text", "")) metadatas.append(_convert_uuids_to_strings(properties)) - + # Weaviate has cosine distance, 2 (worst) -> 0 (best). Re-ordering to 0 -> 1 - raw_distances = [obj.metadata.distance if obj.metadata and obj.metadata.distance else 2.0 for obj in response.objects] + raw_distances = [ + ( + obj.metadata.distance + if obj.metadata and obj.metadata.distance + else 2.0 + ) + for obj in response.objects + ] distances = [(2 - dist) / 2 for dist in raw_distances] - + result_ids.append(ids) result_documents.append(documents) result_metadatas.append(metadatas) @@ -191,7 +212,7 @@ class WeaviateClient(VectorDBBase): result_documents.append([]) result_metadatas.append([]) result_distances.append([]) - + return SearchResult( **{ "ids": result_ids, @@ -209,16 +230,26 @@ class WeaviateClient(VectorDBBase): return None collection = self.client.collections.get(sane_collection_name) - + weaviate_filter = None if filter: for key, value in filter.items(): - prop_filter = weaviate.classes.query.Filter.by_property(name=key).equal(value) - weaviate_filter = prop_filter if weaviate_filter is None else weaviate.classes.query.Filter.all_of([weaviate_filter, prop_filter]) - + prop_filter = weaviate.classes.query.Filter.by_property(name=key).equal( + value + ) + weaviate_filter = ( + prop_filter + if weaviate_filter is None + else weaviate.classes.query.Filter.all_of( + [weaviate_filter, prop_filter] + ) + ) + try: - response = collection.query.fetch_objects(filters=weaviate_filter, limit=limit) - + response = collection.query.fetch_objects( + filters=weaviate_filter, limit=limit + ) + ids = [str(obj.uuid) for obj in response.objects] documents = [] metadatas = [] @@ -252,10 +283,10 @@ class WeaviateClient(VectorDBBase): properties = dict(item.properties) if item.properties else {} documents.append(properties.pop("text", "")) metadatas.append(_convert_uuids_to_strings(properties)) - + if not ids: return None - + return GetResult( **{ "ids": [ids], @@ -285,9 +316,17 @@ class WeaviateClient(VectorDBBase): elif filter: weaviate_filter = None for key, value in filter.items(): - prop_filter = weaviate.classes.query.Filter.by_property(name=key).equal(value) - weaviate_filter = prop_filter if weaviate_filter is None else weaviate.classes.query.Filter.all_of([weaviate_filter, prop_filter]) - + prop_filter = weaviate.classes.query.Filter.by_property( + name=key + ).equal(value) + weaviate_filter = ( + prop_filter + if weaviate_filter is None + else weaviate.classes.query.Filter.all_of( + [weaviate_filter, prop_filter] + ) + ) + if weaviate_filter: collection.data.delete_many(where=weaviate_filter) except Exception: diff --git a/backend/open_webui/routers/audio.py b/backend/open_webui/routers/audio.py index db7861d333..9c84f9c704 100644 --- a/backend/open_webui/routers/audio.py +++ b/backend/open_webui/routers/audio.py @@ -1025,7 +1025,9 @@ def transcription_handler(request, file_path, metadata, user=None): ) -def transcribe(request: Request, file_path: str, metadata: Optional[dict] = None, user=None): +def transcribe( + request: Request, file_path: str, metadata: Optional[dict] = None, user=None +): log.info(f"transcribe: {file_path} {metadata}") if is_audio_conversion_required(file_path): @@ -1052,7 +1054,9 @@ def transcribe(request: Request, file_path: str, metadata: Optional[dict] = None with ThreadPoolExecutor() as executor: # Submit tasks for each chunk_path futures = [ - executor.submit(transcription_handler, request, chunk_path, metadata, user) + executor.submit( + transcription_handler, request, chunk_path, metadata, user + ) for chunk_path in chunk_paths ] # Gather results as they complete diff --git a/backend/open_webui/routers/memories.py b/backend/open_webui/routers/memories.py index fb2a3a0bfd..8e45a14dfb 100644 --- a/backend/open_webui/routers/memories.py +++ b/backend/open_webui/routers/memories.py @@ -52,9 +52,7 @@ async def add_memory( ): memory = Memories.insert_new_memory(user.id, form_data.content) - vector = await request.app.state.EMBEDDING_FUNCTION( - memory.content, user=user - ) + vector = await request.app.state.EMBEDDING_FUNCTION(memory.content, user=user) VECTOR_DB_CLIENT.upsert( collection_name=f"user-memory-{user.id}", @@ -112,10 +110,12 @@ async def reset_memory_from_vector_db( memories = Memories.get_memories_by_user_id(user.id) # Generate vectors in parallel - vectors = await asyncio.gather(*[ - request.app.state.EMBEDDING_FUNCTION(memory.content, user=user) - for memory in memories - ]) + vectors = await asyncio.gather( + *[ + request.app.state.EMBEDDING_FUNCTION(memory.content, user=user) + for memory in memories + ] + ) VECTOR_DB_CLIENT.upsert( collection_name=f"user-memory-{user.id}", @@ -174,9 +174,7 @@ async def update_memory_by_id( raise HTTPException(status_code=404, detail="Memory not found") if form_data.content is not None: - vector = await request.app.state.EMBEDDING_FUNCTION( - memory.content, user=user - ) + vector = await request.app.state.EMBEDDING_FUNCTION(memory.content, user=user) VECTOR_DB_CLIENT.upsert( collection_name=f"user-memory-{user.id}", diff --git a/backend/open_webui/routers/ollama.py b/backend/open_webui/routers/ollama.py index 85cfee6ff4..9606763b00 100644 --- a/backend/open_webui/routers/ollama.py +++ b/backend/open_webui/routers/ollama.py @@ -53,7 +53,6 @@ from open_webui.utils.auth import get_admin_user, get_verified_user from open_webui.utils.access_control import has_access - from open_webui.config import ( UPLOAD_DIR, ) diff --git a/backend/open_webui/routers/retrieval.py b/backend/open_webui/routers/retrieval.py index 28d9d11b16..358b8aca49 100644 --- a/backend/open_webui/routers/retrieval.py +++ b/backend/open_webui/routers/retrieval.py @@ -1468,11 +1468,13 @@ def save_docs_to_vector_db( ) # Run async embedding in sync context - embeddings = asyncio.run(embedding_function( - list(map(lambda x: x.replace("\n", " "), texts)), - prefix=RAG_EMBEDDING_CONTENT_PREFIX, - user=user, - )) + embeddings = asyncio.run( + embedding_function( + list(map(lambda x: x.replace("\n", " "), texts)), + prefix=RAG_EMBEDDING_CONTENT_PREFIX, + user=user, + ) + ) log.info(f"embeddings generated {len(embeddings)} for {len(texts)} items") items = [ diff --git a/package-lock.json b/package-lock.json index c86757e9a5..19e4faca55 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "open-webui", - "version": "0.6.36", + "version": "0.6.37", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "open-webui", - "version": "0.6.36", + "version": "0.6.37", "dependencies": { "@azure/msal-browser": "^4.5.0", "@codemirror/lang-javascript": "^6.2.2", diff --git a/package.json b/package.json index 9065bda0ce..7b87463aef 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "open-webui", - "version": "0.6.36", + "version": "0.6.37", "private": true, "scripts": { "dev": "npm run pyodide:fetch && vite dev --host", diff --git a/src/lib/components/admin/Settings/General.svelte b/src/lib/components/admin/Settings/General.svelte index 288ca28e63..a7b62857c0 100644 --- a/src/lib/components/admin/Settings/General.svelte +++ b/src/lib/components/admin/Settings/General.svelte @@ -312,7 +312,7 @@ bind:value={adminConfig.DEFAULT_GROUP_ID} placeholder={$i18n.t('Select a group')} > - + {#each groups as group} {/each} diff --git a/src/lib/components/layout/ChatsModal.svelte b/src/lib/components/layout/ChatsModal.svelte index cb8c99e423..6020a0d428 100644 --- a/src/lib/components/layout/ChatsModal.svelte +++ b/src/lib/components/layout/ChatsModal.svelte @@ -4,7 +4,7 @@ import dayjs from 'dayjs'; import localizedFormat from 'dayjs/plugin/localizedFormat'; - import calendar from 'dayjs/plugin/calendar' + import calendar from 'dayjs/plugin/calendar'; dayjs.extend(localizedFormat); dayjs.extend(calendar); @@ -244,14 +244,16 @@
diff --git a/src/lib/components/layout/SearchModal.svelte b/src/lib/components/layout/SearchModal.svelte index 0311cfbaf6..eb0e894649 100644 --- a/src/lib/components/layout/SearchModal.svelte +++ b/src/lib/components/layout/SearchModal.svelte @@ -389,14 +389,16 @@
- {$i18n.t(dayjs(chat?.updated_at * 1000).calendar(null, { - sameDay: '[Today]', - nextDay: '[Tomorrow]', - nextWeek: 'dddd', - lastDay: '[Yesterday]', - lastWeek: '[Last] dddd', - sameElse: 'L' // use localized format, otherwise dayjs.calendar() defaults to DD/MM/YYYY - }))} + {$i18n.t( + dayjs(chat?.updated_at * 1000).calendar(null, { + sameDay: '[Today]', + nextDay: '[Tomorrow]', + nextWeek: 'dddd', + lastDay: '[Yesterday]', + lastWeek: '[Last] dddd', + sameElse: 'L' // use localized format, otherwise dayjs.calendar() defaults to DD/MM/YYYY + }) + )}
{/each} diff --git a/src/lib/dayjs.js b/src/lib/dayjs.js index cb1373e138..916c7cd5f9 100644 --- a/src/lib/dayjs.js +++ b/src/lib/dayjs.js @@ -101,6 +101,6 @@ import 'dayjs/locale/yo'; import 'dayjs/locale/zh'; import 'dayjs/locale/zh-tw'; import 'dayjs/locale/et'; -import 'dayjs/locale/en-gb' +import 'dayjs/locale/en-gb'; export default dayjs; diff --git a/src/lib/i18n/locales/ar-BH/translation.json b/src/lib/i18n/locales/ar-BH/translation.json index d18e9b0fdc..b0252bd021 100644 --- a/src/lib/i18n/locales/ar-BH/translation.json +++ b/src/lib/i18n/locales/ar-BH/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "", "Allow Rate Response": "", @@ -144,6 +145,7 @@ "Archived Chats": "الأرشيف المحادثات", "archived-chat-export": "", "Are you sure you want to clear all memories? This action cannot be undone.": "", + "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete this channel?": "", "Are you sure you want to delete this message?": "", "Are you sure you want to unarchive all archived chats?": "", @@ -388,12 +390,14 @@ "Default description enabled": "", "Default Features": "", "Default Filters": "", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "النموذج الافتراضي", "Default model updated": "الإفتراضي تحديث الموديل", "Default Models": "", "Default permissions": "", "Default permissions updated successfully": "", + "Default Pinned Models": "", "Default Prompt Suggestions": "الإفتراضي Prompt الاقتراحات", "Default to 389 or 636 if TLS is enabled": "", "Default to ALL": "", @@ -402,6 +406,7 @@ "Delete": "حذف", "Delete a model": "حذف الموديل", "Delete All Chats": "حذف جميع الدردشات", + "Delete all contents inside this folder": "", "Delete All Models": "", "Delete Chat": "حذف المحادثه.", "Delete chat?": "", @@ -730,6 +735,7 @@ "Features": "", "Features Permissions": "", "February": "فبراير", + "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "", "Feedbacks": "", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "", "File Upload": "", "File uploaded successfully": "", + "File uploaded!": "", "Files": "", "Filter": "", "Filter is now globally disabled": "", @@ -857,6 +864,7 @@ "Image Compression": "", "Image Compression Height": "", "Image Compression Width": "", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "", "Image Generation Engine": "محرك توليد الصور", @@ -941,6 +949,7 @@ "Knowledge Name": "", "Knowledge Public Sharing": "", "Knowledge reset successfully.": "", + "Knowledge Sharing": "", "Knowledge updated successfully": "", "Kokoro.js (Browser)": "", "Kokoro.js Dtype": "", @@ -1006,6 +1015,7 @@ "Max Upload Size": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "يمكن تنزيل 3 نماذج كحد أقصى في وقت واحد. الرجاء معاودة المحاولة في وقت لاحق.", "May": "مايو", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "", "Models imported successfully": "", "Models Public Sharing": "", + "Models Sharing": "", "Mojeek Search API Key": "", "More": "المزيد", "More Concise": "", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "ملاحظة: إذا قمت بتعيين الحد الأدنى من النقاط، فلن يؤدي البحث إلا إلى إرجاع المستندات التي لها نقاط أكبر من أو تساوي الحد الأدنى من النقاط.", "Notes": "", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "", "Notification Webhook": "", "Notifications": "إشعارات", @@ -1274,6 +1286,7 @@ "Prompts": "مطالبات", "Prompts Access": "", "Prompts Public Sharing": "", + "Prompts Sharing": "", "Provider Type": "", "Public": "", "Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com \"{{searchValue}}\" أسحب من ", @@ -1461,6 +1474,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "", "Sets the size of the context window used to generate the next token.": "", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "", + "Setting": "", "Settings": "الاعدادات", "Settings saved successfully!": "تم حفظ الاعدادات بنجاح", "Share": "كشاركة", @@ -1641,6 +1655,7 @@ "Tools Function Calling Prompt": "", "Tools have a function calling system that allows arbitrary code execution.": "", "Tools Public Sharing": "", + "Tools Sharing": "", "Top K": "Top K", "Top K Reranker": "", "Transformers": "", @@ -1688,6 +1703,7 @@ "Upload Pipeline": "", "Upload Progress": "جاري التحميل", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploading file...": "", "URL": "", "URL is required": "", "URL Mode": "رابط الموديل", diff --git a/src/lib/i18n/locales/ar/translation.json b/src/lib/i18n/locales/ar/translation.json index 1cfd1d4f71..f27beb06fd 100644 --- a/src/lib/i18n/locales/ar/translation.json +++ b/src/lib/i18n/locales/ar/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "السماح بتحميل الملفات", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "السماح بالأصوات غير المحلية", "Allow Rate Response": "", @@ -144,6 +145,7 @@ "Archived Chats": "المحادثات المؤرشفة", "archived-chat-export": "تصدير المحادثات المؤرشفة", "Are you sure you want to clear all memories? This action cannot be undone.": "هل أنت متأكد من رغبتك في مسح جميع الذكريات؟ لا يمكن التراجع عن هذا الإجراء.", + "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete this channel?": "هل أنت متأكد من رغبتك في حذف هذه القناة؟", "Are you sure you want to delete this message?": "هل أنت متأكد من رغبتك في حذف هذه الرسالة؟", "Are you sure you want to unarchive all archived chats?": "هل أنت متأكد من رغبتك في إلغاء أرشفة جميع المحادثات المؤرشفة؟", @@ -388,12 +390,14 @@ "Default description enabled": "", "Default Features": "", "Default Filters": "", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "الوضع الافتراضي يعمل مع مجموعة أوسع من النماذج من خلال استدعاء الأدوات مرة واحدة قبل التنفيذ. أما الوضع الأصلي فيستخدم قدرات استدعاء الأدوات المدمجة في النموذج، لكنه يتطلب دعمًا داخليًا لهذه الميزة.", "Default Model": "النموذج الافتراضي", "Default model updated": "الإفتراضي تحديث الموديل", "Default Models": "النماذج الافتراضية", "Default permissions": "الأذونات الافتراضية", "Default permissions updated successfully": "تم تحديث الأذونات الافتراضية بنجاح", + "Default Pinned Models": "", "Default Prompt Suggestions": "الإفتراضي Prompt الاقتراحات", "Default to 389 or 636 if TLS is enabled": "الافتراضي هو 389 أو 636 إذا تم تمكين TLS", "Default to ALL": "الافتراضي هو الكل", @@ -402,6 +406,7 @@ "Delete": "حذف", "Delete a model": "حذف الموديل", "Delete All Chats": "حذف جميع الدردشات", + "Delete all contents inside this folder": "", "Delete All Models": "حذف جميع النماذج", "Delete Chat": "حذف المحادثه.", "Delete chat?": "هل تريد حذف المحادثة؟", @@ -730,6 +735,7 @@ "Features": "الميزات", "Features Permissions": "أذونات الميزات", "February": "فبراير", + "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "سجل الملاحظات", "Feedbacks": "الملاحظات", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "يجب ألا يتجاوز حجم الملف {{maxSize}} ميغابايت.", "File Upload": "", "File uploaded successfully": "تم رفع الملف بنجاح", + "File uploaded!": "", "Files": "الملفات", "Filter": "", "Filter is now globally disabled": "تم الآن تعطيل الفلتر على مستوى النظام", @@ -857,6 +864,7 @@ "Image Compression": "ضغط الصور", "Image Compression Height": "", "Image Compression Width": "", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "توليد الصور", "Image Generation Engine": "محرك توليد الصور", @@ -941,6 +949,7 @@ "Knowledge Name": "", "Knowledge Public Sharing": "", "Knowledge reset successfully.": "تم إعادة تعيين المعرفة بنجاح.", + "Knowledge Sharing": "", "Knowledge updated successfully": "تم تحديث المعرفة بنجاح", "Kokoro.js (Browser)": "Kokoro.js (المتصفح)", "Kokoro.js Dtype": "نوع بيانات Kokoro.js", @@ -1006,6 +1015,7 @@ "Max Upload Size": "الحد الأقصى لحجم الملف المرفوع", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "يمكن تنزيل 3 نماذج كحد أقصى في وقت واحد. الرجاء معاودة المحاولة في وقت لاحق.", "May": "مايو", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "تم حفظ إعدادات النماذج بنجاح", "Models imported successfully": "", "Models Public Sharing": "", + "Models Sharing": "", "Mojeek Search API Key": "مفتاح API لـ Mojeek Search", "More": "المزيد", "More Concise": "", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "ملاحظة: إذا قمت بتعيين الحد الأدنى من النقاط، فلن يؤدي البحث إلا إلى إرجاع المستندات التي لها نقاط أكبر من أو تساوي الحد الأدنى من النقاط.", "Notes": "ملاحظات", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "صوت الإشعارات", "Notification Webhook": "رابط Webhook للإشعارات", "Notifications": "إشعارات", @@ -1274,6 +1286,7 @@ "Prompts": "مطالبات", "Prompts Access": "الوصول إلى التوجيهات", "Prompts Public Sharing": "", + "Prompts Sharing": "", "Provider Type": "", "Public": "", "Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com \"{{searchValue}}\" أسحب من ", @@ -1461,6 +1474,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "يحدد البذرة العشوائية لاستخدامها في التوليد. تعيين قيمة معينة يجعل النموذج ينتج نفس النص لنفس التوجيه.", "Sets the size of the context window used to generate the next token.": "يحدد حجم نافذة السياق المستخدمة لتوليد الرمز التالي.", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "يحدد تسلسلات الإيقاف. عند مواجهتها، سيتوقف النموذج عن التوليد ويُرجع النتيجة. يمكن تحديد أنماط توقف متعددة داخل ملف النموذج.", + "Setting": "", "Settings": "الاعدادات", "Settings saved successfully!": "تم حفظ الاعدادات بنجاح", "Share": "كشاركة", @@ -1641,6 +1655,7 @@ "Tools Function Calling Prompt": "توجيه استدعاء وظائف الأدوات", "Tools have a function calling system that allows arbitrary code execution.": "تحتوي الأدوات على نظام لاستدعاء الوظائف يتيح تنفيذ كود برمجي مخصص.", "Tools Public Sharing": "", + "Tools Sharing": "", "Top K": "Top K", "Top K Reranker": "", "Transformers": "Transformers", @@ -1688,6 +1703,7 @@ "Upload Pipeline": "رفع خط المعالجة", "Upload Progress": "جاري التحميل", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploading file...": "", "URL": "الرابط", "URL is required": "", "URL Mode": "رابط الموديل", diff --git a/src/lib/i18n/locales/bg-BG/translation.json b/src/lib/i18n/locales/bg-BG/translation.json index 761fd1d606..930b9d5ff4 100644 --- a/src/lib/i18n/locales/bg-BG/translation.json +++ b/src/lib/i18n/locales/bg-BG/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "Разреши качване на файлове", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Разреши нелокални гласове", "Allow Rate Response": "", @@ -144,6 +145,7 @@ "Archived Chats": "Архивирани Чатове", "archived-chat-export": "експорт-на-архивирани-чатове", "Are you sure you want to clear all memories? This action cannot be undone.": "Сигурни ли сте, че исткате да изчистите всички спомени? Това е необратимо.", + "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete this channel?": "Сигурни ли сте, че искате да изтриете този канал?", "Are you sure you want to delete this message?": "Сигурни ли сте, че искате да изтриете това съобщение?", "Are you sure you want to unarchive all archived chats?": "Сигурни ли сте, че искате да разархивирате всички архивирани чатове?", @@ -388,12 +390,14 @@ "Default description enabled": "", "Default Features": "", "Default Filters": "", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Режимът по подразбиране работи с по-широк набор от модели, като извиква инструменти веднъж преди изпълнение. Нативният режим използва вградените възможности за извикване на инструменти на модела, но изисква моделът да поддържа тази функция по същество.", "Default Model": "Модел по подразбиране", "Default model updated": "Моделът по подразбиране е обновен", "Default Models": "Модели по подразбиране", "Default permissions": "Разрешения по подразбиране", "Default permissions updated successfully": "Разрешенията по подразбиране са успешно актуализирани", + "Default Pinned Models": "", "Default Prompt Suggestions": "Промпт Предложения по подразбиране", "Default to 389 or 636 if TLS is enabled": "По подразбиране 389 или 636, ако TLS е активиран", "Default to ALL": "По подразбиране за ВСИЧКИ", @@ -402,6 +406,7 @@ "Delete": "Изтриване", "Delete a model": "Изтриване на модела", "Delete All Chats": "Изтриване на всички чатове", + "Delete all contents inside this folder": "", "Delete All Models": "Изтриване на всички модели", "Delete Chat": "Изтриване на Чат", "Delete chat?": "Изтриване на чата?", @@ -730,6 +735,7 @@ "Features": "Функции", "Features Permissions": "Разрешения за функции", "February": "Февруари", + "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "История на обратната връзка", "Feedbacks": "Обратни връзки", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "Размерът на файла не трябва да надвишава {{maxSize}} MB.", "File Upload": "", "File uploaded successfully": "Файлът е качен успешно", + "File uploaded!": "", "Files": "Файлове", "Filter": "", "Filter is now globally disabled": "Филтърът вече е глобално деактивиран", @@ -857,6 +864,7 @@ "Image Compression": "Компресия на изображенията", "Image Compression Height": "", "Image Compression Width": "", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "Генериране на изображения", "Image Generation Engine": "Двигател за генериране на изображения", @@ -941,6 +949,7 @@ "Knowledge Name": "", "Knowledge Public Sharing": "", "Knowledge reset successfully.": "Знанието е нулирано успешно.", + "Knowledge Sharing": "", "Knowledge updated successfully": "Знанието е актуализирано успешно", "Kokoro.js (Browser)": "Kokoro.js (Браузър)", "Kokoro.js Dtype": "Kokoro.js Dtype", @@ -1006,6 +1015,7 @@ "Max Upload Size": "Максимален размер на качване", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Максимум 3 модела могат да бъдат сваляни едновременно. Моля, опитайте отново по-късно.", "May": "Май", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "Конфигурацията на моделите е запазена успешно", "Models imported successfully": "", "Models Public Sharing": "Споделяне на моделите публично", + "Models Sharing": "", "Mojeek Search API Key": "API ключ за Mojeek Search", "More": "Повече", "More Concise": "", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Забележка: Ако зададете минимален резултат, търсенето ще върне само документи с резултат, по-голям или равен на минималния резултат.", "Notes": "Бележки", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "Звук за известия", "Notification Webhook": "Webhook за известия", "Notifications": "Известия", @@ -1274,6 +1286,7 @@ "Prompts": "Промптове", "Prompts Access": "Достъп до промптове", "Prompts Public Sharing": "Публично споделяне на промптове", + "Prompts Sharing": "", "Provider Type": "", "Public": "Публично", "Pull \"{{searchValue}}\" from Ollama.com": "Извади \"{{searchValue}}\" от Ollama.com", @@ -1457,6 +1470,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "", "Sets the size of the context window used to generate the next token.": "", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "Задава последователностите за спиране, които да се използват. Когато се срещне този модел, LLM ще спре да генерира текст и ще се върне. Множество модели за спиране могат да бъдат зададени чрез определяне на множество отделни параметри за спиране в моделния файл.", + "Setting": "", "Settings": "Настройки", "Settings saved successfully!": "Настройките са запазени успешно!", "Share": "Подели", @@ -1637,6 +1651,7 @@ "Tools Function Calling Prompt": "Промпт за извикване на функциите на инструментите", "Tools have a function calling system that allows arbitrary code execution.": "Инструментите имат система за извикване на функции, която позволява произволно изпълнение на код.", "Tools Public Sharing": "Публично споделяне на инструменти", + "Tools Sharing": "", "Top K": "Топ К", "Top K Reranker": "", "Transformers": "Трансформатори", @@ -1684,6 +1699,7 @@ "Upload Pipeline": "Качване на конвейер", "Upload Progress": "Прогрес на качването", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploading file...": "", "URL": "URL", "URL is required": "", "URL Mode": "URL режим", diff --git a/src/lib/i18n/locales/bn-BD/translation.json b/src/lib/i18n/locales/bn-BD/translation.json index 3ae14c088e..0f295b2446 100644 --- a/src/lib/i18n/locales/bn-BD/translation.json +++ b/src/lib/i18n/locales/bn-BD/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "", "Allow Rate Response": "", @@ -144,6 +145,7 @@ "Archived Chats": "চ্যাট ইতিহাস সংরক্ষণাগার", "archived-chat-export": "", "Are you sure you want to clear all memories? This action cannot be undone.": "", + "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete this channel?": "", "Are you sure you want to delete this message?": "", "Are you sure you want to unarchive all archived chats?": "", @@ -388,12 +390,14 @@ "Default description enabled": "", "Default Features": "", "Default Filters": "", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "ডিফল্ট মডেল", "Default model updated": "ডিফল্ট মডেল আপডেট হয়েছে", "Default Models": "", "Default permissions": "", "Default permissions updated successfully": "", + "Default Pinned Models": "", "Default Prompt Suggestions": "ডিফল্ট প্রম্পট সাজেশন", "Default to 389 or 636 if TLS is enabled": "", "Default to ALL": "", @@ -402,6 +406,7 @@ "Delete": "মুছে ফেলুন", "Delete a model": "একটি মডেল মুছে ফেলুন", "Delete All Chats": "সব চ্যাট মুছে ফেলুন", + "Delete all contents inside this folder": "", "Delete All Models": "", "Delete Chat": "চ্যাট মুছে ফেলুন", "Delete chat?": "", @@ -730,6 +735,7 @@ "Features": "", "Features Permissions": "", "February": "ফেব্রুয়ারি", + "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "", "Feedbacks": "", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "", "File Upload": "", "File uploaded successfully": "", + "File uploaded!": "", "Files": "", "Filter": "", "Filter is now globally disabled": "", @@ -857,6 +864,7 @@ "Image Compression": "", "Image Compression Height": "", "Image Compression Width": "", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "", "Image Generation Engine": "ইমেজ জেনারেশন ইঞ্জিন", @@ -941,6 +949,7 @@ "Knowledge Name": "", "Knowledge Public Sharing": "", "Knowledge reset successfully.": "", + "Knowledge Sharing": "", "Knowledge updated successfully": "", "Kokoro.js (Browser)": "", "Kokoro.js Dtype": "", @@ -1006,6 +1015,7 @@ "Max Upload Size": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "একসঙ্গে সর্বোচ্চ তিনটি মডেল ডাউনলোড করা যায়। দয়া করে পরে আবার চেষ্টা করুন।", "May": "মে", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "", "Models imported successfully": "", "Models Public Sharing": "", + "Models Sharing": "", "Mojeek Search API Key": "", "More": "আরো", "More Concise": "", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "দ্রষ্টব্য: আপনি যদি ন্যূনতম স্কোর সেট করেন তবে অনুসন্ধানটি কেবলমাত্র ন্যূনতম স্কোরের চেয়ে বেশি বা সমান স্কোর সহ নথিগুলি ফেরত দেবে।", "Notes": "", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "", "Notification Webhook": "", "Notifications": "নোটিফিকেশনসমূহ", @@ -1274,6 +1286,7 @@ "Prompts": "প্রম্পটসমূহ", "Prompts Access": "", "Prompts Public Sharing": "", + "Prompts Sharing": "", "Provider Type": "", "Public": "", "Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com থেকে \"{{searchValue}}\" টানুন", @@ -1457,6 +1470,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "", "Sets the size of the context window used to generate the next token.": "", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "", + "Setting": "", "Settings": "সেটিংসমূহ", "Settings saved successfully!": "সেটিংগুলো সফলভাবে সংরক্ষিত হয়েছে", "Share": "শেয়ার করুন", @@ -1637,6 +1651,7 @@ "Tools Function Calling Prompt": "", "Tools have a function calling system that allows arbitrary code execution.": "", "Tools Public Sharing": "", + "Tools Sharing": "", "Top K": "Top K", "Top K Reranker": "", "Transformers": "", @@ -1684,6 +1699,7 @@ "Upload Pipeline": "", "Upload Progress": "আপলোড হচ্ছে", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploading file...": "", "URL": "", "URL is required": "", "URL Mode": "ইউআরএল মোড", diff --git a/src/lib/i18n/locales/bo-TB/translation.json b/src/lib/i18n/locales/bo-TB/translation.json index 1a9c21ff8b..db7bf3445a 100644 --- a/src/lib/i18n/locales/bo-TB/translation.json +++ b/src/lib/i18n/locales/bo-TB/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "ཡིག་ཆ་སྤར་བར་གནང་བ་སྤྲོད་པ།", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "ས་གནས་མིན་པའི་སྐད་གདངས་ལ་གནང་བ་སྤྲོད་པ།", "Allow Rate Response": "", @@ -144,6 +145,7 @@ "Archived Chats": "ཡིག་མཛོད་དུ་བཞག་པའི་ཁ་བརྡ།", "archived-chat-export": "ཡིག་མཛོད་ཁ་བརྡ་ཕྱིར་གཏོང་།", "Are you sure you want to clear all memories? This action cannot be undone.": "དྲན་ཤེས་ཡོངས་རྫོགས་བསུབ་འདོད་ཡོད་དམ། བྱ་སྤྱོད་འདི་ཕྱིར་ལྡོག་བྱེད་མི་ཐུབ།", + "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete this channel?": "ཁྱེད་ཀྱིས་བགྲོ་གླེང་འདི་བསུབ་འདོད་ངེས་ཡིན་ནམ།", "Are you sure you want to delete this message?": "འཕྲིན་འདི་བསུབ་འདོད་ངེས་ཡིན་ནམ།", "Are you sure you want to unarchive all archived chats?": "ཁྱེད་ཀྱིས་ཡིག་མཛོད་དུ་བཞག་པའི་ཁ་བརྡ་ཡོངས་རྫོགས་ཕྱིར་འདོན་འདོད་ངེས་ཡིན་ནམ།", @@ -388,12 +390,14 @@ "Default description enabled": "", "Default Features": "", "Default Filters": "", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "སྔོན་སྒྲིག་མ་དཔེ་ནི་ལག་བསྟར་མ་བྱས་སྔོན་དུ་ལག་ཆ་ཐེངས་གཅིག་འབོད་ནས་དཔེ་དབྱིབས་རྒྱ་ཆེ་བའི་ཁྱབ་ཁོངས་དང་མཉམ་ལས་བྱེད་ཐུབ། ས་སྐྱེས་མ་དཔེ་ཡིས་དཔེ་དབྱིབས་ཀྱི་ནང་འདྲེས་ལག་ཆ་འབོད་པའི་ནུས་པ་སྤྱོད་ཀྱི་ཡོད་མོད། འོན་ཀྱང་དཔེ་དབྱིབས་དེས་ཁྱད་ཆོས་འདི་ལ་ངོ་བོའི་ཐོག་ནས་རྒྱབ་སྐྱོར་བྱེད་དགོས།", "Default Model": "སྔོན་སྒྲིག་དཔེ་དབྱིབས།", "Default model updated": "སྔོན་སྒྲིག་དཔེ་དབྱིབས་གསར་སྒྱུར་བྱས།", "Default Models": "སྔོན་སྒྲིག་དཔེ་དབྱིབས།", "Default permissions": "སྔོན་སྒྲིག་དབང་ཚད།", "Default permissions updated successfully": "སྔོན་སྒྲིག་དབང་ཚད་ལེགས་པར་གསར་སྒྱུར་བྱས།", + "Default Pinned Models": "", "Default Prompt Suggestions": "སྔོན་སྒྲིག་འགུལ་སློང་གྲོས་གཞི།", "Default to 389 or 636 if TLS is enabled": "TLS སྒུལ་བསྐྱོད་བྱས་ན་སྔོན་སྒྲིག་ཏུ་ ༣༨༩ ཡང་ན་ ༦༣༦།", "Default to ALL": "སྔོན་སྒྲིག་ཏུ་ཡོངས་རྫོགས།", @@ -402,6 +406,7 @@ "Delete": "བསུབ་པ།", "Delete a model": "དཔེ་དབྱིབས་ཤིག་བསུབ་པ།", "Delete All Chats": "ཁ་བརྡ་ཡོངས་རྫོགས་བསུབ་པ།", + "Delete all contents inside this folder": "", "Delete All Models": "དཔེ་དབྱིབས་ཡོངས་རྫོགས་བསུབ་པ།", "Delete Chat": "ཁ་བརྡ་བསུབ་པ།", "Delete chat?": "ཁ་བརྡ་བསུབ་པ།?", @@ -730,6 +735,7 @@ "Features": "ཁྱད་ཆོས།", "Features Permissions": "ཁྱད་ཆོས་ཀྱི་དབང་ཚད།", "February": "ཟླ་བ་གཉིས་པ།", + "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "བསམ་འཆར་གྱི་ལོ་རྒྱུས།", "Feedbacks": "བསམ་འཆར།", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "ཡིག་ཆའི་ཆེ་ཆུང་ {{maxSize}} MB ལས་མི་བརྒལ་དགོས།", "File Upload": "", "File uploaded successfully": "ཡིག་ཆ་ལེགས་པར་སྤར་ཟིན།", + "File uploaded!": "", "Files": "ཡིག་ཆ།", "Filter": "", "Filter is now globally disabled": "འཚག་མ་དེ་ད་ལྟ་འཛམ་གླིང་ཡོངས་ནས་ནུས་མེད་བཏང་ཡོད།", @@ -857,6 +864,7 @@ "Image Compression": "པར་བསྡུ་སྐུམ།", "Image Compression Height": "", "Image Compression Width": "", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "པར་བཟོ།", "Image Generation Engine": "པར་བཟོ་འཕྲུལ་འཁོར།", @@ -941,6 +949,7 @@ "Knowledge Name": "", "Knowledge Public Sharing": "ཤེས་བྱ་སྤྱི་སྤྱོད་མཉམ་སྤྱོད།", "Knowledge reset successfully.": "ཤེས་བྱ་ལེགས་པར་སླར་སྒྲིག་བྱས་ཟིན།", + "Knowledge Sharing": "", "Knowledge updated successfully": "ཤེས་བྱ་ལེགས་པར་གསར་སྒྱུར་བྱས་ཟིན།", "Kokoro.js (Browser)": "Kokoro.js (བརྡ་འཚོལ་ཆས།)", "Kokoro.js Dtype": "Kokoro.js Dtype", @@ -1006,6 +1015,7 @@ "Max Upload Size": "སྤར་བའི་ཆེ་ཆུང་མང་ཤོས།", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "དཔེ་དབྱིབས་ ༣ ལས་མང་བ་མཉམ་དུ་ཕབ་ལེན་བྱེད་མི་ཐུབ། རྗེས་སུ་ཡང་བསྐྱར་ཚོད་ལྟ་བྱེད་རོགས།", "May": "ཟླ་བ་ལྔ་པ།", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "དཔེ་དབྱིབས་སྒྲིག་འགོད་ལེགས་པར་ཉར་ཚགས་བྱས།", "Models imported successfully": "", "Models Public Sharing": "དཔེ་དབྱིབས་སྤྱི་སྤྱོད་མཉམ་སྤྱོད།", + "Models Sharing": "", "Mojeek Search API Key": "Mojeek Search API ལྡེ་མིག", "More": "མང་བ།", "More Concise": "", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "དོ་སྣང་།: གལ་ཏེ་ཁྱེད་ཀྱིས་སྐར་མ་ཉུང་ཤོས་ཤིག་བཀོད་སྒྲིག་བྱས་ན། འཚོལ་བཤེར་གྱིས་སྐར་མ་ཉུང་ཤོས་དེ་དང་མཉམ་པའམ་དེ་ལས་ཆེ་བའི་ཡིག་ཆ་ཁོ་ན་ཕྱིར་སློག་བྱེད་ངེས།", "Notes": "མཆན་བུ།", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "བརྡ་ཁྱབ་ཀྱི་སྒྲ།", "Notification Webhook": "བརྡ་ཁྱབ་ཀྱི་ Webhook", "Notifications": "བརྡ་ཁྱབ།", @@ -1274,6 +1286,7 @@ "Prompts": "འགུལ་སློང་།", "Prompts Access": "འགུལ་སློང་འཛུལ་སྤྱོད།", "Prompts Public Sharing": "འགུལ་སློང་སྤྱི་སྤྱོད་མཉམ་སྤྱོད།", + "Prompts Sharing": "", "Provider Type": "", "Public": "སྤྱི་སྤྱོད།", "Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com ནས་ \"{{searchValue}}\" འཐེན་པ།", @@ -1456,6 +1469,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "བཟོ་སྐྲུན་ལ་བེད་སྤྱོད་གཏོང་རྒྱུའི་གང་བྱུང་གྲངས་ཀྱི་ Seed འཇོག་པ། འདི་གྲངས་ངེས་ཅན་ཞིག་ལ་བཀོད་སྒྲིག་བྱས་ན་དཔེ་དབྱིབས་ཀྱིས་འགུལ་སློང་གཅིག་པར་ཡིག་རྐྱང་གཅིག་པ་བཟོ་ངེས།", "Sets the size of the context window used to generate the next token.": "ཊོཀ་ཀེན་རྗེས་མ་བཟོ་བར་བེད་སྤྱོད་གཏོང་བའི་ནང་དོན་སྒེའུ་ཁུང་གི་ཆེ་ཆུང་འཇོག་པ།", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "བེད་སྤྱོད་གཏོང་རྒྱུའི་མཚམས་འཇོག་རིམ་པ་འཇོག་པ། བཟོ་ལྟ་འདི་འཕྲད་དུས། LLM ཡིས་ཡིག་རྐྱང་བཟོ་བ་མཚམས་འཇོག་ནས་ཕྱིར་ལོག་བྱེད་ངེས། Modelfile ནང་མཚམས་འཇོག་ཞུགས་གྲངས་ལོགས་སུ་མང་པོ་གསལ་བཀོད་བྱས་ནས་མཚམས་འཇོག་བཟོ་ལྟ་མང་པོ་འཇོག་ཐུབ།", + "Setting": "", "Settings": "སྒྲིག་འགོད།", "Settings saved successfully!": "སྒྲིག་འགོད་ལེགས་པར་ཉར་ཚགས་བྱས།", "Share": "མཉམ་སྤྱོད།", @@ -1636,6 +1650,7 @@ "Tools Function Calling Prompt": "ལག་ཆ་ལས་འགན་འབོད་པའི་འགུལ་སློང་།", "Tools have a function calling system that allows arbitrary code execution.": "ལག་ཆར་གང་འདོད་ཀྱི་ཀོཌ་ལག་བསྟར་ལ་གནང་བ་སྤྲོད་པའི་ལས་འགན་འབོད་པའི་མ་ལག་ཡོད།", "Tools Public Sharing": "ལག་ཆ་སྤྱི་སྤྱོད་མཉམ་སྤྱོད།", + "Tools Sharing": "", "Top K": "Top K", "Top K Reranker": "Top K Reranker", "Transformers": "Transformers", @@ -1683,6 +1698,7 @@ "Upload Pipeline": "རྒྱུ་ལམ་སྤར་བ།", "Upload Progress": "སྤར་བའི་འཕེལ་རིམ།", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploading file...": "", "URL": "URL", "URL is required": "", "URL Mode": "URL མ་དཔེ།", diff --git a/src/lib/i18n/locales/bs-BA/translation.json b/src/lib/i18n/locales/bs-BA/translation.json index e02b4a5929..1b7c029676 100644 --- a/src/lib/i18n/locales/bs-BA/translation.json +++ b/src/lib/i18n/locales/bs-BA/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "Dozvoli vise modela u jednom chatu", "Allow non-local voices": "Dopusti nelokalne glasove", "Allow Rate Response": "", @@ -144,6 +145,7 @@ "Archived Chats": "Arhivirani razgovori", "archived-chat-export": "", "Are you sure you want to clear all memories? This action cannot be undone.": "", + "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete this channel?": "", "Are you sure you want to delete this message?": "", "Are you sure you want to unarchive all archived chats?": "", @@ -388,12 +390,14 @@ "Default description enabled": "", "Default Features": "", "Default Filters": "", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "Zadani model", "Default model updated": "Zadani model ažuriran", "Default Models": "", "Default permissions": "", "Default permissions updated successfully": "", + "Default Pinned Models": "", "Default Prompt Suggestions": "Zadani prijedlozi prompta", "Default to 389 or 636 if TLS is enabled": "", "Default to ALL": "", @@ -402,6 +406,7 @@ "Delete": "Izbriši", "Delete a model": "Izbriši model", "Delete All Chats": "Izbriši sve razgovore", + "Delete all contents inside this folder": "", "Delete All Models": "", "Delete Chat": "Izbriši razgovor", "Delete chat?": "", @@ -730,6 +735,7 @@ "Features": "", "Features Permissions": "", "February": "Februar", + "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "", "Feedbacks": "", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "", "File Upload": "", "File uploaded successfully": "", + "File uploaded!": "", "Files": "", "Filter": "", "Filter is now globally disabled": "", @@ -857,6 +864,7 @@ "Image Compression": "", "Image Compression Height": "", "Image Compression Width": "", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "", "Image Generation Engine": "Stroj za generiranje slika", @@ -941,6 +949,7 @@ "Knowledge Name": "", "Knowledge Public Sharing": "", "Knowledge reset successfully.": "", + "Knowledge Sharing": "", "Knowledge updated successfully": "", "Kokoro.js (Browser)": "", "Kokoro.js Dtype": "", @@ -1006,6 +1015,7 @@ "Max Upload Size": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maksimalno 3 modela se mogu preuzeti istovremeno. Pokušajte ponovo kasnije.", "May": "Maj", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "", "Models imported successfully": "", "Models Public Sharing": "", + "Models Sharing": "", "Mojeek Search API Key": "", "More": "Više", "More Concise": "", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Napomena: Ako postavite minimalnu ocjenu, pretraga će vratiti samo dokumente s ocjenom većom ili jednakom minimalnoj ocjeni.", "Notes": "", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "", "Notification Webhook": "", "Notifications": "Obavijesti", @@ -1274,6 +1286,7 @@ "Prompts": "Prompti", "Prompts Access": "", "Prompts Public Sharing": "", + "Prompts Sharing": "", "Provider Type": "", "Public": "", "Pull \"{{searchValue}}\" from Ollama.com": "Povucite \"{{searchValue}}\" s Ollama.com", @@ -1458,6 +1471,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "", "Sets the size of the context window used to generate the next token.": "", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "", + "Setting": "", "Settings": "Postavke", "Settings saved successfully!": "Postavke su uspješno spremljene!", "Share": "Podijeli", @@ -1638,6 +1652,7 @@ "Tools Function Calling Prompt": "", "Tools have a function calling system that allows arbitrary code execution.": "", "Tools Public Sharing": "", + "Tools Sharing": "", "Top K": "Top K", "Top K Reranker": "", "Transformers": "", @@ -1685,6 +1700,7 @@ "Upload Pipeline": "Prijenos kanala", "Upload Progress": "Napredak učitavanja", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploading file...": "", "URL": "", "URL is required": "", "URL Mode": "URL način", diff --git a/src/lib/i18n/locales/ca-ES/translation.json b/src/lib/i18n/locales/ca-ES/translation.json index a9ace36dbd..19622aa06f 100644 --- a/src/lib/i18n/locales/ca-ES/translation.json +++ b/src/lib/i18n/locales/ca-ES/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "Permetre continuar la resposta", "Allow Delete Messages": "Permetre eliminar missatges", "Allow File Upload": "Permetre la pujada d'arxius", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "Permetre múltiple models al xat", "Allow non-local voices": "Permetre veus no locals", "Allow Rate Response": "Permetre valorar les respostes", @@ -144,6 +145,7 @@ "Archived Chats": "Xats arxivats", "archived-chat-export": "archived-chat-export", "Are you sure you want to clear all memories? This action cannot be undone.": "Estàs segur que vols netejar totes les memòries? Aquesta acció no es pot desfer.", + "Are you sure you want to delete \"{{NAME}}\"?": "", "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 message?": "Estàs segur que vols eliminar aquest missatge?", "Are you sure you want to unarchive all archived chats?": "Estàs segur que vols desarxivar tots els xats arxivats?", @@ -388,12 +390,14 @@ "Default description enabled": "Descripcions per defecte habilitades", "Default Features": "Característiques per defecte", "Default Filters": "Filres per defecte", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "El mode predeterminat funciona amb una gamma més àmplia de models cridant a les eines una vegada abans de l'execució. El mode natiu aprofita les capacitats de crida d'eines integrades del model, però requereix que el model admeti aquesta funció de manera inherent.", "Default Model": "Model per defecte", "Default model updated": "Model per defecte actualitzat", "Default Models": "Models per defecte", "Default permissions": "Permisos per defecte", "Default permissions updated successfully": "Permisos per defecte actualitzats correctament", + "Default Pinned Models": "", "Default Prompt Suggestions": "Suggeriments d'indicació per defecte", "Default to 389 or 636 if TLS is enabled": "Per defecte 389 o 636 si TLS està habilitat", "Default to ALL": "Per defecte TOTS", @@ -402,6 +406,7 @@ "Delete": "Eliminar", "Delete a model": "Eliminar un model", "Delete All Chats": "Eliminar tots els xats", + "Delete all contents inside this folder": "", "Delete All Models": "Eliminar tots els models", "Delete Chat": "Eliminar xat", "Delete chat?": "Eliminar el xat?", @@ -730,6 +735,7 @@ "Features": "Característiques", "Features Permissions": "Permisos de les característiques", "February": "Febrer", + "Feedback deleted successfully": "", "Feedback Details": "Detalls del retorn", "Feedback History": "Històric de comentaris", "Feedbacks": "Comentaris", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "La mida del fitxer no ha de superar els {{maxSize}} MB.", "File Upload": "Pujar arxiu", "File uploaded successfully": "arxiu pujat satisfactòriament", + "File uploaded!": "", "Files": "Arxius", "Filter": "Filtre", "Filter is now globally disabled": "El filtre ha estat desactivat globalment", @@ -857,6 +864,7 @@ "Image Compression": "Compressió d'imatges", "Image Compression Height": "Alçada de la compressió d'imatges", "Image Compression Width": "Amplada de la compressió d'imatges", + "Image Edit": "", "Image Edit Engine": "Motor d'edició d'imatges", "Image Generation": "Generació d'imatges", "Image Generation Engine": "Motor de generació d'imatges", @@ -941,6 +949,7 @@ "Knowledge Name": "Nom del coneixement", "Knowledge Public Sharing": "Compartir públicament el Coneixement", "Knowledge reset successfully.": "Coneixement restablert correctament.", + "Knowledge Sharing": "", "Knowledge updated successfully": "Coneixement actualitzat correctament.", "Kokoro.js (Browser)": "Kokoro.js (Navegador)", "Kokoro.js Dtype": "Kokoro.js Dtype", @@ -1006,6 +1015,7 @@ "Max Upload Size": "Mida màxima de càrrega", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Es poden descarregar un màxim de 3 models simultàniament. Si us plau, prova-ho més tard.", "May": "Maig", + "MBR": "", "MCP": "MCP", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "El suport per a MCP és experimental i la seva especificació canvia sovint, cosa que pot provocar incompatibilitats. El suport per a l'especificació d'OpenAPI el manté directament l'equip d'Open WebUI, cosa que el converteix en l'opció més fiable per a la compatibilitat.", "Medium": "Mig", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "La configuració dels models s'ha desat correctament", "Models imported successfully": "Els models s'han importat correctament", "Models Public Sharing": "Compartició pública de models", + "Models Sharing": "", "Mojeek Search API Key": "Clau API de Mojeek Search", "More": "Més", "More Concise": "Més precís", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Nota: Si s'estableix una puntuació mínima, la cerca només retornarà documents amb una puntuació major o igual a la puntuació mínima.", "Notes": "Notes", "Notes Public Sharing": "Compartició pública de les notes", + "Notes Sharing": "", "Notification Sound": "So de la notificació", "Notification Webhook": "Webhook de la notificació", "Notifications": "Notificacions", @@ -1274,6 +1286,7 @@ "Prompts": "Indicacions", "Prompts Access": "Accés a les indicacions", "Prompts Public Sharing": "Compartició pública de indicacions", + "Prompts Sharing": "", "Provider Type": "Tipus de proveïdor", "Public": "Públic", "Pull \"{{searchValue}}\" from Ollama.com": "Obtenir \"{{searchValue}}\" de Ollama.com", @@ -1458,6 +1471,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "Estableix la llavor del nombre aleatori que s'utilitzarà per a la generació. Establir-ho a un número específic farà que el model generi el mateix text per a la mateixa sol·licitud.", "Sets the size of the context window used to generate the next token.": "Estableix la mida de la finestra de context utilitzada per generar el següent token.", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "Establir les seqüències d'aturada a utilitzar. Quan es trobi aquest patró, el LLM deixarà de generar text. Es poden establir diversos patrons de parada especificant diversos paràmetres de parada separats en un fitxer model.", + "Setting": "", "Settings": "Preferències", "Settings saved successfully!": "Les preferències s'han desat correctament", "Share": "Compartir", @@ -1638,6 +1652,7 @@ "Tools Function Calling Prompt": "Indicació per a la crida de funcions", "Tools have a function calling system that allows arbitrary code execution.": "Les eines disposen d'un sistema de crida a funcions que permet execució de codi arbitrari.", "Tools Public Sharing": "Compartició pública d'eines", + "Tools Sharing": "", "Top K": "Top K", "Top K Reranker": "Top K Reranker", "Transformers": "Transformadors", @@ -1685,6 +1700,7 @@ "Upload Pipeline": "Pujar una Pipeline", "Upload Progress": "Progrés de càrrega", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Progrés de la pujada: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", + "Uploading file...": "", "URL": "URL", "URL is required": "La URL és necessaria", "URL Mode": "Mode URL", diff --git a/src/lib/i18n/locales/ceb-PH/translation.json b/src/lib/i18n/locales/ceb-PH/translation.json index 73b1428d39..66fe6b4dc9 100644 --- a/src/lib/i18n/locales/ceb-PH/translation.json +++ b/src/lib/i18n/locales/ceb-PH/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "", "Allow Rate Response": "", @@ -144,6 +145,7 @@ "Archived Chats": "pagrekord sa chat", "archived-chat-export": "", "Are you sure you want to clear all memories? This action cannot be undone.": "", + "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete this channel?": "", "Are you sure you want to delete this message?": "", "Are you sure you want to unarchive all archived chats?": "", @@ -388,12 +390,14 @@ "Default description enabled": "", "Default Features": "", "Default Filters": "", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "", "Default model updated": "Gi-update nga default template", "Default Models": "", "Default permissions": "", "Default permissions updated successfully": "", + "Default Pinned Models": "", "Default Prompt Suggestions": "Default nga prompt nga mga sugyot", "Default to 389 or 636 if TLS is enabled": "", "Default to ALL": "", @@ -402,6 +406,7 @@ "Delete": "", "Delete a model": "Pagtangtang sa usa ka template", "Delete All Chats": "", + "Delete all contents inside this folder": "", "Delete All Models": "", "Delete Chat": "", "Delete chat?": "", @@ -730,6 +735,7 @@ "Features": "", "Features Permissions": "", "February": "", + "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "", "Feedbacks": "", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "", "File Upload": "", "File uploaded successfully": "", + "File uploaded!": "", "Files": "", "Filter": "", "Filter is now globally disabled": "", @@ -857,6 +864,7 @@ "Image Compression": "", "Image Compression Height": "", "Image Compression Width": "", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "", "Image Generation Engine": "Makina sa paghimo og imahe", @@ -941,6 +949,7 @@ "Knowledge Name": "", "Knowledge Public Sharing": "", "Knowledge reset successfully.": "", + "Knowledge Sharing": "", "Knowledge updated successfully": "", "Kokoro.js (Browser)": "", "Kokoro.js Dtype": "", @@ -1006,6 +1015,7 @@ "Max Upload Size": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Ang labing taas nga 3 nga mga disenyo mahimong ma-download nga dungan. ", "May": "", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "", "Models imported successfully": "", "Models Public Sharing": "", + "Models Sharing": "", "Mojeek Search API Key": "", "More": "", "More Concise": "", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "", "Notes": "", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "", "Notification Webhook": "", "Notifications": "Mga pahibalo sa desktop", @@ -1274,6 +1286,7 @@ "Prompts": "Mga aghat", "Prompts Access": "", "Prompts Public Sharing": "", + "Prompts Sharing": "", "Provider Type": "", "Public": "", "Pull \"{{searchValue}}\" from Ollama.com": "", @@ -1457,6 +1470,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "", "Sets the size of the context window used to generate the next token.": "", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "", + "Setting": "", "Settings": "Mga setting", "Settings saved successfully!": "Malampuson nga na-save ang mga setting!", "Share": "", @@ -1637,6 +1651,7 @@ "Tools Function Calling Prompt": "", "Tools have a function calling system that allows arbitrary code execution.": "", "Tools Public Sharing": "", + "Tools Sharing": "", "Top K": "Top K", "Top K Reranker": "", "Transformers": "", @@ -1684,6 +1699,7 @@ "Upload Pipeline": "", "Upload Progress": "Pag-uswag sa Pag-upload", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploading file...": "", "URL": "", "URL is required": "", "URL Mode": "URL mode", diff --git a/src/lib/i18n/locales/cs-CZ/translation.json b/src/lib/i18n/locales/cs-CZ/translation.json index 1e6f8a88a3..99ee645ebb 100644 --- a/src/lib/i18n/locales/cs-CZ/translation.json +++ b/src/lib/i18n/locales/cs-CZ/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "Povolit nahrávání souborů", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "Povolit více modelů v chatu", "Allow non-local voices": "Povolit nelokální hlasy", "Allow Rate Response": "", @@ -144,6 +145,7 @@ "Archived Chats": "Archiv", "archived-chat-export": "export-archivovanych-konverzaci", "Are you sure you want to clear all memories? This action cannot be undone.": "Opravdu si přejete vymazat všechny vzpomínky? Tuto akci nelze vrátit zpět.", + "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete this channel?": "Opravdu chcete smazat tento kanál?", "Are you sure you want to delete this message?": "Opravdu chcete smazat tuto zprávu?", "Are you sure you want to unarchive all archived chats?": "Opravdu chcete zrušit archivaci všech archivovaných konverzací?", @@ -388,12 +390,14 @@ "Default description enabled": "Výchozí popis povolen", "Default Features": "Výchozí funkce", "Default Filters": "Výchozí filtry", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Výchozí režim funguje s širší škálou modelů voláním nástrojů jednou před spuštěním. Nativní režim využívá vestavěné schopnosti modelu pro volání nástrojů, ale vyžaduje, aby model tuto funkci nativně podporoval.", "Default Model": "Výchozí model", "Default model updated": "Výchozí model byl aktualizován.", "Default Models": "Výchozí modely", "Default permissions": "Výchozí oprávnění", "Default permissions updated successfully": "Výchozí oprávnění byla úspěšně aktualizována", + "Default Pinned Models": "", "Default Prompt Suggestions": "Výchozí návrhy instrukce", "Default to 389 or 636 if TLS is enabled": "Výchozí hodnota 389, nebo 636, pokud je povoleno TLS", "Default to ALL": "Výchozí hodnota VŠE", @@ -402,6 +406,7 @@ "Delete": "Smazat", "Delete a model": "Smazat model", "Delete All Chats": "Smazat všechny konverzace", + "Delete all contents inside this folder": "", "Delete All Models": "Smazat všechny modely", "Delete Chat": "Smazat konverzaci", "Delete chat?": "Smazat konverzaci?", @@ -730,6 +735,7 @@ "Features": "Funkce", "Features Permissions": "Oprávnění funkcí", "February": "Únor", + "Feedback deleted successfully": "", "Feedback Details": "Podrobnosti zpětné vazby", "Feedback History": "Historie zpětné vazby", "Feedbacks": "Zpětné vazby", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "Velikost souboru by neměla překročit {{maxSize}} MB.", "File Upload": "Nahrání souboru", "File uploaded successfully": "Soubor byl úspěšně nahrán", + "File uploaded!": "", "Files": "Soubory", "Filter": "Filtr", "Filter is now globally disabled": "Filtr je nyní globálně zakázán", @@ -857,6 +864,7 @@ "Image Compression": "Komprese obrázků", "Image Compression Height": "Výška komprese obrázku", "Image Compression Width": "Šířka komprese obrázku", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "Generování obrázků", "Image Generation Engine": "Jádro pro generování obrázků", @@ -941,6 +949,7 @@ "Knowledge Name": "Název znalosti", "Knowledge Public Sharing": "Veřejné sdílení znalostí", "Knowledge reset successfully.": "Znalosti byly úspěšně resetovány.", + "Knowledge Sharing": "", "Knowledge updated successfully": "Znalost byla úspěšně aktualizována", "Kokoro.js (Browser)": "Kokoro.js (prohlížeč)", "Kokoro.js Dtype": "Datový typ Kokoro.js", @@ -1006,6 +1015,7 @@ "Max Upload Size": "Maximální velikost nahrávaných souborů", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Současně lze stahovat maximálně 3 modely. Zkuste to prosím později.", "May": "Květen", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "Střední", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "Konfigurace modelů byla úspěšně uložena", "Models imported successfully": "", "Models Public Sharing": "Veřejné sdílení modelů", + "Models Sharing": "", "Mojeek Search API Key": "API klíč pro Mojeek Search", "More": "Více", "More Concise": "Stručnější", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Poznámka: Pokud nastavíte minimální skóre, vyhledávání vrátí pouze dokumenty se skóre vyšším nebo rovným minimálnímu skóre.", "Notes": "Poznámky", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "Zvuk oznámení", "Notification Webhook": "Webhook pro oznámení", "Notifications": "Oznámení", @@ -1274,6 +1286,7 @@ "Prompts": "Instrukce", "Prompts Access": "Přístup k instrukcím", "Prompts Public Sharing": "Veřejné sdílení instrukcí", + "Prompts Sharing": "", "Provider Type": "", "Public": "Veřejné", "Pull \"{{searchValue}}\" from Ollama.com": "Stáhnout \"{{searchValue}}\" z Ollama.com", @@ -1459,6 +1472,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "Nastavuje semínko náhodných čísel pro generování. Nastavení na konkrétní číslo způsobí, že model bude generovat stejný text pro stejné instrukce.", "Sets the size of the context window used to generate the next token.": "Nastavuje velikost kontextového okna použitého k vygenerování dalšího tokenu.", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "Nastavuje ukončovací sekvence. Když je tento vzor nalezen, LLM přestane generovat text a vrátí výsledek. Lze nastavit více ukončovacích vzorů zadáním více samostatných parametrů stop v souboru modelfile.", + "Setting": "", "Settings": "Nastavení", "Settings saved successfully!": "Nastavení byla úspěšně uložena!", "Share": "Sdílet", @@ -1639,6 +1653,7 @@ "Tools Function Calling Prompt": "Instrukce pro volání funkcí nástrojů", "Tools have a function calling system that allows arbitrary code execution.": "Nástroje mají systém volání funkcí, který umožňuje spouštění libovolného kódu.", "Tools Public Sharing": "Veřejné sdílení nástrojů", + "Tools Sharing": "", "Top K": "Top K", "Top K Reranker": "Top K pro přehodnocení", "Transformers": "Transformers", @@ -1686,6 +1701,7 @@ "Upload Pipeline": "Nahrát pipeline", "Upload Progress": "Průběh nahrávání", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Průběh nahrávání: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", + "Uploading file...": "", "URL": "URL", "URL is required": "URL je vyžadována", "URL Mode": "Režim URL", diff --git a/src/lib/i18n/locales/da-DK/translation.json b/src/lib/i18n/locales/da-DK/translation.json index 932ff8ca87..613292107d 100644 --- a/src/lib/i18n/locales/da-DK/translation.json +++ b/src/lib/i18n/locales/da-DK/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "Tillad fortsættelse af svar", "Allow Delete Messages": "Tillad sletning af beskeder", "Allow File Upload": "Tillad upload af fil", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "Tillad flere modeller i chats", "Allow non-local voices": "Tillad ikke-lokale stemmer", "Allow Rate Response": "Tillad vurdering af svar", @@ -144,6 +145,7 @@ "Archived Chats": "Arkiverede chats", "archived-chat-export": "arkiveret-chat-eksport", "Are you sure you want to clear all memories? This action cannot be undone.": "Er du sikker på du vil rydde hele hukommelsen? Dette kan ikke gøres om.", + "Are you sure you want to delete \"{{NAME}}\"?": "", "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 message?": "Er du sikker på du vil slette denne besked?", "Are you sure you want to unarchive all archived chats?": "Er du sikker på du vil fjerne alle arkiverede chats?", @@ -388,12 +390,14 @@ "Default description enabled": "Standardbeskrivelse aktiveret", "Default Features": "Standardfunktioner", "Default Filters": "Standardfiltre", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Standardtilstand fungerer med et bredere udvalg af modeller ved at kalde værktøjer én gang før udførelse. Native tilstand udnytter modellens indbyggede værktøjskald-funktioner, men kræver at modellen i sagens natur understøtter denne funktion.", "Default Model": "Standard model", "Default model updated": "Standard model opdateret", "Default Models": "Standard modeller", "Default permissions": "Standard tilladelser", "Default permissions updated successfully": "Standard tilladelser opdateret", + "Default Pinned Models": "", "Default Prompt Suggestions": "Standardforslag til prompt", "Default to 389 or 636 if TLS is enabled": "Standard til 389 eller 636 hvis TLS er aktiveret", "Default to ALL": "Standard til ALLE", @@ -402,6 +406,7 @@ "Delete": "Slet", "Delete a model": "Slet en model", "Delete All Chats": "Slet alle chats", + "Delete all contents inside this folder": "", "Delete All Models": "Slet alle modeller", "Delete Chat": "Slet chat", "Delete chat?": "Slet chat?", @@ -730,6 +735,7 @@ "Features": "Features", "Features Permissions": "Features tilladelser", "February": "Februar", + "Feedback deleted successfully": "", "Feedback Details": "Feedback detaljer", "Feedback History": "Feedback historik", "Feedbacks": "Feedback", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "Filstørrelsen må ikke overstige {{maxSize}} MB.", "File Upload": "Fil upload", "File uploaded successfully": "Fil uploadet.", + "File uploaded!": "", "Files": "Filer", "Filter": "Filter", "Filter is now globally disabled": "Filter er nu globalt deaktiveret", @@ -857,6 +864,7 @@ "Image Compression": "Billedkomprimering", "Image Compression Height": "Billedkomprimering højde", "Image Compression Width": "Billedkomprimering bredde", + "Image Edit": "", "Image Edit Engine": "Billederedigeringsmotor", "Image Generation": "Billedgenerering", "Image Generation Engine": "Billedgenereringsmotor", @@ -941,6 +949,7 @@ "Knowledge Name": "Vidensnavn", "Knowledge Public Sharing": "Viden offentlig deling", "Knowledge reset successfully.": "Viden nulstillet.", + "Knowledge Sharing": "", "Knowledge updated successfully": "Viden opdateret.", "Kokoro.js (Browser)": "Kokoro.js (Browser)", "Kokoro.js Dtype": "Kokoro.js Dtype", @@ -1006,6 +1015,7 @@ "Max Upload Size": "Maks. uploadstørrelse", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Højst 3 modeller kan downloades samtidigt. Prøv igen senere.", "May": "Maj", + "MBR": "", "MCP": "MCP", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "MCP understøttelse er eksperimentel og dens specifikationer ændres ofte hvilket kan medføre inkompatibilitet. OpenAI specifikationsunderstøttelse er vedligeholdt af Open WebUI-teamet hvilket gør det til den mest pålidelige mulighed for understøttelse.", "Medium": "Medium", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "Modeller konfiguration gemt", "Models imported successfully": "Modeller importeret", "Models Public Sharing": "Modeller offentlig deling", + "Models Sharing": "", "Mojeek Search API Key": "Mojeek Search API nøgle", "More": "Mere", "More Concise": "Mere kortfattet", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Bemærk: Hvis du angiver en minimumscore, returnerer søgningen kun dokumenter med en score, der er større end eller lig med minimumscoren.", "Notes": "Noter", "Notes Public Sharing": "Noter offentlig deling", + "Notes Sharing": "", "Notification Sound": "Notifikationslyd", "Notification Webhook": "Notifikations webhook", "Notifications": "Notifikationer", @@ -1274,6 +1286,7 @@ "Prompts": "Prompts", "Prompts Access": "Prompts adgang", "Prompts Public Sharing": "Prompts offentlig deling", + "Prompts Sharing": "", "Provider Type": "Udbyder type", "Public": "Offentlig", "Pull \"{{searchValue}}\" from Ollama.com": "Hent \"{{searchValue}}\" fra Ollama.com", @@ -1457,6 +1470,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "Indstiller det tilfældige tal seed til brug for generering. At indstille dette til et specifikt tal vil få modellen til at generere den samme tekst for den samme prompt.", "Sets the size of the context window used to generate the next token.": "Indstiller størrelsen af kontekstvinduet brugt til at generere det næste token.", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "Indstiller stop-sekvenserne til brug. Når dette mønster stødes på, vil LLM'en stoppe med at generere tekst og returnere. Flere stop-mønstre kan indstilles ved at specificere flere separate stop-parametre i en modelfil.", + "Setting": "", "Settings": "Indstillinger", "Settings saved successfully!": "Indstillinger gemt!", "Share": "Del", @@ -1637,6 +1651,7 @@ "Tools Function Calling Prompt": "Værktøjs Funktionkaldprompt", "Tools have a function calling system that allows arbitrary code execution.": "Værktøjer har et funktionkaldssystem, der tillader vilkårlig kodeudførelse.", "Tools Public Sharing": "Værktøjer Offentlig Deling", + "Tools Sharing": "", "Top K": "Top K", "Top K Reranker": "Top K omarrangering", "Transformers": "Transformers", @@ -1684,6 +1699,7 @@ "Upload Pipeline": "Upload pipeline", "Upload Progress": "Uploadfremdrift", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Uploadfremdrift: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", + "Uploading file...": "", "URL": "URL", "URL is required": "URL er påkrævet", "URL Mode": "URL-tilstand", diff --git a/src/lib/i18n/locales/de-DE/translation.json b/src/lib/i18n/locales/de-DE/translation.json index 88e3199acd..ac76aaab89 100644 --- a/src/lib/i18n/locales/de-DE/translation.json +++ b/src/lib/i18n/locales/de-DE/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "Erlaube fortgesetzte Antwort", "Allow Delete Messages": "Löschen von Nachrichten erlauben", "Allow File Upload": "Hochladen von Dateien erlauben", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "Multiple Modelle in Chat erlauben", "Allow non-local voices": "Nicht-lokale Stimmen erlauben", "Allow Rate Response": "Erlaube Bewertung der Antwort", @@ -144,6 +145,7 @@ "Archived Chats": "Archivierte Chats", "archived-chat-export": "archivierter-chat-export", "Are you sure you want to clear all memories? This action cannot be undone.": "Sind Sie sicher, dass Sie alle Erinnerungen löschen möchten? Diese Handlung kann nicht rückgängig gemacht werden.", + "Are you sure you want to delete \"{{NAME}}\"?": "", "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 message?": "Sind Sie sicher, dass Sie diese Nachricht löschen möchten?", "Are you sure you want to unarchive all archived chats?": "Sind Sie sicher, dass Sie alle archivierten Chats wiederherstellen möchten?", @@ -388,12 +390,14 @@ "Default description enabled": "Standard Beschreibung aktiviert", "Default Features": "Standardfunktionen", "Default Filters": "Standardfilter", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Der Standardmodus funktioniert mit einer breiteren Auswahl von Modellen, indem er Werkzeuge einmal vor der Ausführung aufruft. Der native Modus nutzt die integrierten Tool-Aufrufmöglichkeiten des Modells, erfordert jedoch, dass das Modell diese Funktion von Natur aus unterstützt.", "Default Model": "Standardmodell", "Default model updated": "Standardmodell aktualisiert", "Default Models": "Standardmodelle", "Default permissions": "Standardberechtigungen", "Default permissions updated successfully": "Standardberechtigungen erfolgreich aktualisiert", + "Default Pinned Models": "", "Default Prompt Suggestions": "Prompt-Vorschläge", "Default to 389 or 636 if TLS is enabled": "Standardmäßig auf 389 oder 636 setzen, wenn TLS aktiviert ist", "Default to ALL": "Standardmäßig auf ALLE setzen", @@ -402,6 +406,7 @@ "Delete": "Löschen", "Delete a model": "Ein Modell löschen", "Delete All Chats": "Alle Chats löschen", + "Delete all contents inside this folder": "", "Delete All Models": "Alle Modelle löschen", "Delete Chat": "Chat löschen", "Delete chat?": "Chat löschen?", @@ -730,6 +735,7 @@ "Features": "Funktionalitäten", "Features Permissions": "Funktionen-Berechtigungen", "February": "Februar", + "Feedback deleted successfully": "", "Feedback Details": "Feedback-Details", "Feedback History": "Feedback-Verlauf", "Feedbacks": "Feedbacks", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "Datei darf nicht größer als {{maxSize}} MB sein.", "File Upload": "Dateiupload", "File uploaded successfully": "Datei erfolgreich hochgeladen", + "File uploaded!": "", "Files": "Dateien", "Filter": "Filter", "Filter is now globally disabled": "Filter ist jetzt global deaktiviert", @@ -857,6 +864,7 @@ "Image Compression": "Bildkomprimierung", "Image Compression Height": "Bildkompression Länge", "Image Compression Width": "Bildkompression Breite", + "Image Edit": "", "Image Edit Engine": "Bildbearbeitungsengine", "Image Generation": "Bildgenerierung", "Image Generation Engine": "Bildgenerierungs-Engine", @@ -941,6 +949,7 @@ "Knowledge Name": "Wissensname", "Knowledge Public Sharing": "Öffentliche Freigabe von Wissen", "Knowledge reset successfully.": "Wissen erfolgreich zurückgesetzt.", + "Knowledge Sharing": "", "Knowledge updated successfully": "Wissen erfolgreich aktualisiert", "Kokoro.js (Browser)": "Kokoro.js (Browser)", "Kokoro.js Dtype": "Kokoro.js Dtype", @@ -1006,6 +1015,7 @@ "Max Upload Size": "Maximale Uploadgröße", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Es können maximal 3 Modelle gleichzeitig heruntergeladen werden. Bitte versuchen Sie es später erneut.", "May": "Mai", + "MBR": "", "MCP": "MCP", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "Die MCP-Unterstützung ist experimentell und ihre Spezifikation ändert sich häufig, was zu Inkompatibilitäten führen kann. Die Unterstützung der OpenAPI-Spezifikation wird direkt vom Open‑WebUI‑Team gepflegt und ist daher die verlässlichere Option in Bezug auf Kompatibilität.", "Medium": "Mittel", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "Modellkonfiguration erfolgreich gespeichert", "Models imported successfully": "Modelle erfolgreich importiert", "Models Public Sharing": "Öffentliche Freigabe von Modellen", + "Models Sharing": "", "Mojeek Search API Key": "Mojeek Search API-Schlüssel", "More": "Mehr", "More Concise": "Kürzer", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Hinweis: Wenn Sie eine Mindestpunktzahl festlegen, werden in der Suche nur Dokumente mit einer Punktzahl größer oder gleich der Mindestpunktzahl zurückgegeben.", "Notes": "Notizen", "Notes Public Sharing": "Öffentliche Freigabe von Notizen", + "Notes Sharing": "", "Notification Sound": "Benachrichtigungston", "Notification Webhook": "Benachrichtigungs-Webhook", "Notifications": "Benachrichtigungen", @@ -1274,6 +1286,7 @@ "Prompts": "Prompts", "Prompts Access": "Prompt-Zugriff", "Prompts Public Sharing": "Öffentliche Freigabe von Prompts", + "Prompts Sharing": "", "Provider Type": "Anbietertyp", "Public": "Öffentlich", "Pull \"{{searchValue}}\" from Ollama.com": "\"{{searchValue}}\" von Ollama.com beziehen", @@ -1457,6 +1470,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "Legt den Startwert für die Zufallszahlengenerierung fest. Wenn dieser auf eine bestimmte Zahl gesetzt wird, erzeugt das Modell für denselben Prompt immer denselben Text.", "Sets the size of the context window used to generate the next token.": "Legt die Größe des Kontextfensters fest, das zur Generierung des nächsten Token verwendet wird.", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "Legt die zu verwendenden Stoppsequenzen fest. Wenn dieses Muster erkannt wird, stoppt das LLM die Textgenerierung und gibt zurück. Mehrere Stoppmuster können festgelegt werden, indem mehrere separate Stopp-Parameter in einer Modelldatei angegeben werden.", + "Setting": "", "Settings": "Einstellungen", "Settings saved successfully!": "Einstellungen erfolgreich gespeichert!", "Share": "Teilen", @@ -1637,6 +1651,7 @@ "Tools Function Calling Prompt": "Prompt für Funktionssystemaufrufe", "Tools have a function calling system that allows arbitrary code execution.": "Werkzeuge verfügen über ein Funktionssystem, das die Ausführung beliebigen Codes ermöglicht.", "Tools Public Sharing": "Öffentliche Freigabe von Werkzeugen", + "Tools Sharing": "", "Top K": "Top-K", "Top K Reranker": "Top-K Reranker", "Transformers": "Transformers", @@ -1684,6 +1699,7 @@ "Upload Pipeline": "Pipeline hochladen", "Upload Progress": "Fortschritt", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Fortschritt: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", + "Uploading file...": "", "URL": "URL", "URL is required": "URL wird benötigt", "URL Mode": "URL-Modus", diff --git a/src/lib/i18n/locales/dg-DG/translation.json b/src/lib/i18n/locales/dg-DG/translation.json index b384f8422e..f0a787a851 100644 --- a/src/lib/i18n/locales/dg-DG/translation.json +++ b/src/lib/i18n/locales/dg-DG/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "", "Allow Rate Response": "", @@ -144,6 +145,7 @@ "Archived Chats": "", "archived-chat-export": "", "Are you sure you want to clear all memories? This action cannot be undone.": "", + "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete this channel?": "", "Are you sure you want to delete this message?": "", "Are you sure you want to unarchive all archived chats?": "", @@ -388,12 +390,14 @@ "Default description enabled": "", "Default Features": "", "Default Filters": "", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "", "Default model updated": "Default model much updated", "Default Models": "", "Default permissions": "", "Default permissions updated successfully": "", + "Default Pinned Models": "", "Default Prompt Suggestions": "Default Prompt Suggestions", "Default to 389 or 636 if TLS is enabled": "", "Default to ALL": "", @@ -402,6 +406,7 @@ "Delete": "", "Delete a model": "Delete a model", "Delete All Chats": "", + "Delete all contents inside this folder": "", "Delete All Models": "", "Delete Chat": "", "Delete chat?": "", @@ -730,6 +735,7 @@ "Features": "", "Features Permissions": "", "February": "", + "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "", "Feedbacks": "", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "", "File Upload": "", "File uploaded successfully": "", + "File uploaded!": "", "Files": "", "Filter": "", "Filter is now globally disabled": "", @@ -857,6 +864,7 @@ "Image Compression": "", "Image Compression Height": "", "Image Compression Width": "", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "", "Image Generation Engine": "Image Engine", @@ -941,6 +949,7 @@ "Knowledge Name": "", "Knowledge Public Sharing": "", "Knowledge reset successfully.": "", + "Knowledge Sharing": "", "Knowledge updated successfully": "", "Kokoro.js (Browser)": "", "Kokoro.js Dtype": "", @@ -1006,6 +1015,7 @@ "Max Upload Size": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maximum of 3 models can be downloaded simultaneously. Please try again later.", "May": "", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "", "Models imported successfully": "", "Models Public Sharing": "", + "Models Sharing": "", "Mojeek Search API Key": "", "More": "", "More Concise": "", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "", "Notes": "", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "", "Notification Webhook": "", "Notifications": "Notifications", @@ -1274,6 +1286,7 @@ "Prompts": "Promptos", "Prompts Access": "", "Prompts Public Sharing": "", + "Prompts Sharing": "", "Provider Type": "", "Public": "", "Pull \"{{searchValue}}\" from Ollama.com": "", @@ -1457,6 +1470,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "", "Sets the size of the context window used to generate the next token.": "", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "", + "Setting": "", "Settings": "Settings much settings", "Settings saved successfully!": "Settings saved successfully! Very success!", "Share": "", @@ -1637,6 +1651,7 @@ "Tools Function Calling Prompt": "", "Tools have a function calling system that allows arbitrary code execution.": "", "Tools Public Sharing": "", + "Tools Sharing": "", "Top K": "Top K very top", "Top K Reranker": "", "Transformers": "", @@ -1684,6 +1699,7 @@ "Upload Pipeline": "", "Upload Progress": "Upload Progress much progress", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploading file...": "", "URL": "", "URL is required": "", "URL Mode": "URL Mode much mode", diff --git a/src/lib/i18n/locales/el-GR/translation.json b/src/lib/i18n/locales/el-GR/translation.json index 7269b5bda6..608805994b 100644 --- a/src/lib/i18n/locales/el-GR/translation.json +++ b/src/lib/i18n/locales/el-GR/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "Επιτρέπεται η Συνέχιση Απάντησης", "Allow Delete Messages": "Επιτρέπεται η διαγραφή μηνυμάτων", "Allow File Upload": "Επιτρέπεται το Ανέβασμα Αρχείων", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "Επιτρέπεται η χρήση πολλαπλών μοντέλων στη συνομιλία", "Allow non-local voices": "Επιτρέπονται μη τοπικές φωνές", "Allow Rate Response": "Επιτρέπεται η Αξιολόγηση Απάντησης", @@ -144,6 +145,7 @@ "Archived Chats": "Αρχειοθετημένες Συνομιλίες", "archived-chat-export": "εξαγωγή-αρχείου-συνομιλίας", "Are you sure you want to clear all memories? This action cannot be undone.": "Είστε σίγουροι ότι θέλετε να διαγράψετε όλες τις μνήμες; Αυτή η ενέργεια δεν μπορεί να αναιρεθεί.", + "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete this channel?": "Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το κανάλι;", "Are you sure you want to delete this message?": "Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το μήνυμα;", "Are you sure you want to unarchive all archived chats?": "Είστε σίγουροι ότι θέλετε να απο-αρχειοθετήσετε όλες τις αρχειοθετημένες συνομιλίες;", @@ -388,12 +390,14 @@ "Default description enabled": "", "Default Features": "Προεπιλεγμένες Λειτουργίες", "Default Filters": "Προεπιλεγμένα Φίλτρα", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "Προεπιλεγμένο Μοντέλο", "Default model updated": "Το προεπιλεγμένο μοντέλο ενημερώθηκε", "Default Models": "Προεπιλεγμένα Μοντέλα", "Default permissions": "Προεπιλεγμένα δικαιώματα", "Default permissions updated successfully": "Τα προεπιλεγμένα δικαιώματα ενημερώθηκαν με επιτυχία", + "Default Pinned Models": "", "Default Prompt Suggestions": "Προεπιλεγμένες Προτεινόμενες Προτροπές", "Default to 389 or 636 if TLS is enabled": "Προεπιλογή στο 389 ή 636 εάν είναι ενεργοποιημένο το TLS", "Default to ALL": "Προεπιλογή σε ΟΛΑ", @@ -402,6 +406,7 @@ "Delete": "Διαγραφή", "Delete a model": "Διαγραφή ενός μοντέλου", "Delete All Chats": "Διαγραφή Όλων των Συνομιλιών", + "Delete all contents inside this folder": "", "Delete All Models": "Διαγραφή Όλων των Μοντέλων", "Delete Chat": "Διαγραφή Συνομιλίας", "Delete chat?": "Διαγραφή συνομιλίας;", @@ -730,6 +735,7 @@ "Features": "Λειτουργίες", "Features Permissions": "", "February": "Φεβρουάριος", + "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "Ιστορικό Ανατροφοδότησης", "Feedbacks": "Ανατροφοδοτήσεις", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "Το μέγεθος του αρχείου δεν πρέπει να υπερβαίνει τα {{maxSize}} MB.", "File Upload": "Ανέβασμα Αρχείων", "File uploaded successfully": "", + "File uploaded!": "", "Files": "Αρχεία", "Filter": "Φίλτρο", "Filter is now globally disabled": "Το φίλτρο είναι τώρα καθολικά απενεργοποιημένο", @@ -857,6 +864,7 @@ "Image Compression": "", "Image Compression Height": "Ύψος Συμπίεσης Εικόνας", "Image Compression Width": "Πλάτος Συμπίεσης Εικόνας", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "Δημιουργία Εικόνας", "Image Generation Engine": "Μηχανή Δημιουργίας Εικόνας", @@ -941,6 +949,7 @@ "Knowledge Name": "Όνομα Knowledge", "Knowledge Public Sharing": "Κοινή χρήση Knowledge", "Knowledge reset successfully.": "Το Knowledge επαναφέρθηκε με επιτυχία.", + "Knowledge Sharing": "", "Knowledge updated successfully": "Το Knowledge ενημερώθηκε με επιτυχία", "Kokoro.js (Browser)": "", "Kokoro.js Dtype": "", @@ -1006,6 +1015,7 @@ "Max Upload Size": "Μέγιστο Μέγεθος Αρχείου", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Μέγιστο των 3 μοντέλων μπορούν να κατεβούν ταυτόχρονα. Παρακαλώ δοκιμάστε ξανά αργότερα.", "May": "Μάιος", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "Η διαμόρφωση των μοντέλων αποθηκεύτηκε με επιτυχία", "Models imported successfully": "", "Models Public Sharing": "", + "Models Sharing": "", "Mojeek Search API Key": "Κλειδί API Mojeek Search", "More": "Περισσότερα", "More Concise": "", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Σημείωση: Αν ορίσετε ένα ελάχιστο score, η αναζήτηση θα επιστρέψει μόνο έγγραφα με score μεγαλύτερο ή ίσο με το ελάχιστο score.", "Notes": "Σημειώσεις", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "Ήχος Ειδοποίησης", "Notification Webhook": "", "Notifications": "Ειδοποιήσεις", @@ -1274,6 +1286,7 @@ "Prompts": "Προτροπές", "Prompts Access": "Πρόσβαση Προτροπών", "Prompts Public Sharing": "", + "Prompts Sharing": "", "Provider Type": "", "Public": "Δημόσιο", "Pull \"{{searchValue}}\" from Ollama.com": "Τραβήξτε \"{{searchValue}}\" από το Ollama.com", @@ -1457,6 +1470,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "", "Sets the size of the context window used to generate the next token.": "", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "Ορίζει τις σειρές παύσης που θα χρησιμοποιηθούν. Όταν εντοπιστεί αυτό το μοτίβο, το LLM θα σταματήσει να δημιουργεί κείμενο και θα επιστρέψει. Πολλαπλά μοτίβα παύσης μπορούν να οριστούν καθορίζοντας πολλαπλές ξεχωριστές παραμέτρους παύσης σε ένα αρχείο μοντέλου.", + "Setting": "", "Settings": "Ρυθμίσεις", "Settings saved successfully!": "Οι Ρυθμίσεις αποθηκεύτηκαν με επιτυχία!", "Share": "Κοινή Χρήση", @@ -1637,6 +1651,7 @@ "Tools Function Calling Prompt": "Προτροπή Κλήσης Εργαλείων Λειτουργιών", "Tools have a function calling system that allows arbitrary code execution.": "Τα εργαλεία διαθέτουν ένα σύστημα κλήσης λειτουργιών που επιτρέπει την αυθαίρετη εκτέλεση κώδικα.", "Tools Public Sharing": "", + "Tools Sharing": "", "Top K": "Top K", "Top K Reranker": "", "Transformers": "Transformers", @@ -1684,6 +1699,7 @@ "Upload Pipeline": "Ανέβασμα Pipeline", "Upload Progress": "Πρόοδος Ανεβάσματος", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploading file...": "", "URL": "URL", "URL is required": "Το URL είναι απαραίτητο", "URL Mode": "Λειτουργία URL", diff --git a/src/lib/i18n/locales/en-GB/translation.json b/src/lib/i18n/locales/en-GB/translation.json index 5d0bb906a7..688f66548e 100644 --- a/src/lib/i18n/locales/en-GB/translation.json +++ b/src/lib/i18n/locales/en-GB/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "", "Allow Rate Response": "", @@ -144,6 +145,7 @@ "Archived Chats": "", "archived-chat-export": "", "Are you sure you want to clear all memories? This action cannot be undone.": "", + "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete this channel?": "", "Are you sure you want to delete this message?": "", "Are you sure you want to unarchive all archived chats?": "", @@ -388,12 +390,14 @@ "Default description enabled": "", "Default Features": "", "Default Filters": "", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "", "Default model updated": "", "Default Models": "", "Default permissions": "", "Default permissions updated successfully": "", + "Default Pinned Models": "", "Default Prompt Suggestions": "", "Default to 389 or 636 if TLS is enabled": "", "Default to ALL": "", @@ -402,6 +406,7 @@ "Delete": "", "Delete a model": "", "Delete All Chats": "", + "Delete all contents inside this folder": "", "Delete All Models": "", "Delete Chat": "", "Delete chat?": "", @@ -730,6 +735,7 @@ "Features": "", "Features Permissions": "", "February": "", + "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "", "Feedbacks": "", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "", "File Upload": "", "File uploaded successfully": "", + "File uploaded!": "", "Files": "", "Filter": "", "Filter is now globally disabled": "", @@ -857,6 +864,7 @@ "Image Compression": "", "Image Compression Height": "", "Image Compression Width": "", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "", "Image Generation Engine": "", @@ -941,6 +949,7 @@ "Knowledge Name": "", "Knowledge Public Sharing": "", "Knowledge reset successfully.": "", + "Knowledge Sharing": "", "Knowledge updated successfully": "", "Kokoro.js (Browser)": "", "Kokoro.js Dtype": "", @@ -1006,6 +1015,7 @@ "Max Upload Size": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "", "May": "", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "", "Models imported successfully": "", "Models Public Sharing": "", + "Models Sharing": "", "Mojeek Search API Key": "", "More": "", "More Concise": "", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "", "Notes": "", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "", "Notification Webhook": "", "Notifications": "", @@ -1274,6 +1286,7 @@ "Prompts": "", "Prompts Access": "", "Prompts Public Sharing": "", + "Prompts Sharing": "", "Provider Type": "", "Public": "", "Pull \"{{searchValue}}\" from Ollama.com": "", @@ -1457,6 +1470,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "", "Sets the size of the context window used to generate the next token.": "", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "", + "Setting": "", "Settings": "", "Settings saved successfully!": "", "Share": "", @@ -1637,6 +1651,7 @@ "Tools Function Calling Prompt": "", "Tools have a function calling system that allows arbitrary code execution.": "", "Tools Public Sharing": "", + "Tools Sharing": "", "Top K": "", "Top K Reranker": "", "Transformers": "", @@ -1684,6 +1699,7 @@ "Upload Pipeline": "", "Upload Progress": "", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploading file...": "", "URL": "", "URL is required": "", "URL Mode": "", diff --git a/src/lib/i18n/locales/en-US/translation.json b/src/lib/i18n/locales/en-US/translation.json index ba5b81229f..42b5a6e0f7 100644 --- a/src/lib/i18n/locales/en-US/translation.json +++ b/src/lib/i18n/locales/en-US/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "", "Allow Rate Response": "", @@ -144,6 +145,7 @@ "Archived Chats": "", "archived-chat-export": "", "Are you sure you want to clear all memories? This action cannot be undone.": "", + "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete this channel?": "", "Are you sure you want to delete this message?": "", "Are you sure you want to unarchive all archived chats?": "", @@ -388,12 +390,14 @@ "Default description enabled": "", "Default Features": "", "Default Filters": "", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "", "Default model updated": "", "Default Models": "", "Default permissions": "", "Default permissions updated successfully": "", + "Default Pinned Models": "", "Default Prompt Suggestions": "", "Default to 389 or 636 if TLS is enabled": "", "Default to ALL": "", @@ -402,6 +406,7 @@ "Delete": "", "Delete a model": "", "Delete All Chats": "", + "Delete all contents inside this folder": "", "Delete All Models": "", "Delete Chat": "", "Delete chat?": "", @@ -730,6 +735,7 @@ "Features": "", "Features Permissions": "", "February": "", + "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "", "Feedbacks": "", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "", "File Upload": "", "File uploaded successfully": "", + "File uploaded!": "", "Files": "", "Filter": "", "Filter is now globally disabled": "", @@ -857,6 +864,7 @@ "Image Compression": "", "Image Compression Height": "", "Image Compression Width": "", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "", "Image Generation Engine": "", @@ -941,6 +949,7 @@ "Knowledge Name": "", "Knowledge Public Sharing": "", "Knowledge reset successfully.": "", + "Knowledge Sharing": "", "Knowledge updated successfully": "", "Kokoro.js (Browser)": "", "Kokoro.js Dtype": "", @@ -1006,6 +1015,7 @@ "Max Upload Size": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "", "May": "", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "", "Models imported successfully": "", "Models Public Sharing": "", + "Models Sharing": "", "Mojeek Search API Key": "", "More": "", "More Concise": "", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "", "Notes": "", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "", "Notification Webhook": "", "Notifications": "", @@ -1274,6 +1286,7 @@ "Prompts": "", "Prompts Access": "", "Prompts Public Sharing": "", + "Prompts Sharing": "", "Provider Type": "", "Public": "", "Pull \"{{searchValue}}\" from Ollama.com": "", @@ -1457,6 +1470,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "", "Sets the size of the context window used to generate the next token.": "", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "", + "Setting": "", "Settings": "", "Settings saved successfully!": "", "Share": "", @@ -1637,6 +1651,7 @@ "Tools Function Calling Prompt": "", "Tools have a function calling system that allows arbitrary code execution.": "", "Tools Public Sharing": "", + "Tools Sharing": "", "Top K": "", "Top K Reranker": "", "Transformers": "", @@ -1684,6 +1699,7 @@ "Upload Pipeline": "", "Upload Progress": "", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploading file...": "", "URL": "", "URL is required": "", "URL Mode": "", diff --git a/src/lib/i18n/locales/es-ES/translation.json b/src/lib/i18n/locales/es-ES/translation.json index 4055ccb4e2..6d3ca1486d 100644 --- a/src/lib/i18n/locales/es-ES/translation.json +++ b/src/lib/i18n/locales/es-ES/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "Permitir Continuar Respuesta", "Allow Delete Messages": "Permitir Borrar Mensajes", "Allow File Upload": "Permitir Subida de Archivos", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "Permitir Chat con Múltiples Modelos", "Allow non-local voices": "Permitir voces no locales", "Allow Rate Response": "Permitir Calificar Respuesta", @@ -144,6 +145,7 @@ "Archived Chats": "Chats archivados", "archived-chat-export": "exportar chats archivados", "Are you sure you want to clear all memories? This action cannot be undone.": "¿Segur@ de que quieres borrar todas las memorias? (¡esta acción NO se puede deshacer!)", + "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete this channel?": "¿Segur@ de que quieres eliminar este canal?", "Are you sure you want to delete this message?": "¿Segur@ de que quieres eliminar este mensaje? ", "Are you sure you want to unarchive all archived chats?": "¿Segur@ de que quieres desarchivar todos los chats archivados?", @@ -388,12 +390,14 @@ "Default description enabled": "Descripción predeterminada activada", "Default Features": "Características Predeterminadas", "Default Filters": "Filtros Predeterminados", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "El modo predeterminado trabaja con un amplio rango de modelos, llamando a las herramientas una vez antes de la ejecución. El modo nativo aprovecha las capacidades de llamada de herramientas integradas del modelo, pero requiere que el modelo admita inherentemente esta función.", "Default Model": "Modelo Predeterminado", "Default model updated": "El modelo Predeterminado ha sido actualizado", "Default Models": "Modelos Predeterminados", "Default permissions": "Permisos Predeterminados", "Default permissions updated successfully": "Permisos predeterminados actualizados correctamente", + "Default Pinned Models": "", "Default Prompt Suggestions": "Sugerencias Predeterminadas de Indicador", "Default to 389 or 636 if TLS is enabled": "Predeterminado a 389, o 636 si TLS está habilitado", "Default to ALL": "Predeterminado a TODOS", @@ -402,6 +406,7 @@ "Delete": "Borrar", "Delete a model": "Borrar un modelo", "Delete All Chats": "Borrar todos los chats", + "Delete all contents inside this folder": "", "Delete All Models": "Borrar todos los modelos", "Delete Chat": "Borrar Chat", "Delete chat?": "¿Borrar el chat?", @@ -730,6 +735,7 @@ "Features": "Características", "Features Permissions": "Permisos de las Características", "February": "Febrero", + "Feedback deleted successfully": "", "Feedback Details": "Detalle de la Opinión", "Feedback History": "Historia de la Opiniones", "Feedbacks": "Opiniones", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "Tamaño del archivo no debe exceder {{maxSize}} MB.", "File Upload": "Subir Archivo", "File uploaded successfully": "Archivo subido correctamente", + "File uploaded!": "", "Files": "Archivos", "Filter": "Filtro", "Filter is now globally disabled": "El filtro ahora está desactivado globalmente", @@ -857,6 +864,7 @@ "Image Compression": "Compresión de Imagen", "Image Compression Height": "Alto en Compresión de Imagen", "Image Compression Width": "Ancho en Compresión de Imagen", + "Image Edit": "", "Image Edit Engine": "Motor del Editor de Imágenes", "Image Generation": "Generación de Imagen", "Image Generation Engine": "Motor de Generación de Imagen", @@ -941,6 +949,7 @@ "Knowledge Name": "Nombre del Conocimiento", "Knowledge Public Sharing": "Compartir Conocimiento Públicamente", "Knowledge reset successfully.": "Conocimiento restablecido correctamente.", + "Knowledge Sharing": "", "Knowledge updated successfully": "Conocimiento actualizado correctamente.", "Kokoro.js (Browser)": "Kokoro.js (Navegador)", "Kokoro.js Dtype": "Kokoro.js DType", @@ -1006,6 +1015,7 @@ "Max Upload Size": "Tamaño Max de Subidas", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Se puede descargar un máximo de 3 modelos simultáneamente. Por favor, reinténtelo más tarde.", "May": "Mayo", + "MBR": "", "MCP": "MCP", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "El soporte de MCP es experimental y su especificación cambia con frecuencia, lo que puede generar incompatibilidades. El equipo de Open WebUI mantiene directamente la compatibilidad con la especificación OpenAPI, lo que la convierte en la opción más fiable para la compatibilidad.", "Medium": "Medio", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "Configuración de Modelos guardada correctamente", "Models imported successfully": "Modelos importados correctamente", "Models Public Sharing": "Compartir Modelos Públicamente", + "Models Sharing": "", "Mojeek Search API Key": "Clave API de Mojeek Search", "More": "Más", "More Concise": "Más Conciso", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Nota: Si estableces una puntuación mínima, la búsqueda sólo devolverá documentos con una puntuación mayor o igual a la puntuación mínima establecida.", "Notes": "Notas", "Notes Public Sharing": "Compartir Notas Publicamente", + "Notes Sharing": "", "Notification Sound": "Notificación Sonora", "Notification Webhook": "Notificación Enganchada (webhook)", "Notifications": "Notificaciones", @@ -1274,6 +1286,7 @@ "Prompts": "Indicadores", "Prompts Access": "Acceso a Indicadores", "Prompts Public Sharing": "Compartir Indicadores Públicamente", + "Prompts Sharing": "", "Provider Type": "Tipo de Proveedor", "Public": "Público", "Pull \"{{searchValue}}\" from Ollama.com": "Extraer \"{{searchValue}}\" desde Ollama.com", @@ -1458,6 +1471,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "Establece la semilla de números aleatorios a usar para la generación. Establecer esto en un número específico hará que el modelo genere el mismo texto para el mismo indicador(prompt).", "Sets the size of the context window used to generate the next token.": "Establece el tamaño de la ventana del contexto utilizada para generar el siguiente token.", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "Establece las secuencias de parada a usar. Cuando se encuentre este patrón, el LLM dejará de generar texto y retornará. Se pueden establecer varios patrones de parada especificando separadamente múltiples parámetros de parada en un archivo de modelo.", + "Setting": "", "Settings": "Ajustes", "Settings saved successfully!": "¡Ajustes guardados correctamente!", "Share": "Compartir", @@ -1638,6 +1652,7 @@ "Tools Function Calling Prompt": "Indicador para la Función de Llamada a las Herramientas", "Tools have a function calling system that allows arbitrary code execution.": "Las herramientas tienen un sistema de llamada de funciones que permite la ejecución de código arbitrario.", "Tools Public Sharing": "Compartir Herramientas Publicamente", + "Tools Sharing": "", "Top K": "Top K", "Top K Reranker": "Top K Reclasificador", "Transformers": "Transformadores", @@ -1685,6 +1700,7 @@ "Upload Pipeline": "Subir Tubería", "Upload Progress": "Progreso de la Subida", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Progreso de la Subida: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", + "Uploading file...": "", "URL": "URL", "URL is required": "La URL es requerida", "URL Mode": "Modo URL", diff --git a/src/lib/i18n/locales/et-EE/translation.json b/src/lib/i18n/locales/et-EE/translation.json index c8184f3322..91b950dda5 100644 --- a/src/lib/i18n/locales/et-EE/translation.json +++ b/src/lib/i18n/locales/et-EE/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "Luba vastuse jätkamine", "Allow Delete Messages": "Luba sõnumite kustutamine", "Allow File Upload": "Luba failide üleslaadimine", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "Luba mitu mudelit vestluses", "Allow non-local voices": "Luba mitte-lokaalsed hääled", "Allow Rate Response": "Luba vastuse hindamine", @@ -144,6 +145,7 @@ "Archived Chats": "Arhiveeritud vestlused", "archived-chat-export": "arhiveeritud-vestluste-eksport", "Are you sure you want to clear all memories? This action cannot be undone.": "Kas olete kindel, et soovite kustutada kõik mälestused? Seda toimingut ei saa tagasi võtta.", + "Are you sure you want to delete \"{{NAME}}\"?": "", "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 message?": "Kas olete kindel, et soovite selle sõnumi kustutada?", "Are you sure you want to unarchive all archived chats?": "Kas olete kindel, et soovite kõik arhiveeritud vestlused arhiivist eemaldada?", @@ -388,12 +390,14 @@ "Default description enabled": "Vaikekirjeldus lubatud", "Default Features": "Vaikefunktsioonid", "Default Filters": "Vaikimisi filtrid", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Vaikimisi mode works koos a wider range - mudelid autor calling tööriista once before execution. Native mode leverages the mudelid built-in tool-calling capabilities, but requires the mudel kuni inherently support this funktsioon.", "Default Model": "Vaikimisi mudel", "Default model updated": "Vaikimisi mudel uuendatud", "Default Models": "Vaikimisi mudelid", "Default permissions": "Vaikimisi õigused", "Default permissions updated successfully": "Vaikimisi õigused edukalt uuendatud", + "Default Pinned Models": "", "Default Prompt Suggestions": "Vaikimisi vihjete soovitused", "Default to 389 or 636 if TLS is enabled": "Vaikimisi 389 või 636, kui TLS on lubatud", "Default to ALL": "Vaikimisi KÕIK", @@ -402,6 +406,7 @@ "Delete": "Kustuta", "Delete a model": "Kustuta mudel", "Delete All Chats": "Kustuta kõik vestlused", + "Delete all contents inside this folder": "", "Delete All Models": "Kustuta kõik mudelid", "Delete Chat": "Kustuta vestlus", "Delete chat?": "Kustutada vestlus?", @@ -730,6 +735,7 @@ "Features": "Funktsioonid", "Features Permissions": "Funktsioonide õigused", "February": "Veebruar", + "Feedback deleted successfully": "", "Feedback Details": "Tagasiside Details", "Feedback History": "Tagasiside ajalugu", "Feedbacks": "Tagasisided", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "Faili suurus ei tohiks ületada {{maxSize}} MB.", "File Upload": "Faili üleslaadimine", "File uploaded successfully": "Fail edukalt üles laaditud", + "File uploaded!": "", "Files": "Failid", "Filter": "Filter", "Filter is now globally disabled": "Filter on nüüd globaalselt keelatud", @@ -857,6 +864,7 @@ "Image Compression": "Pildi tihendamine", "Image Compression Height": "Pilditihenduse kõrgus", "Image Compression Width": "Pilditihenduse laius", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "Pildi genereerimine", "Image Generation Engine": "Pildi genereerimise mootor", @@ -941,6 +949,7 @@ "Knowledge Name": "Teadmiste nimi", "Knowledge Public Sharing": "Teadmiste avalik jagamine", "Knowledge reset successfully.": "Teadmised edukalt lähtestatud.", + "Knowledge Sharing": "", "Knowledge updated successfully": "Teadmised edukalt uuendatud", "Kokoro.js (Browser)": "Kokoro.js (brauser)", "Kokoro.js Dtype": "Kokoro.js andmetüüp", @@ -1006,6 +1015,7 @@ "Max Upload Size": "Maksimaalne üleslaadimise suurus", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Korraga saab alla laadida maksimaalselt 3 mudelit. Palun proovige hiljem uuesti.", "May": "Mai", + "MBR": "", "MCP": "MCP", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "MCP support is katsetuslik ja its specification changes often, which can lead kuni incompatibilities. OpenAPI specification support is directly maintained autor the Ava WebUI team, making it the more reliable option for compatibility.", "Medium": "Keskmine", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "Mudelite seadistus edukalt salvestatud", "Models imported successfully": "Mudelid edukalt imporditud", "Models Public Sharing": "Mudelite avalik jagamine", + "Models Sharing": "", "Mojeek Search API Key": "Mojeek Search API võti", "More": "Rohkem", "More Concise": "Kokkuvõtlikum", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Märkus: kui määrate minimaalse skoori, tagastab otsing ainult dokumendid, mille skoor on suurem või võrdne minimaalse skooriga.", "Notes": "Märkmed", "Notes Public Sharing": "Märkmed Avalik Sharing", + "Notes Sharing": "", "Notification Sound": "Teavituse heli", "Notification Webhook": "Teavituse webhook", "Notifications": "Teavitused", @@ -1274,6 +1286,7 @@ "Prompts": "Vihjed", "Prompts Access": "Vihjete juurdepääs", "Prompts Public Sharing": "Prompts Avalik Sharing", + "Prompts Sharing": "", "Provider Type": "Provider Type", "Public": "Avalik", "Pull \"{{searchValue}}\" from Ollama.com": "Tõmba \"{{searchValue}}\" Ollama.com-ist", @@ -1457,6 +1470,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "Määrab genereerimiseks kasutatava juhusliku arvu seemne. Selle määramine kindlale numbrile paneb mudeli genereerima sama teksti sama vihje korral.", "Sets the size of the context window used to generate the next token.": "Määrab järgmise tokeni genereerimiseks kasutatava konteksti akna suuruse.", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "Määrab kasutatavad lõpetamise järjestused. Kui see muster kohatakse, lõpetab LLM teksti genereerimise ja tagastab. Mitme lõpetamise mustri saab määrata, täpsustades modelfile'is mitu eraldi lõpetamise parameetrit.", + "Setting": "", "Settings": "Seaded", "Settings saved successfully!": "Seaded edukalt salvestatud!", "Share": "Jaga", @@ -1637,6 +1651,7 @@ "Tools Function Calling Prompt": "Tööriistade funktsioonide kutsumise vihje", "Tools have a function calling system that allows arbitrary code execution.": "Tööriistadel on funktsioonide kutsumise süsteem, mis võimaldab suvalise koodi täitmist.", "Tools Public Sharing": "Tööriista Avalik Sharing", + "Tools Sharing": "", "Top K": "Top K", "Top K Reranker": "Top K Reranker", "Transformers": "Transformers", @@ -1684,6 +1699,7 @@ "Upload Pipeline": "Laadi torustik üles", "Upload Progress": "Üleslaadimise progress", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Laadi Edenemine: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", + "Uploading file...": "", "URL": "URL", "URL is required": "URL is required", "URL Mode": "URL režiim", diff --git a/src/lib/i18n/locales/eu-ES/translation.json b/src/lib/i18n/locales/eu-ES/translation.json index cb67b98fba..b174d5500f 100644 --- a/src/lib/i18n/locales/eu-ES/translation.json +++ b/src/lib/i18n/locales/eu-ES/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "Baimendu Fitxategiak Igotzea", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Baimendu urruneko ahotsak", "Allow Rate Response": "", @@ -144,6 +145,7 @@ "Archived Chats": "Artxibatutako Txatak", "archived-chat-export": "artxibatutako-txat-esportazioa", "Are you sure you want to clear all memories? This action cannot be undone.": "", + "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete this channel?": "", "Are you sure you want to delete this message?": "", "Are you sure you want to unarchive all archived chats?": "Ziur zaude artxibatutako txat guztiak desartxibatu nahi dituzula?", @@ -388,12 +390,14 @@ "Default description enabled": "", "Default Features": "", "Default Filters": "", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "Eredu Lehenetsia", "Default model updated": "Eredu lehenetsia eguneratu da", "Default Models": "Eredu Lehenetsiak", "Default permissions": "Baimen lehenetsiak", "Default permissions updated successfully": "Baimen lehenetsiak ongi eguneratu dira", + "Default Pinned Models": "", "Default Prompt Suggestions": "Prompt Iradokizun Lehenetsiak", "Default to 389 or 636 if TLS is enabled": "Lehenetsi 389 edo 636 TLS gaituta badago", "Default to ALL": "Lehenetsi GUZTIAK", @@ -402,6 +406,7 @@ "Delete": "Ezabatu", "Delete a model": "Ezabatu eredu bat", "Delete All Chats": "Ezabatu Txat Guztiak", + "Delete all contents inside this folder": "", "Delete All Models": "Ezabatu Eredu Guztiak", "Delete Chat": "Ezabatu Txata", "Delete chat?": "Ezabatu txata?", @@ -730,6 +735,7 @@ "Features": "", "Features Permissions": "", "February": "Otsaila", + "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "Feedbacken Historia", "Feedbacks": "Feedbackak", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "Fitxategiaren tamainak ez luke {{maxSize}} MB gainditu behar.", "File Upload": "", "File uploaded successfully": "", + "File uploaded!": "", "Files": "Fitxategiak", "Filter": "", "Filter is now globally disabled": "Iragazkia orain globalki desgaituta dago", @@ -857,6 +864,7 @@ "Image Compression": "", "Image Compression Height": "", "Image Compression Width": "", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "", "Image Generation Engine": "Irudi Sorkuntza Motorea", @@ -941,6 +949,7 @@ "Knowledge Name": "", "Knowledge Public Sharing": "", "Knowledge reset successfully.": "Ezagutza ongi berrezarri da.", + "Knowledge Sharing": "", "Knowledge updated successfully": "Ezagutza ongi eguneratu da.", "Kokoro.js (Browser)": "", "Kokoro.js Dtype": "", @@ -1006,6 +1015,7 @@ "Max Upload Size": "Karga tamaina maximoa", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Gehienez 3 modelo deskarga daitezke aldi berean. Saiatu berriro geroago.", "May": "Maiatza", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "Modeloen konfigurazioa ongi gorde da", "Models imported successfully": "", "Models Public Sharing": "", + "Models Sharing": "", "Mojeek Search API Key": "Mojeek bilaketa API gakoa", "More": "Gehiago", "More Concise": "", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Oharra: Gutxieneko puntuazio bat ezartzen baduzu, bilaketak gutxieneko puntuazioa baino handiagoa edo berdina duten dokumentuak soilik itzuliko ditu.", "Notes": "Oharrak", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "", "Notification Webhook": "", "Notifications": "Jakinarazpenak", @@ -1274,6 +1286,7 @@ "Prompts": "Prompt-ak", "Prompts Access": "Prompt sarbidea", "Prompts Public Sharing": "", + "Prompts Sharing": "", "Provider Type": "", "Public": "", "Pull \"{{searchValue}}\" from Ollama.com": "Ekarri \"{{searchValue}}\" Ollama.com-etik", @@ -1457,6 +1470,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "", "Sets the size of the context window used to generate the next token.": "", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "Ezartzen ditu erabiliko diren gelditzeko sekuentziak. Patroi hau aurkitzen denean, LLMak testua sortzeari utziko dio eta itzuli egingo da. Gelditzeko patroi anitz ezar daitezke modelfile batean gelditzeko parametro anitz zehaztuz.", + "Setting": "", "Settings": "Ezarpenak", "Settings saved successfully!": "Ezarpenak ongi gorde dira!", "Share": "Partekatu", @@ -1637,6 +1651,7 @@ "Tools Function Calling Prompt": "", "Tools have a function calling system that allows arbitrary code execution.": "Tresnek kode arbitrarioa exekutatzeko aukera ematen duen funtzio deitzeko sistema dute.", "Tools Public Sharing": "", + "Tools Sharing": "", "Top K": "Goiko K", "Top K Reranker": "", "Transformers": "Transformatzaileak", @@ -1684,6 +1699,7 @@ "Upload Pipeline": "Kargatu Pipeline-a", "Upload Progress": "Kargaren aurrerapena", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploading file...": "", "URL": "URLa", "URL is required": "", "URL Mode": "URL modua", diff --git a/src/lib/i18n/locales/fa-IR/translation.json b/src/lib/i18n/locales/fa-IR/translation.json index 0237039e4c..4e145d8d5a 100644 --- a/src/lib/i18n/locales/fa-IR/translation.json +++ b/src/lib/i18n/locales/fa-IR/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "مجاز کردن ادامه پاسخ", "Allow Delete Messages": "مجاز کردن حذف پیام\u200cها", "Allow File Upload": "اجازه بارگذاری فایل", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "اجازه استفاده از چند مدل در گفتگو", "Allow non-local voices": "اجازه صداهای غیر محلی", "Allow Rate Response": "مجاز کردن امتیازدهی به پاسخ", @@ -144,6 +145,7 @@ "Archived Chats": "گفتگوهای بایگانی\u200cشده", "archived-chat-export": "خروجی-گفتگوی-بایگانی-شده", "Are you sure you want to clear all memories? This action cannot be undone.": "آیا مطمئن هستید که می\u200cخواهید تمام حافظه\u200cها را پاک کنید؟ این عمل قابل بازگشت نیست.", + "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete this channel?": "آیا مطمئن هستید که می\u200cخواهید این کانال را حذف کنید؟", "Are you sure you want to delete this message?": "آیا مطمئن هستید که می\u200cخواهید این پیام را حذف کنید؟", "Are you sure you want to unarchive all archived chats?": "آیا مطمئن هستید که می\u200cخواهید همه گفتگوهای بایگانی شده را از بایگانی خارج کنید؟", @@ -388,12 +390,14 @@ "Default description enabled": "توضیحات پیش\u200cفرض فعال شد", "Default Features": "ویژگی\u200cهای پیش\u200cفرض", "Default Filters": "فیلترهای پیش\u200cفرض", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "حالت پیش\u200cفرض با فراخوانی ابزارها یک بار قبل از اجرا، با طیف وسیع\u200cتری از مدل\u200cها کار می\u200cکند. حالت بومی از قابلیت\u200cهای داخلی فراخوانی ابزار مدل استفاده می\u200cکند، اما مدل باید به طور ذاتی این ویژگی را پشتیبانی کند.", "Default Model": "مدل پیشفرض", "Default model updated": "مدل پیشفرض به\u200cروزرسانی شد", "Default Models": "مدل\u200cهای پیش\u200cفرض", "Default permissions": "مجوزهای پیش\u200cفرض", "Default permissions updated successfully": "مجوزهای پیش\u200cفرض با موفقیت به\u200cروز شدند", + "Default Pinned Models": "", "Default Prompt Suggestions": "پیشنهادات پرامپت پیش فرض", "Default to 389 or 636 if TLS is enabled": "پیش\u200cفرض به 389 یا 636 اگر TLS فعال باشد", "Default to ALL": "پیش\u200cفرض به همه", @@ -402,6 +406,7 @@ "Delete": "حذف", "Delete a model": "حذف یک مدل", "Delete All Chats": "حذف همه گفتگوها", + "Delete all contents inside this folder": "", "Delete All Models": "حذف همه مدل\u200cها", "Delete Chat": "حذف گپ", "Delete chat?": "گفتگو حذف شود؟", @@ -730,6 +735,7 @@ "Features": "ویژگی\u200cها", "Features Permissions": "مجوزهای ویژگی\u200cها", "February": "فوریه", + "Feedback deleted successfully": "", "Feedback Details": "جزئیات بازخورد", "Feedback History": "تاریخچهٔ بازخورد", "Feedbacks": "بازخوردها", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "حجم پرونده نبایستی از {{maxSize}} MB بیشتر باشد.", "File Upload": "آپلود فایل", "File uploaded successfully": "پرونده با موفقیت بارگذاری شد", + "File uploaded!": "", "Files": "پرونده\u200cها", "Filter": "فیلتر", "Filter is now globally disabled": "فیلتر به صورت سراسری غیرفعال شد", @@ -857,6 +864,7 @@ "Image Compression": "فشرده\u200cسازی تصویر", "Image Compression Height": "ارتفاع فشرده\u200cسازی تصویر", "Image Compression Width": "عرض فشرده\u200cسازی تصویر", + "Image Edit": "", "Image Edit Engine": "موتور ویرایش تصویر", "Image Generation": "تولید تصویر", "Image Generation Engine": "موتور تولید تصویر", @@ -941,6 +949,7 @@ "Knowledge Name": "نام دانش", "Knowledge Public Sharing": "اشتراک\u200cگذاری عمومی دانش", "Knowledge reset successfully.": "دانش با موفقیت بازنشانی شد.", + "Knowledge Sharing": "", "Knowledge updated successfully": "دانش با موفقیت به\u200cروز شد", "Kokoro.js (Browser)": "Kokoro.js (مرورگر)", "Kokoro.js Dtype": "نوع داده Kokoro.js", @@ -1006,6 +1015,7 @@ "Max Upload Size": "حداکثر اندازه آپلود", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "حداکثر 3 مدل را می توان به طور همزمان دانلود کرد. لطفاً بعداً دوباره امتحان کنید.", "May": "ماهی", + "MBR": "", "MCP": "MCP", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "پشتیبانی MCP آزمایشی است و مشخصات آن اغلب تغییر می\u200cکند، که می\u200cتواند منجر به ناسازگاری شود. پشتیبانی از مشخصات OpenAPI مستقیماً توسط تیم Open WebUI نگهداری می\u200cشود و آن را به گزینه قابل اعتماد\u200cتری برای سازگاری تبدیل می\u200cکند.", "Medium": "متوسط", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "پیکربندی مدل\u200cها با موفقیت ذخیره شد", "Models imported successfully": "مدل\u200cها با موفقیت وارد شدند", "Models Public Sharing": "اشتراک\u200cگذاری عمومی مدل\u200cها", + "Models Sharing": "", "Mojeek Search API Key": "کلید API جستجوی موجیک", "More": "بیشتر", "More Concise": "خلاصه\u200cتر", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "توجه: اگر حداقل نمره را تعیین کنید، جستجو تنها اسنادی را با نمره بیشتر یا برابر با حداقل نمره باز می گرداند.", "Notes": "یادداشت\u200cها", "Notes Public Sharing": "اشتراک\u200cگذاری عمومی یادداشت\u200cها", + "Notes Sharing": "", "Notification Sound": "صدای اعلان", "Notification Webhook": "وب\u200cهوک اعلان", "Notifications": "اعلان", @@ -1274,6 +1286,7 @@ "Prompts": "پرامپت\u200cها", "Prompts Access": "دسترسی پرامپت\u200cها", "Prompts Public Sharing": "اشتراک\u200cگذاری عمومی پرامپت\u200cها", + "Prompts Sharing": "", "Provider Type": "نوع ارائه\u200cدهنده", "Public": "عمومی", "Pull \"{{searchValue}}\" from Ollama.com": "بازگرداندن \"{{searchValue}}\" از Ollama.com", @@ -1457,6 +1470,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "عدد تصادفی اولیه را برای تولید تنظیم می\u200cکند. تنظیم این به یک عدد خاص باعث می\u200cشود مدل برای پرامپت یکسان، متن یکسانی تولید کند.", "Sets the size of the context window used to generate the next token.": "اندازه پنجره متن مورد استفاده برای تولید توکن بعدی را تنظیم می\u200cکند.", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "توالی\u200cهای توقف مورد استفاده را تنظیم می\u200cکند. وقتی این الگو مشاهده شود، LLM تولید متن را متوقف کرده و برمی\u200cگردد. الگوهای توقف متعدد می\u200cتوانند با مشخص کردن پارامترهای توقف جداگانه متعدد در فایل مدل تنظیم شوند.", + "Setting": "", "Settings": "تنظیمات", "Settings saved successfully!": "تنظیمات با موفقیت ذخیره شد!", "Share": "اشتراک\u200cگذاری", @@ -1637,6 +1651,7 @@ "Tools Function Calling Prompt": "پرامپت فراخوانی تابع ابزارها", "Tools have a function calling system that allows arbitrary code execution.": "ابزارها دارای سیستم فراخوانی تابع هستند که اجازه اجرای کد دلخواه را می\u200cدهد.", "Tools Public Sharing": "اشتراک\u200cگذاری عمومی ابزارها", + "Tools Sharing": "", "Top K": "Top K", "Top K Reranker": "رتبه\u200cبندی مجدد Top K", "Transformers": "ترنسفورمرها", @@ -1684,6 +1699,7 @@ "Upload Pipeline": "خط تولید آپلود", "Upload Progress": "پیشرفت آپلود", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "پیشرفت آپلود: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}٪)", + "Uploading file...": "", "URL": "آدرس اینترنتی", "URL is required": "آدرس URL مورد نیاز است", "URL Mode": "حالت URL", diff --git a/src/lib/i18n/locales/fi-FI/translation.json b/src/lib/i18n/locales/fi-FI/translation.json index c2b2de46e4..68f7525a06 100644 --- a/src/lib/i18n/locales/fi-FI/translation.json +++ b/src/lib/i18n/locales/fi-FI/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "Salli jatka vastausta", "Allow Delete Messages": "Salli viestien poisto", "Allow File Upload": "Salli tiedostojen lataus", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "Salli useampi malli keskustelussa", "Allow non-local voices": "Salli ei-paikalliset äänet", "Allow Rate Response": "Salli viestien arviointi", @@ -144,6 +145,7 @@ "Archived Chats": "Arkistoidut keskustelut", "archived-chat-export": "arkistoitu-keskustelu-vienti", "Are you sure you want to clear all memories? This action cannot be undone.": "Haluatko varmasti tyhjentää kaikki muistot? Tätä toimintoa ei voi peruuttaa.", + "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete this channel?": "Haluatko varmasti poistaa tämän kanavan?", "Are you sure you want to delete this message?": "Haluatko varmasti poistaa tämän viestin?", "Are you sure you want to unarchive all archived chats?": "Haluatko varmasti purkaa kaikkien arkistoitujen keskustelujen arkistoinnin?", @@ -388,12 +390,14 @@ "Default description enabled": "Oletuskuvaus käytössä", "Default Features": "Oletus ominaisuudet", "Default Filters": "Oletus suodattimet", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Oletustila toimii laajemman mallivalikoiman kanssa kutsumalla työkaluja kerran ennen suorittamista. Natiivitila hyödyntää mallin sisäänrakennettuja työkalujen kutsumisominaisuuksia, mutta edellyttää, että malli tukee tätä ominaisuutta.", "Default Model": "Oletusmalli", "Default model updated": "Oletusmalli päivitetty", "Default Models": "Oletusmallit", "Default permissions": "Oletuskäyttöoikeudet", "Default permissions updated successfully": "Oletuskäyttöoikeudet päivitetty onnistuneesti", + "Default Pinned Models": "", "Default Prompt Suggestions": "Oletuskehotteiden ehdotukset", "Default to 389 or 636 if TLS is enabled": "Oletus 389 tai 636, jos TLS on käytössä", "Default to ALL": "Oletus KAIKKI", @@ -402,6 +406,7 @@ "Delete": "Poista", "Delete a model": "Poista malli", "Delete All Chats": "Poista kaikki keskustelut", + "Delete all contents inside this folder": "", "Delete All Models": "Poista kaikki mallit", "Delete Chat": "Poista keskustelu", "Delete chat?": "Haluatko varmasti poistaa tämän keskustelun?", @@ -730,6 +735,7 @@ "Features": "Ominaisuudet", "Features Permissions": "Ominaisuuksien käyttöoikeudet", "February": "helmikuu", + "Feedback deleted successfully": "", "Feedback Details": "Palautteen tiedot", "Feedback History": "Palautehistoria", "Feedbacks": "Palautteet", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "Tiedoston koko ei saa ylittää {{maxSize}} MB.", "File Upload": "Tiedoston lataus", "File uploaded successfully": "Tiedosto ladattiin onnistuneesti", + "File uploaded!": "", "Files": "Tiedostot", "Filter": "Suodata", "Filter is now globally disabled": "Suodatin on nyt poistettu käytöstä globaalisti", @@ -857,6 +864,7 @@ "Image Compression": "Kuvan pakkaus", "Image Compression Height": "Kuvan pakkauksen korkeus", "Image Compression Width": "Kuvan pakkauksen leveys", + "Image Edit": "", "Image Edit Engine": "Kuvan muokkaus moottori", "Image Generation": "Kuvagenerointi", "Image Generation Engine": "Kuvagenerointimoottori", @@ -941,6 +949,7 @@ "Knowledge Name": "Tietokannan nimi", "Knowledge Public Sharing": "Tietokannan julkinen jakaminen", "Knowledge reset successfully.": "Tietokanta nollattu onnistuneesti.", + "Knowledge Sharing": "", "Knowledge updated successfully": "Tietokanta päivitetty onnistuneesti", "Kokoro.js (Browser)": "Kokoro.js (selain)", "Kokoro.js Dtype": "", @@ -1006,6 +1015,7 @@ "Max Upload Size": "Latausten enimmäiskoko", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Enintään 3 mallia voidaan ladata samanaikaisesti. Yritä myöhemmin uudelleen.", "May": "toukokuu", + "MBR": "", "MCP": "MCP", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "MCP-tuki on kokeellinen ja sen määritykset muuttuvat usein, mikä voi johtaa yhteensopivuus ongelmiin. OpenAPI-määritysten tuesta vastaa suoraan Open WebUI -tiimi, joten se on luotettavampi vaihtoehto yhteensopivuuden kannalta.", "Medium": "Keskitaso", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "Mallien määritykset tallennettu onnistuneesti", "Models imported successfully": "Mallit tuotiin onnistuneesti", "Models Public Sharing": "Mallin julkinen jakaminen", + "Models Sharing": "", "Mojeek Search API Key": "Mojeek Search API -avain", "More": "Lisää", "More Concise": "Ytimekkäämpi", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Huomautus: Jos asetat vähimmäispistemäärän, haku palauttaa vain sellaiset asiakirjat, joiden pistemäärä on vähintään vähimmäismäärä.", "Notes": "Muistiinpanot", "Notes Public Sharing": "Muistiinpanojen julkinen jako", + "Notes Sharing": "", "Notification Sound": "Ilmoitusääni", "Notification Webhook": "Webhook ilmoitus", "Notifications": "Ilmoitukset", @@ -1274,6 +1286,7 @@ "Prompts": "Kehotteet", "Prompts Access": "Kehoitteiden käyttöoikeudet", "Prompts Public Sharing": "Kehoitteiden julkinen jakaminen", + "Prompts Sharing": "", "Provider Type": "Tarjoajan tyyppi", "Public": "Julkinen", "Pull \"{{searchValue}}\" from Ollama.com": "Lataa \"{{searchValue}}\" Ollama.comista", @@ -1457,6 +1470,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "Määrittä satunnainen siemenluku luomista varten. Jos asetat siemenluvun, malli tuottaa saman vastauksen samalle kehotteelle.", "Sets the size of the context window used to generate the next token.": "Määrittää konteksti-ikkunan koon seuraavaksi luotavalle tokenille.", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "Määrittää käytettävät lopetussekvenssit. Kun tämä kuvio havaitaan, LLM lopettaa tekstin tuottamisen ja palauttaa. Useita lopetuskuvioita voidaan asettaa määrittämällä useita erillisiä lopetusparametreja mallitiedostoon.", + "Setting": "", "Settings": "Asetukset", "Settings saved successfully!": "Asetukset tallennettu onnistuneesti!", "Share": "Jaa", @@ -1637,6 +1651,7 @@ "Tools Function Calling Prompt": "Työkalujen kutsukehote", "Tools have a function calling system that allows arbitrary code execution.": "Työkalut sallivat mielivaltaisen koodin suorittamisen toimintokutsuilla.", "Tools Public Sharing": "Työkalujen julkinen jakaminen", + "Tools Sharing": "", "Top K": "Top K", "Top K Reranker": "Top K uudelleen sijoittaja", "Transformers": "Muunnokset", @@ -1684,6 +1699,7 @@ "Upload Pipeline": "Lataa putki", "Upload Progress": "Latauksen edistyminen", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Latauksen edistyminen: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", + "Uploading file...": "", "URL": "URL", "URL is required": "URL vaaditaan", "URL Mode": "URL-tila", diff --git a/src/lib/i18n/locales/fr-CA/translation.json b/src/lib/i18n/locales/fr-CA/translation.json index b3e2ffe99a..dc0cb25492 100644 --- a/src/lib/i18n/locales/fr-CA/translation.json +++ b/src/lib/i18n/locales/fr-CA/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "Autoriser le téléversement de fichiers", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "Autoriser plusieurs modèles dans la conversation", "Allow non-local voices": "Autoriser les voix non locales", "Allow Rate Response": "", @@ -144,6 +145,7 @@ "Archived Chats": "Conversations archivées", "archived-chat-export": "exportation de conversation archivée", "Are you sure you want to clear all memories? This action cannot be undone.": "Êtes-vous certain de vouloir supprimer toutes les mémoires ? Cette action est définitive.", + "Are you sure you want to delete \"{{NAME}}\"?": "", "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 message?": "Êtes-vous sûr de vouloir supprimer ce message ?", "Are you sure you want to unarchive all archived chats?": "Êtes-vous sûr de vouloir désarchiver toutes les conversations archivées?", @@ -388,12 +390,14 @@ "Default description enabled": "Description par défaut activée", "Default Features": "", "Default Filters": "", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Le mode par défaut fonctionne avec une plus large gamme de modèles en appelant les outils une fois avant l'exécution. Le mode natif exploite les capacités d'appel d'outils intégrées du modèle, mais nécessite que le modèle prenne en charge cette fonctionnalité.", "Default Model": "Modèle standard", "Default model updated": "Modèle par défaut mis à jour", "Default Models": "Modèles par défaut", "Default permissions": "Autorisations par défaut", "Default permissions updated successfully": "Autorisations par défaut mises à jour avec succès", + "Default Pinned Models": "", "Default Prompt Suggestions": "Suggestions de prompts par défaut", "Default to 389 or 636 if TLS is enabled": "Par défaut à 389 ou 636 si TLS est activé", "Default to ALL": "Par défaut à TOUS", @@ -402,6 +406,7 @@ "Delete": "Supprimer", "Delete a model": "Supprimer un modèle", "Delete All Chats": "Supprimer toutes les conversations", + "Delete all contents inside this folder": "", "Delete All Models": "Supprimer tous les modèles", "Delete Chat": "Supprimer la Conversation", "Delete chat?": "Supprimer la conversation ?", @@ -730,6 +735,7 @@ "Features": "Fonctionnalités", "Features Permissions": "Autorisations des fonctionnalités", "February": "Février", + "Feedback deleted successfully": "", "Feedback Details": "Détails du retour d'information", "Feedback History": "Historique des avis", "Feedbacks": "Avis", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "La taille du fichier ne doit pas dépasser {{maxSize}} Mo.", "File Upload": "Téléversement du fichier", "File uploaded successfully": "Fichier téléversé avec succès", + "File uploaded!": "", "Files": "Fichiers", "Filter": "Filtre", "Filter is now globally disabled": "Le filtre est maintenant désactivé globalement", @@ -857,6 +864,7 @@ "Image Compression": "Compression d'image", "Image Compression Height": "Compression de la hauteur de l'image", "Image Compression Width": "Compression de la largeur de l'image", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "Génération d'images", "Image Generation Engine": "Moteur de génération d'images", @@ -941,6 +949,7 @@ "Knowledge Name": "", "Knowledge Public Sharing": "Partage public des Connaissances", "Knowledge reset successfully.": "Connaissance réinitialisée avec succès.", + "Knowledge Sharing": "", "Knowledge updated successfully": "Connaissance mise à jour avec succès", "Kokoro.js (Browser)": "Kokoro.js (Navigateur)", "Kokoro.js Dtype": "Kokoro.js Dtype", @@ -1006,6 +1015,7 @@ "Max Upload Size": "Limite de taille de téléversement", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Un maximum de 3 modèles peut être téléchargé en même temps. Veuillez réessayer ultérieurement.", "May": "Mai", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "Configuration des modèles enregistrée avec succès", "Models imported successfully": "", "Models Public Sharing": "Partage public des modèles", + "Models Sharing": "", "Mojeek Search API Key": "Clé API Mojeek", "More": "Plus", "More Concise": "", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Note : Si vous définissez un score minimum, seuls les documents ayant un score supérieur ou égal à ce score minimum seront retournés par la recherche.", "Notes": "Notes", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "Son de notification", "Notification Webhook": "Webhook de notification", "Notifications": "Notifications", @@ -1274,6 +1286,7 @@ "Prompts": "Prompts", "Prompts Access": "Accès aux prompts", "Prompts Public Sharing": "Partage public des prompts", + "Prompts Sharing": "", "Provider Type": "", "Public": "Public", "Pull \"{{searchValue}}\" from Ollama.com": "Récupérer « {{searchValue}} » depuis Ollama.com", @@ -1458,6 +1471,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "Définit la graine du générateur aléatoire pour produire un résultat déterministe. Une même graine produira toujours la même sortie pour une invite donnée.", "Sets the size of the context window used to generate the next token.": "Définit la taille de la fenêtre de contexte utilisée pour générer le prochain Token.", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "Définit les séquences d'arrêt à utiliser. Lorsque ce motif est rencontré, le LLM cessera de générer du texte et retournera. Plusieurs motifs d'arrêt peuvent être définis en spécifiant plusieurs réglages d'arrêt distincts dans un fichier modèle.", + "Setting": "", "Settings": "Réglages", "Settings saved successfully!": "Réglages enregistrés avec succès !", "Share": "Partager", @@ -1638,6 +1652,7 @@ "Tools Function Calling Prompt": "Prompt pour les appels de fonction des outils", "Tools have a function calling system that allows arbitrary code execution.": "Les outils ont un système d'appel de fonction qui permet l'exécution de code arbitraire.", "Tools Public Sharing": "Partage public des outils", + "Tools Sharing": "", "Top K": "Top K", "Top K Reranker": "Top K Reranker", "Transformers": "Transformers", @@ -1685,6 +1700,7 @@ "Upload Pipeline": "Pipeline de téléchargement", "Upload Progress": "Progression de l'envoi", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploading file...": "", "URL": "URL", "URL is required": "", "URL Mode": "Mode d'URL", diff --git a/src/lib/i18n/locales/fr-FR/translation.json b/src/lib/i18n/locales/fr-FR/translation.json index 0ea81099de..56bdc66556 100644 --- a/src/lib/i18n/locales/fr-FR/translation.json +++ b/src/lib/i18n/locales/fr-FR/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "Autoriser la réponse continue", "Allow Delete Messages": "Autoriser la suppression des messages", "Allow File Upload": "Autoriser le téléversement de fichiers", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "Autoriser plusieurs modèles dans la conversation", "Allow non-local voices": "Autoriser les voix non locales", "Allow Rate Response": "", @@ -144,6 +145,7 @@ "Archived Chats": "Conversations archivées", "archived-chat-export": "exportation de conversation archivée", "Are you sure you want to clear all memories? This action cannot be undone.": "Êtes-vous certain de vouloir supprimer toutes les mémoires ? Cette action est définitive.", + "Are you sure you want to delete \"{{NAME}}\"?": "", "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 message?": "Êtes-vous sûr de vouloir supprimer ce message ?", "Are you sure you want to unarchive all archived chats?": "Êtes-vous sûr de vouloir désarchiver toutes les conversations archivées?", @@ -388,12 +390,14 @@ "Default description enabled": "Description par défaut activée", "Default Features": "Fonctionnalités par défaut", "Default Filters": "Filtres par défaut", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Le mode par défaut fonctionne avec une plus large gamme de modèles en appelant les outils une fois avant l'exécution. Le mode natif exploite les capacités d'appel d'outils intégrées du modèle, mais nécessite que le modèle prenne en charge cette fonctionnalité.", "Default Model": "Modèle standard", "Default model updated": "Modèle par défaut mis à jour", "Default Models": "Modèles par défaut", "Default permissions": "Autorisations par défaut", "Default permissions updated successfully": "Autorisations par défaut mises à jour avec succès", + "Default Pinned Models": "", "Default Prompt Suggestions": "Suggestions de prompts par défaut", "Default to 389 or 636 if TLS is enabled": "Par défaut à 389 ou 636 si TLS est activé", "Default to ALL": "Par défaut à TOUS", @@ -402,6 +406,7 @@ "Delete": "Supprimer", "Delete a model": "Supprimer un modèle", "Delete All Chats": "Supprimer toutes les conversations", + "Delete all contents inside this folder": "", "Delete All Models": "Supprimer tous les modèles", "Delete Chat": "Supprimer la Conversation", "Delete chat?": "Supprimer la conversation ?", @@ -730,6 +735,7 @@ "Features": "Fonctionnalités", "Features Permissions": "Autorisations des fonctionnalités", "February": "Février", + "Feedback deleted successfully": "", "Feedback Details": "Détails du retour d'information", "Feedback History": "Historique des avis", "Feedbacks": "Avis", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "La taille du fichier ne doit pas dépasser {{maxSize}} Mo.", "File Upload": "Téléversement du fichier", "File uploaded successfully": "Fichier téléversé avec succès", + "File uploaded!": "", "Files": "Fichiers", "Filter": "Filtre", "Filter is now globally disabled": "Le filtre est maintenant désactivé globalement", @@ -857,6 +864,7 @@ "Image Compression": "Compression d'image", "Image Compression Height": "Compression de la hauteur de l'image", "Image Compression Width": "Compression de la largeur de l'image", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "Génération d'images", "Image Generation Engine": "Moteur de génération d'images", @@ -941,6 +949,7 @@ "Knowledge Name": "Nom de la connaissance", "Knowledge Public Sharing": "Partage public des Connaissances", "Knowledge reset successfully.": "Connaissance réinitialisée avec succès.", + "Knowledge Sharing": "", "Knowledge updated successfully": "Connaissance mise à jour avec succès", "Kokoro.js (Browser)": "Kokoro.js (Navigateur)", "Kokoro.js Dtype": "Kokoro.js Dtype", @@ -1006,6 +1015,7 @@ "Max Upload Size": "Limite de taille de téléversement", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Un maximum de 3 modèles peut être téléchargé en même temps. Veuillez réessayer ultérieurement.", "May": "Mai", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "Moyen", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "Configuration des modèles enregistrée avec succès", "Models imported successfully": "", "Models Public Sharing": "Partage public des modèles", + "Models Sharing": "", "Mojeek Search API Key": "Clé API Mojeek", "More": "Plus", "More Concise": "Plus concis", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Note : Si vous définissez un score minimum, seuls les documents ayant un score supérieur ou égal à ce score minimum seront retournés par la recherche.", "Notes": "Notes", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "Son de notification", "Notification Webhook": "Webhook de notification", "Notifications": "Notifications", @@ -1274,6 +1286,7 @@ "Prompts": "Prompts", "Prompts Access": "Accès aux prompts", "Prompts Public Sharing": "Partage public des prompts", + "Prompts Sharing": "", "Provider Type": "Tye de fournisseur", "Public": "Public", "Pull \"{{searchValue}}\" from Ollama.com": "Récupérer « {{searchValue}} » depuis Ollama.com", @@ -1458,6 +1471,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "Définit la graine du générateur aléatoire pour produire un résultat déterministe. Une même graine produira toujours la même sortie pour une invite donnée.", "Sets the size of the context window used to generate the next token.": "Définit la taille de la fenêtre de contexte utilisée pour générer le prochain Token.", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "Définit les séquences d'arrêt à utiliser. Lorsque ce motif est rencontré, le LLM cessera de générer du texte et retournera. Plusieurs motifs d'arrêt peuvent être définis en spécifiant plusieurs réglages d'arrêt distincts dans un fichier modèle.", + "Setting": "", "Settings": "Réglages", "Settings saved successfully!": "Réglages enregistrés avec succès !", "Share": "Partager", @@ -1638,6 +1652,7 @@ "Tools Function Calling Prompt": "Prompt pour les appels de fonction des outils", "Tools have a function calling system that allows arbitrary code execution.": "Les outils ont un système d'appel de fonction qui permet l'exécution de code arbitraire.", "Tools Public Sharing": "Partage public des outils", + "Tools Sharing": "", "Top K": "Top K", "Top K Reranker": "Top K Reranker", "Transformers": "Transformers", @@ -1685,6 +1700,7 @@ "Upload Pipeline": "Pipeline de téléchargement", "Upload Progress": "Progression de l'envoi", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Progression du téléchargement\u00a0: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", + "Uploading file...": "", "URL": "URL", "URL is required": "L'URL est requise", "URL Mode": "Mode d'URL", diff --git a/src/lib/i18n/locales/gl-ES/translation.json b/src/lib/i18n/locales/gl-ES/translation.json index 03c3f56eeb..82679c1efe 100644 --- a/src/lib/i18n/locales/gl-ES/translation.json +++ b/src/lib/i18n/locales/gl-ES/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "Permitir asubida de Arquivos", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Permitir voces non locales", "Allow Rate Response": "", @@ -144,6 +145,7 @@ "Archived Chats": "Chats arquivados", "archived-chat-export": "Exportación de chats arquivados", "Are you sure you want to clear all memories? This action cannot be undone.": "", + "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete this channel?": "¿Seguro que queres eliminar este canal?", "Are you sure you want to delete this message?": "¿Seguro que queres eliminar este mensaxe? ", "Are you sure you want to unarchive all archived chats?": "¿Estás seguro de que quieres desArquivar todos os chats arquivados?", @@ -388,12 +390,14 @@ "Default description enabled": "", "Default Features": "", "Default Filters": "", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "O modo predeterminado funciona con unha gama mais ampla de modelos chamando as ferramentas unha vez antes da execución. o modo nativo aproveita as capacidades integradas de chamada de ferramentas do modelo, pero requiere que o modelo soporte esta función de manera inherente.", "Default Model": "Modelo predeterminado", "Default model updated": "O modelo por defecto foi actualizado", "Default Models": "Modelos predeterminados", "Default permissions": "Permisos predeterminados", "Default permissions updated successfully": "Permisos predeterminados actualizados correctamente", + "Default Pinned Models": "", "Default Prompt Suggestions": "Sugerencias de mensaxes por defecto", "Default to 389 or 636 if TLS is enabled": "Predeterminado a 389 o 636 si TLS está habilitado", "Default to ALL": "Predeterminado a TODOS", @@ -402,6 +406,7 @@ "Delete": "Borrar", "Delete a model": "Borra un modelo", "Delete All Chats": "Eliminar todos os chats", + "Delete all contents inside this folder": "", "Delete All Models": "Eliminar todos os modelos", "Delete Chat": "Borrar Chat", "Delete chat?": "Borrar o chat?", @@ -730,6 +735,7 @@ "Features": "Características", "Features Permissions": "Permisos de características", "February": "Febreiro", + "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "Historial de retroalimentación", "Feedbacks": "Retroalimentacions", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "Tamaño do Arquivo non debe exceder {{maxSize}} MB.", "File Upload": "", "File uploaded successfully": "Arquivo subido correctamente", + "File uploaded!": "", "Files": "Arquivos", "Filter": "", "Filter is now globally disabled": "O filtro ahora está desactivado globalmente", @@ -857,6 +864,7 @@ "Image Compression": "Compresión de imaxen", "Image Compression Height": "", "Image Compression Width": "", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "xeneración de imaxes", "Image Generation Engine": "Motor de xeneración de imaxes", @@ -941,6 +949,7 @@ "Knowledge Name": "", "Knowledge Public Sharing": "", "Knowledge reset successfully.": "coñecemento restablecido exitosamente.", + "Knowledge Sharing": "", "Knowledge updated successfully": "coñecemento actualizado exitosamente.", "Kokoro.js (Browser)": "Kokoro .js (Navegador)", "Kokoro.js Dtype": "Kokoro .js Dtype", @@ -1006,6 +1015,7 @@ "Max Upload Size": "Tamaño máximo de Cargas", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Podense descargar un máximo de 3 modelos simultáneamente. Por favor, intenteo de novo mais tarde.", "May": "Mayo", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "Configuración de modelos guardada correctamente", "Models imported successfully": "", "Models Public Sharing": "", + "Models Sharing": "", "Mojeek Search API Key": "chave API de Mojeek Search", "More": "mais", "More Concise": "", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Nota: Se estableces unha puntuación mínima, a búsqueda sólo devolverá documentos con unha puntuación mayor o igual a a puntuación mínima.", "Notes": "Notas", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "Sonido de notificación", "Notification Webhook": "Webhook de notificación", "Notifications": "Notificacions", @@ -1274,6 +1286,7 @@ "Prompts": "Prompts", "Prompts Access": "Acceso a Prompts", "Prompts Public Sharing": "", + "Prompts Sharing": "", "Provider Type": "", "Public": "", "Pull \"{{searchValue}}\" from Ollama.com": "Extraer \"{{searchValue}}\" de Ollama.com", @@ -1457,6 +1470,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "Establece a semente de número aleatorio a usar para xeneración. Establecer esto a un número específico hará que el modelo genere el mismo texto para el mismo prompt.", "Sets the size of the context window used to generate the next token.": "Establece o tamaño da ventana de contexto utilizada para xenerar o seguinte token.", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "Establece as secuencias de parada a usar. Cuando se encuentre este patrón, o LLM dejará de generar texto y devolverá. Se pueden establecer varios patrones de parada especificando múltiples parámetros de parada separados en un arquivo de modelo.", + "Setting": "", "Settings": "Configuración", "Settings saved successfully!": "¡Configuración gardada con éxito!", "Share": "Compartir", @@ -1637,6 +1651,7 @@ "Tools Function Calling Prompt": "Prompt de chamada de funcións de ferramentas", "Tools have a function calling system that allows arbitrary code execution.": "As ferramentas tienen un sistema de chamada de funcións que permite la execución de código arbitrario.", "Tools Public Sharing": "", + "Tools Sharing": "", "Top K": "Top K", "Top K Reranker": "", "Transformers": "Transformadores", @@ -1684,6 +1699,7 @@ "Upload Pipeline": "Subir Pipeline", "Upload Progress": "Progreso de carga", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploading file...": "", "URL": "URL", "URL is required": "", "URL Mode": "Modo de URL", diff --git a/src/lib/i18n/locales/he-IL/translation.json b/src/lib/i18n/locales/he-IL/translation.json index 95834400e0..ce310f90f5 100644 --- a/src/lib/i18n/locales/he-IL/translation.json +++ b/src/lib/i18n/locales/he-IL/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "אפשר העלאת קובץ", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "", "Allow Rate Response": "", @@ -144,6 +145,7 @@ "Archived Chats": "צ'אטים מאורכבים", "archived-chat-export": "", "Are you sure you want to clear all memories? This action cannot be undone.": "", + "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete this channel?": "", "Are you sure you want to delete this message?": "", "Are you sure you want to unarchive all archived chats?": "", @@ -388,12 +390,14 @@ "Default description enabled": "", "Default Features": "", "Default Filters": "", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "מודל ברירת מחדל", "Default model updated": "המודל המוגדר כברירת מחדל עודכן", "Default Models": "", "Default permissions": "", "Default permissions updated successfully": "", + "Default Pinned Models": "", "Default Prompt Suggestions": "הצעות ברירת מחדל לפקודות", "Default to 389 or 636 if TLS is enabled": "", "Default to ALL": "", @@ -402,6 +406,7 @@ "Delete": "מחק", "Delete a model": "מחק מודל", "Delete All Chats": "מחק את כל הצ'אטים", + "Delete all contents inside this folder": "", "Delete All Models": "", "Delete Chat": "מחק צ'אט", "Delete chat?": "", @@ -730,6 +735,7 @@ "Features": "", "Features Permissions": "", "February": "פברואר", + "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "", "Feedbacks": "", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "", "File Upload": "", "File uploaded successfully": "", + "File uploaded!": "", "Files": "", "Filter": "", "Filter is now globally disabled": "", @@ -857,6 +864,7 @@ "Image Compression": "", "Image Compression Height": "", "Image Compression Width": "", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "", "Image Generation Engine": "מנוע יצירת תמונות", @@ -941,6 +949,7 @@ "Knowledge Name": "", "Knowledge Public Sharing": "", "Knowledge reset successfully.": "", + "Knowledge Sharing": "", "Knowledge updated successfully": "", "Kokoro.js (Browser)": "", "Kokoro.js Dtype": "", @@ -1006,6 +1015,7 @@ "Max Upload Size": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "ניתן להוריד מקסימום 3 מודלים בו זמנית. אנא נסה שוב מאוחר יותר.", "May": "מאי", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "", "Models imported successfully": "", "Models Public Sharing": "", + "Models Sharing": "", "Mojeek Search API Key": "", "More": "עוד", "More Concise": "", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "הערה: אם תקבע ציון מינימלי, החיפוש יחזיר רק מסמכים עם ציון שגבוה או שווה לציון המינימלי.", "Notes": "פתקים", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "", "Notification Webhook": "", "Notifications": "התראות", @@ -1274,6 +1286,7 @@ "Prompts": "פקודות", "Prompts Access": "", "Prompts Public Sharing": "", + "Prompts Sharing": "", "Provider Type": "", "Public": "", "Pull \"{{searchValue}}\" from Ollama.com": "משוך \"{{searchValue}}\" מ-Ollama.com", @@ -1458,6 +1471,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "", "Sets the size of the context window used to generate the next token.": "", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "", + "Setting": "", "Settings": "הגדרות", "Settings saved successfully!": "ההגדרות נשמרו בהצלחה!", "Share": "שתף", @@ -1638,6 +1652,7 @@ "Tools Function Calling Prompt": "", "Tools have a function calling system that allows arbitrary code execution.": "", "Tools Public Sharing": "", + "Tools Sharing": "", "Top K": "Top K", "Top K Reranker": "", "Transformers": "", @@ -1685,6 +1700,7 @@ "Upload Pipeline": "", "Upload Progress": "תקדמות העלאה", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploading file...": "", "URL": "", "URL is required": "", "URL Mode": "מצב URL", diff --git a/src/lib/i18n/locales/hi-IN/translation.json b/src/lib/i18n/locales/hi-IN/translation.json index 33af4e6f25..c2807b5d74 100644 --- a/src/lib/i18n/locales/hi-IN/translation.json +++ b/src/lib/i18n/locales/hi-IN/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "", "Allow Rate Response": "", @@ -144,6 +145,7 @@ "Archived Chats": "संग्रहीत चैट", "archived-chat-export": "", "Are you sure you want to clear all memories? This action cannot be undone.": "", + "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete this channel?": "", "Are you sure you want to delete this message?": "", "Are you sure you want to unarchive all archived chats?": "", @@ -388,12 +390,14 @@ "Default description enabled": "", "Default Features": "", "Default Filters": "", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "डिफ़ॉल्ट मॉडल", "Default model updated": "डिफ़ॉल्ट मॉडल अपडेट किया गया", "Default Models": "", "Default permissions": "", "Default permissions updated successfully": "", + "Default Pinned Models": "", "Default Prompt Suggestions": "डिफ़ॉल्ट प्रॉम्प्ट सुझाव", "Default to 389 or 636 if TLS is enabled": "", "Default to ALL": "", @@ -402,6 +406,7 @@ "Delete": "डिलीट", "Delete a model": "एक मॉडल हटाएँ", "Delete All Chats": "सभी चैट हटाएं", + "Delete all contents inside this folder": "", "Delete All Models": "", "Delete Chat": "चैट हटाएं", "Delete chat?": "", @@ -730,6 +735,7 @@ "Features": "", "Features Permissions": "", "February": "फरवरी", + "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "", "Feedbacks": "", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "", "File Upload": "", "File uploaded successfully": "", + "File uploaded!": "", "Files": "", "Filter": "", "Filter is now globally disabled": "", @@ -857,6 +864,7 @@ "Image Compression": "", "Image Compression Height": "", "Image Compression Width": "", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "", "Image Generation Engine": "छवि निर्माण इंजन", @@ -941,6 +949,7 @@ "Knowledge Name": "", "Knowledge Public Sharing": "", "Knowledge reset successfully.": "", + "Knowledge Sharing": "", "Knowledge updated successfully": "", "Kokoro.js (Browser)": "", "Kokoro.js Dtype": "", @@ -1006,6 +1015,7 @@ "Max Upload Size": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "अधिकतम 3 मॉडल एक साथ डाउनलोड किये जा सकते हैं। कृपया बाद में पुन: प्रयास करें।", "May": "मेई", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "", "Models imported successfully": "", "Models Public Sharing": "", + "Models Sharing": "", "Mojeek Search API Key": "", "More": "और..", "More Concise": "", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "ध्यान दें: यदि आप न्यूनतम स्कोर निर्धारित करते हैं, तो खोज केवल न्यूनतम स्कोर से अधिक या उसके बराबर स्कोर वाले दस्तावेज़ वापस लाएगी।", "Notes": "", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "", "Notification Webhook": "", "Notifications": "सूचनाएं", @@ -1274,6 +1286,7 @@ "Prompts": "प्रॉम्प्ट", "Prompts Access": "", "Prompts Public Sharing": "", + "Prompts Sharing": "", "Provider Type": "", "Public": "", "Pull \"{{searchValue}}\" from Ollama.com": "\"{{searchValue}}\" को Ollama.com से खींचें", @@ -1457,6 +1470,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "", "Sets the size of the context window used to generate the next token.": "", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "", + "Setting": "", "Settings": "सेटिंग्स", "Settings saved successfully!": "सेटिंग्स सफलतापूर्वक सहेजी गईं!", "Share": "साझा करें", @@ -1637,6 +1651,7 @@ "Tools Function Calling Prompt": "", "Tools have a function calling system that allows arbitrary code execution.": "", "Tools Public Sharing": "", + "Tools Sharing": "", "Top K": "शीर्ष K", "Top K Reranker": "", "Transformers": "", @@ -1684,6 +1699,7 @@ "Upload Pipeline": "", "Upload Progress": "प्रगति अपलोड करें", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploading file...": "", "URL": "", "URL is required": "", "URL Mode": "URL मोड", diff --git a/src/lib/i18n/locales/hr-HR/translation.json b/src/lib/i18n/locales/hr-HR/translation.json index 4b97078c4a..53cc19a7f3 100644 --- a/src/lib/i18n/locales/hr-HR/translation.json +++ b/src/lib/i18n/locales/hr-HR/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Dopusti nelokalne glasove", "Allow Rate Response": "", @@ -144,6 +145,7 @@ "Archived Chats": "Arhivirani razgovori", "archived-chat-export": "", "Are you sure you want to clear all memories? This action cannot be undone.": "", + "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete this channel?": "", "Are you sure you want to delete this message?": "", "Are you sure you want to unarchive all archived chats?": "", @@ -388,12 +390,14 @@ "Default description enabled": "", "Default Features": "", "Default Filters": "", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "Zadani model", "Default model updated": "Zadani model ažuriran", "Default Models": "", "Default permissions": "", "Default permissions updated successfully": "", + "Default Pinned Models": "", "Default Prompt Suggestions": "Zadani prijedlozi prompta", "Default to 389 or 636 if TLS is enabled": "", "Default to ALL": "", @@ -402,6 +406,7 @@ "Delete": "Izbriši", "Delete a model": "Izbriši model", "Delete All Chats": "Izbriši sve razgovore", + "Delete all contents inside this folder": "", "Delete All Models": "", "Delete Chat": "Izbriši razgovor", "Delete chat?": "", @@ -730,6 +735,7 @@ "Features": "", "Features Permissions": "", "February": "Veljača", + "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "", "Feedbacks": "", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "", "File Upload": "", "File uploaded successfully": "", + "File uploaded!": "", "Files": "", "Filter": "", "Filter is now globally disabled": "", @@ -857,6 +864,7 @@ "Image Compression": "", "Image Compression Height": "", "Image Compression Width": "", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "", "Image Generation Engine": "Stroj za generiranje slika", @@ -941,6 +949,7 @@ "Knowledge Name": "", "Knowledge Public Sharing": "", "Knowledge reset successfully.": "", + "Knowledge Sharing": "", "Knowledge updated successfully": "", "Kokoro.js (Browser)": "", "Kokoro.js Dtype": "", @@ -1006,6 +1015,7 @@ "Max Upload Size": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maksimalno 3 modela se mogu preuzeti istovremeno. Pokušajte ponovo kasnije.", "May": "Svibanj", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "", "Models imported successfully": "", "Models Public Sharing": "", + "Models Sharing": "", "Mojeek Search API Key": "", "More": "Više", "More Concise": "", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Napomena: Ako postavite minimalnu ocjenu, pretraga će vratiti samo dokumente s ocjenom većom ili jednakom minimalnoj ocjeni.", "Notes": "", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "", "Notification Webhook": "", "Notifications": "Obavijesti", @@ -1274,6 +1286,7 @@ "Prompts": "Prompti", "Prompts Access": "", "Prompts Public Sharing": "", + "Prompts Sharing": "", "Provider Type": "", "Public": "", "Pull \"{{searchValue}}\" from Ollama.com": "Povucite \"{{searchValue}}\" s Ollama.com", @@ -1458,6 +1471,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "", "Sets the size of the context window used to generate the next token.": "", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "", + "Setting": "", "Settings": "Postavke", "Settings saved successfully!": "Postavke su uspješno spremljene!", "Share": "Podijeli", @@ -1638,6 +1652,7 @@ "Tools Function Calling Prompt": "", "Tools have a function calling system that allows arbitrary code execution.": "", "Tools Public Sharing": "", + "Tools Sharing": "", "Top K": "Top K", "Top K Reranker": "", "Transformers": "", @@ -1685,6 +1700,7 @@ "Upload Pipeline": "Prijenos kanala", "Upload Progress": "Napredak učitavanja", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploading file...": "", "URL": "", "URL is required": "", "URL Mode": "URL način", diff --git a/src/lib/i18n/locales/hu-HU/translation.json b/src/lib/i18n/locales/hu-HU/translation.json index 091d976bad..e14c98da38 100644 --- a/src/lib/i18n/locales/hu-HU/translation.json +++ b/src/lib/i18n/locales/hu-HU/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "Fájlfeltöltés engedélyezése", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Nem helyi hangok engedélyezése", "Allow Rate Response": "", @@ -144,6 +145,7 @@ "Archived Chats": "Archivált beszélgetések", "archived-chat-export": "archivált csevegés exportálása", "Are you sure you want to clear all memories? This action cannot be undone.": "Biztosan törölni szeretnéd az összes memóriát? Ez a művelet nem vonható vissza.", + "Are you sure you want to delete \"{{NAME}}\"?": "", "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 message?": "Biztosan törölni szeretnéd ezt az üzenetet?", "Are you sure you want to unarchive all archived chats?": "Biztosan vissza szeretnéd állítani az összes archivált csevegést?", @@ -388,12 +390,14 @@ "Default description enabled": "", "Default Features": "", "Default Filters": "", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Az alapértelmezett mód szélesebb modellválasztékkal működik az eszközök egyszeri meghívásával a végrehajtás előtt. A natív mód a modell beépített eszközhívási képességeit használja ki, de ehhez a modellnek eredendően támogatnia kell ezt a funkciót.", "Default Model": "Alapértelmezett modell", "Default model updated": "Alapértelmezett modell frissítve", "Default Models": "Alapértelmezett modellek", "Default permissions": "Alapértelmezett engedélyek", "Default permissions updated successfully": "Alapértelmezett engedélyek sikeresen frissítve", + "Default Pinned Models": "", "Default Prompt Suggestions": "Alapértelmezett prompt javaslatok", "Default to 389 or 636 if TLS is enabled": "Alapértelmezés szerint 389 vagy 636, ha a TLS engedélyezve van", "Default to ALL": "Alapértelmezés szerint MIND", @@ -402,6 +406,7 @@ "Delete": "Törlés", "Delete a model": "Modell törlése", "Delete All Chats": "Minden beszélgetés törlése", + "Delete all contents inside this folder": "", "Delete All Models": "Minden modell törlése", "Delete Chat": "Beszélgetés törlése", "Delete chat?": "Törli a beszélgetést?", @@ -730,6 +735,7 @@ "Features": "Funkciók", "Features Permissions": "Funkciók engedélyei", "February": "Február", + "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "Visszajelzés előzmények", "Feedbacks": "Visszajelzések", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "A fájl mérete nem haladhatja meg a {{maxSize}} MB-ot.", "File Upload": "", "File uploaded successfully": "Fájl sikeresen feltöltve", + "File uploaded!": "", "Files": "Fájlok", "Filter": "", "Filter is now globally disabled": "A szűrő globálisan letiltva", @@ -857,6 +864,7 @@ "Image Compression": "Képtömörítés", "Image Compression Height": "", "Image Compression Width": "", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "Képgenerálás", "Image Generation Engine": "Képgenerálási motor", @@ -941,6 +949,7 @@ "Knowledge Name": "", "Knowledge Public Sharing": "Tudásbázis nyilvános megosztása", "Knowledge reset successfully.": "Tudásbázis sikeresen visszaállítva.", + "Knowledge Sharing": "", "Knowledge updated successfully": "Tudásbázis sikeresen frissítve", "Kokoro.js (Browser)": "Kokoro.js (Böngésző)", "Kokoro.js Dtype": "Kokoro.js Dtype", @@ -1006,6 +1015,7 @@ "Max Upload Size": "Maximum feltöltési méret", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maximum 3 modell tölthető le egyszerre. Kérjük, próbálja újra később.", "May": "Május", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "Modellek konfigurációja sikeresen mentve", "Models imported successfully": "", "Models Public Sharing": "Modellek nyilvános megosztása", + "Models Sharing": "", "Mojeek Search API Key": "Mojeek Search API kulcs", "More": "Több", "More Concise": "", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Megjegyzés: Ha minimum pontszámot állít be, a keresés csak olyan dokumentumokat ad vissza, amelyek pontszáma nagyobb vagy egyenlő a minimum pontszámmal.", "Notes": "Jegyzetek", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "Értesítési hang", "Notification Webhook": "Értesítési webhook", "Notifications": "Értesítések", @@ -1274,6 +1286,7 @@ "Prompts": "Promptok", "Prompts Access": "Promptok hozzáférése", "Prompts Public Sharing": "Promptok nyilvános megosztása", + "Prompts Sharing": "", "Provider Type": "", "Public": "Nyilvános", "Pull \"{{searchValue}}\" from Ollama.com": "\"{{searchValue}}\" letöltése az Ollama.com-ról", @@ -1457,6 +1470,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "Beállítja a generáláshoz használt véletlenszám seed-et. Egy adott szám megadása esetén a modell ugyanazt a szöveget generálja ugyanarra a prompt-ra.", "Sets the size of the context window used to generate the next token.": "Beállítja a következő token generálásához használt kontextusablak méretét.", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "Beállítja a használandó leállítási szekvenciákat. Ha ezt a mintát észleli, az LLM leállítja a szöveg generálását és visszatér. Több leállítási minta is megadható különálló stop paraméterek megadásával egy modellfájlban.", + "Setting": "", "Settings": "Beállítások", "Settings saved successfully!": "Beállítások sikeresen mentve!", "Share": "Megosztás", @@ -1637,6 +1651,7 @@ "Tools Function Calling Prompt": "Eszközök függvényhívási promptja", "Tools have a function calling system that allows arbitrary code execution.": "Az eszközök olyan függvényhívó rendszerrel rendelkeznek, amely lehetővé teszi tetszőleges kód végrehajtását.", "Tools Public Sharing": "Eszközök nyilvános megosztása", + "Tools Sharing": "", "Top K": "Top K", "Top K Reranker": "Top K újrarangsoroló", "Transformers": "Transformerek", @@ -1684,6 +1699,7 @@ "Upload Pipeline": "Folyamat feltöltése", "Upload Progress": "Feltöltési folyamat", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploading file...": "", "URL": "URL", "URL is required": "", "URL Mode": "URL mód", diff --git a/src/lib/i18n/locales/id-ID/translation.json b/src/lib/i18n/locales/id-ID/translation.json index 9af4fc2b02..c970cbf17e 100644 --- a/src/lib/i18n/locales/id-ID/translation.json +++ b/src/lib/i18n/locales/id-ID/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Izinkan suara non-lokal", "Allow Rate Response": "", @@ -144,6 +145,7 @@ "Archived Chats": "Obrolan yang Diarsipkan", "archived-chat-export": "", "Are you sure you want to clear all memories? This action cannot be undone.": "", + "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete this channel?": "", "Are you sure you want to delete this message?": "", "Are you sure you want to unarchive all archived chats?": "", @@ -388,12 +390,14 @@ "Default description enabled": "", "Default Features": "", "Default Filters": "", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "Model Default", "Default model updated": "Model default diperbarui", "Default Models": "", "Default permissions": "", "Default permissions updated successfully": "", + "Default Pinned Models": "", "Default Prompt Suggestions": "Saran Permintaan Default", "Default to 389 or 636 if TLS is enabled": "", "Default to ALL": "", @@ -402,6 +406,7 @@ "Delete": "Menghapus", "Delete a model": "Menghapus model", "Delete All Chats": "Menghapus Semua Obrolan", + "Delete all contents inside this folder": "", "Delete All Models": "", "Delete Chat": "Menghapus Obrolan", "Delete chat?": "Menghapus obrolan?", @@ -730,6 +735,7 @@ "Features": "", "Features Permissions": "", "February": "Februari", + "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "", "Feedbacks": "", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "", "File Upload": "", "File uploaded successfully": "", + "File uploaded!": "", "Files": "", "Filter": "", "Filter is now globally disabled": "Filter sekarang dinonaktifkan secara global", @@ -857,6 +864,7 @@ "Image Compression": "", "Image Compression Height": "", "Image Compression Width": "", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "", "Image Generation Engine": "Mesin Pembuat Gambar", @@ -941,6 +949,7 @@ "Knowledge Name": "", "Knowledge Public Sharing": "", "Knowledge reset successfully.": "", + "Knowledge Sharing": "", "Knowledge updated successfully": "", "Kokoro.js (Browser)": "", "Kokoro.js Dtype": "", @@ -1006,6 +1015,7 @@ "Max Upload Size": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maksimal 3 model dapat diunduh secara bersamaan. Silakan coba lagi nanti.", "May": "Mei", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "", "Models imported successfully": "", "Models Public Sharing": "", + "Models Sharing": "", "Mojeek Search API Key": "", "More": "Lainnya", "More Concise": "", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Catatan: Jika Anda menetapkan skor minimum, pencarian hanya akan mengembalikan dokumen dengan skor yang lebih besar atau sama dengan skor minimum.", "Notes": "", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "", "Notification Webhook": "", "Notifications": "Pemberitahuan", @@ -1274,6 +1286,7 @@ "Prompts": "Prompt", "Prompts Access": "", "Prompts Public Sharing": "", + "Prompts Sharing": "", "Provider Type": "", "Public": "", "Pull \"{{searchValue}}\" from Ollama.com": "Tarik \"{{searchValue}}\" dari Ollama.com", @@ -1456,6 +1469,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "", "Sets the size of the context window used to generate the next token.": "", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "", + "Setting": "", "Settings": "Pengaturan", "Settings saved successfully!": "Pengaturan berhasil disimpan!", "Share": "Berbagi", @@ -1636,6 +1650,7 @@ "Tools Function Calling Prompt": "", "Tools have a function calling system that allows arbitrary code execution.": "", "Tools Public Sharing": "", + "Tools Sharing": "", "Top K": "K atas", "Top K Reranker": "", "Transformers": "", @@ -1683,6 +1698,7 @@ "Upload Pipeline": "Unggah Pipeline", "Upload Progress": "Kemajuan Unggah", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploading file...": "", "URL": "", "URL is required": "", "URL Mode": "Mode URL", diff --git a/src/lib/i18n/locales/ie-GA/translation.json b/src/lib/i18n/locales/ie-GA/translation.json index 9d7e848124..ef3b11caa5 100644 --- a/src/lib/i18n/locales/ie-GA/translation.json +++ b/src/lib/i18n/locales/ie-GA/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "Ceadaigh Leanúint ar aghaidh leis an bhFreagra", "Allow Delete Messages": "Ceadaigh Teachtaireachtaí a Scriosadh", "Allow File Upload": "Ceadaigh Uaslódáil Comhad", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "Ceadaigh Il-Samhlacha i gComhrá", "Allow non-local voices": "Lig guthanna neamh-áitiúla", "Allow Rate Response": "Ceadaigh Freagairt Ráta", @@ -144,6 +145,7 @@ "Archived Chats": "Comhráite Cartlann", "archived-chat-export": "gcartlann-comhrá-onnmhairiú", "Are you sure you want to clear all memories? This action cannot be undone.": "An bhfuil tú cinnte gur mhaith leat na cuimhní go léir a ghlanadh? Ní féidir an gníomh seo a chealú.", + "Are you sure you want to delete \"{{NAME}}\"?": "", "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 message?": "An bhfuil tú cinnte gur mhaith leat an teachtaireacht seo a scriosadh?", "Are you sure you want to unarchive all archived chats?": "An bhfuil tú cinnte gur mhaith leat gach comhrá cartlainne a dhíchartlannú?", @@ -388,12 +390,14 @@ "Default description enabled": "Cur síos réamhshocraithe cumasaithe", "Default Features": "Gnéithe Réamhshocraithe", "Default Filters": "Scagairí Réamhshocraithe", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Oibríonn an mód réamhshocraithe le raon níos leithne samhlacha trí uirlisí a ghlaoch uair amháin roimh an bhforghníomhú. Úsáideann an modh dúchasach cumais ionsuite glaoite uirlisí an samhail, ach éilíonn sé go dtacóidh an tsamhail leis an ngné seo go bunúsach.", "Default Model": "Samhail Réamhshocrú", "Default model updated": "Nuashonraithe samhail réamhshocraithe", "Default Models": "Samhlacha Réamhshocraithe", "Default permissions": "Ceadanna réamhshocraithe", "Default permissions updated successfully": "D'éirigh le ceadanna réamhshocraithe a nuashonrú", + "Default Pinned Models": "", "Default Prompt Suggestions": "Moltaí Leid Réamhshocraithe", "Default to 389 or 636 if TLS is enabled": "Réamhshocrú go 389 nó 636 má tá TLS cumasaithe", "Default to ALL": "Réamhshocrú do GACH", @@ -402,6 +406,7 @@ "Delete": "Scrios", "Delete a model": "Scrios samhail", "Delete All Chats": "Scrios Gach Comhrá", + "Delete all contents inside this folder": "", "Delete All Models": "Scrios Gach Samhail", "Delete Chat": "Scrios Comhrá", "Delete chat?": "Scrios comhrá?", @@ -730,6 +735,7 @@ "Features": "Gnéithe", "Features Permissions": "Ceadanna Gnéithe", "February": "Feabhra", + "Feedback deleted successfully": "", "Feedback Details": "Sonraí Aiseolais", "Feedback History": "Stair Aiseolais", "Feedbacks": "Aiseolas", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "Níor chóir go mbeadh méid an chomhaid níos mó ná {{maxSize}} MB.", "File Upload": "Uaslódáil Comhaid", "File uploaded successfully": "D'éirigh le huaslódáil an chomhaid", + "File uploaded!": "", "Files": "Comhaid", "Filter": "Scagaire", "Filter is now globally disabled": "Tá an scagaire faoi mhíchumas go domhanda", @@ -857,6 +864,7 @@ "Image Compression": "Comhbhrú Íomhá", "Image Compression Height": "Airde Comhbhrú Íomhá", "Image Compression Width": "Leithead Comhbhrúite Íomhá", + "Image Edit": "", "Image Edit Engine": "Inneall Eagarthóireachta Íomhá", "Image Generation": "Giniúint Íomhá", "Image Generation Engine": "Inneall Giniúna Íomh", @@ -941,6 +949,7 @@ "Knowledge Name": "Ainm an Eolais", "Knowledge Public Sharing": "Roinnt Faisnéise Poiblí", "Knowledge reset successfully.": "D'éirigh le hathshocrú eolais.", + "Knowledge Sharing": "", "Knowledge updated successfully": "D'éirigh leis an eolas a nuashonrú", "Kokoro.js (Browser)": "Kokoro.js (Brabhsálaí)", "Kokoro.js Dtype": "Kokoro.js Dtype", @@ -1006,6 +1015,7 @@ "Max Upload Size": "Méid Uaslódála Max", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Is féidir uasmhéid de 3 samhail a íoslódáil ag an am Bain triail as arís níos déanaí.", "May": "Bealtaine", + "MBR": "", "MCP": "MCP", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "Is turgnamhach tacaíocht MCP agus athraítear a shonraíocht go minic, rud a d’fhéadfadh neamh-chomhoiriúnachtaí a bheith mar thoradh air. Déanann foireann Open WebUI cothabháil dhíreach ar thacaíocht sonraíochta OpenAPI, rud a fhágann gurb é an rogha is iontaofa é le haghaidh comhoiriúnachta.", "Medium": "Meánach", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "Cumraíocht na samhlacha sábháilte go rathúil", "Models imported successfully": "Iompórtáladh samhlacha go rathúil", "Models Public Sharing": "Samhlacha Comhroinnt Phoiblí", + "Models Sharing": "", "Mojeek Search API Key": "Eochair API Cuardach Mojeek", "More": "Tuilleadh", "More Concise": "Níos Gonta", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Nóta: Má shocraíonn tú íosscór, ní thabharfaidh an cuardach ach doiciméid a bhfuil scór níos mó ná nó cothrom leis an scór íosta ar ais.", "Notes": "Nótaí", "Notes Public Sharing": "Nótaí Comhroinnte Poiblí", + "Notes Sharing": "", "Notification Sound": "Fuaim Fógra", "Notification Webhook": "Fógra Webook", "Notifications": "Fógraí", @@ -1274,6 +1286,7 @@ "Prompts": "Leabhair", "Prompts Access": "Rochtain ar Chuirí", "Prompts Public Sharing": "Spreagann Roinnt Phoiblí", + "Prompts Sharing": "", "Provider Type": "Cineál Soláthraí", "Public": "Poiblí", "Pull \"{{searchValue}}\" from Ollama.com": "Tarraing \"{{searchValue}}\" ó Ollama.com", @@ -1457,6 +1470,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "Socraíonn sé an síol uimhir randamach a úsáid le haghaidh giniúna. Má shocraítear é seo ar uimhir shainiúil, ginfidh an tsamhail an téacs céanna don leid céanna.", "Sets the size of the context window used to generate the next token.": "Socraíonn sé méid na fuinneoige comhthéacs a úsáidtear chun an chéad chomhartha eile a ghiniúint.", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "Socraíonn sé na stadanna le húsáid. Nuair a thagtar ar an bpatrún seo, stopfaidh an LLM ag giniúint téacs agus ag filleadh. Is féidir patrúin stad iolracha a shocrú trí pharaiméadair stadanna iolracha a shonrú i gcomhad samhail.", + "Setting": "", "Settings": "Socruithe", "Settings saved successfully!": "Socruithe sábhálta go rathúil!", "Share": "Comhroinn", @@ -1637,6 +1651,7 @@ "Tools Function Calling Prompt": "Leid Glaonna Feidhm Uirlisí", "Tools have a function calling system that allows arbitrary code execution.": "Tá córas glaonna feidhme ag uirlisí a cheadaíonn forghníomhú cód treallach.", "Tools Public Sharing": "Uirlisí Roinnte Poiblí", + "Tools Sharing": "", "Top K": "Barr K", "Top K Reranker": "Barr K Reranker", "Transformers": "Claochladáin", @@ -1684,6 +1699,7 @@ "Upload Pipeline": "Uaslódáil píblíne", "Upload Progress": "Dul Chun Cinn an Uaslódála", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Dul Chun Cinn Uaslódála: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", + "Uploading file...": "", "URL": "URL", "URL is required": "Tá URL ag teastáil", "URL Mode": "Mód URL", diff --git a/src/lib/i18n/locales/it-IT/translation.json b/src/lib/i18n/locales/it-IT/translation.json index 37093411d9..c3a5e5e9da 100644 --- a/src/lib/i18n/locales/it-IT/translation.json +++ b/src/lib/i18n/locales/it-IT/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "Consenti caricamento file", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "Consenti più modelli in chat", "Allow non-local voices": "Consenti voci non locali", "Allow Rate Response": "", @@ -144,6 +145,7 @@ "Archived Chats": "Chat archiviate", "archived-chat-export": "chat-archiviata-esportazione", "Are you sure you want to clear all memories? This action cannot be undone.": "Sei sicuro di voler cancellare tutte le memorie? Questa operazione non può essere annullata.", + "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete this channel?": "Sei sicuro di voler eliminare questo canale?", "Are you sure you want to delete this message?": "Sei sicuro di voler eliminare questo messaggio?", "Are you sure you want to unarchive all archived chats?": "Sei sicuro di voler disarchiviare tutte le chat archiviate?", @@ -388,12 +390,14 @@ "Default description enabled": "", "Default Features": "", "Default Filters": "", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Il modello predefinito funziona con un'ampia gamma di modelli chiamando gli strumenti una volta prima dell'esecuzione. La modalità nativa sfrutta le capacità di chiamata degli strumenti integrate nel modello, ma richiede che il modello supporti intrinsecamente questa funzionalità.", "Default Model": "Modello predefinito", "Default model updated": "Modello predefinito aggiornato", "Default Models": "Modelli predefiniti", "Default permissions": "Permessi predefiniti", "Default permissions updated successfully": "Permessi predefiniti aggiornati con successo", + "Default Pinned Models": "", "Default Prompt Suggestions": "Suggerimenti prompt predefiniti", "Default to 389 or 636 if TLS is enabled": "Predefinito a 389 o 636 se TLS è ab", "Default to ALL": "Predefinito su TUTTI", @@ -402,6 +406,7 @@ "Delete": "Elimina", "Delete a model": "Elimina un modello", "Delete All Chats": "Elimina tutte le chat", + "Delete all contents inside this folder": "", "Delete All Models": "Elimina tutti i modelli", "Delete Chat": "Elimina chat", "Delete chat?": "Elimina chat?", @@ -730,6 +735,7 @@ "Features": "Caratteristiche", "Features Permissions": "Permessi delle funzionalità", "February": "Febbraio", + "Feedback deleted successfully": "", "Feedback Details": "Dettagli feedback", "Feedback History": "Storico feedback", "Feedbacks": "Feedback", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "La dimensione del file non deve superare {{maxSize}} MB.", "File Upload": "Caricamento file", "File uploaded successfully": "Caricamento file riuscito", + "File uploaded!": "", "Files": "File", "Filter": "", "Filter is now globally disabled": "Il filtro è ora disabilitato globalmente", @@ -857,6 +864,7 @@ "Image Compression": "Compressione Immagini", "Image Compression Height": "Altezza immagine compressa", "Image Compression Width": "Larghezza immagine compressa", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "Generazione Immagini", "Image Generation Engine": "Motore di generazione immagini", @@ -941,6 +949,7 @@ "Knowledge Name": "", "Knowledge Public Sharing": "Conoscenza condivisione pubblica", "Knowledge reset successfully.": "Conoscenza ripristinata con successo.", + "Knowledge Sharing": "", "Knowledge updated successfully": "Conoscenza aggiornata con successo", "Kokoro.js (Browser)": "Kokoro.js (Browser)", "Kokoro.js Dtype": "Kokoro.js Dtype", @@ -1006,6 +1015,7 @@ "Max Upload Size": "Dimensione massima di caricamento", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "È possibile scaricare un massimo di 3 modelli contemporaneamente. Riprova più tardi.", "May": "Maggio", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "Configurazione modelli salvata con successo", "Models imported successfully": "", "Models Public Sharing": "Conoscenza condivisione pubblica", + "Models Sharing": "", "Mojeek Search API Key": "Chiave API di Mojeek Search", "More": "Altro", "More Concise": "", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Nota: se imposti un punteggio minimo, la ricerca restituirà solo i documenti con un punteggio maggiore o uguale al punteggio minimo.", "Notes": "Note", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "Suono di notifica", "Notification Webhook": "Webhook di notifica", "Notifications": "Notifiche desktop", @@ -1274,6 +1286,7 @@ "Prompts": "Prompt", "Prompts Access": "Accesso ai Prompt", "Prompts Public Sharing": "Condivisione Pubblica dei Prompt", + "Prompts Sharing": "", "Provider Type": "", "Public": "Pubblico", "Pull \"{{searchValue}}\" from Ollama.com": "Estrai \"{{searchValue}}\" da Ollama.com", @@ -1458,6 +1471,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "Imposta il seme del numero casuale da utilizzare per la generazione. Impostando questo su un numero specifico, il modello genererà lo stesso testo per lo stesso prompt.", "Sets the size of the context window used to generate the next token.": "Imposta la dimensione della finestra di contesto utilizzata per generare il token successivo.", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "Imposta le sequenze di arresto da utilizzare. Quando questo modello viene incontrato, l'LLM smetterà di generare testo e restituirà. Più modelli di arresto possono essere impostati specificando più parametri di arresto separati in un file modello.", + "Setting": "", "Settings": "Impostazioni", "Settings saved successfully!": "Impostazioni salvate con successo!", "Share": "Condividi", @@ -1638,6 +1652,7 @@ "Tools Function Calling Prompt": "Prompt di Chiamata Funzione dei Strumenti", "Tools have a function calling system that allows arbitrary code execution.": "Gli strumenti hanno un sistema di chiamata di funzione che consente l'esecuzione di codice arbitrario.", "Tools Public Sharing": "Condivisione Pubblica degli strumenti", + "Tools Sharing": "", "Top K": "Top K", "Top K Reranker": "Reranker Top K", "Transformers": "Transformer", @@ -1685,6 +1700,7 @@ "Upload Pipeline": "Carica Pipeline", "Upload Progress": "Avanzamento Caricamento", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploading file...": "", "URL": "URL", "URL is required": "", "URL Mode": "Modalità URL", diff --git a/src/lib/i18n/locales/ja-JP/translation.json b/src/lib/i18n/locales/ja-JP/translation.json index 80102462c5..4287f53071 100644 --- a/src/lib/i18n/locales/ja-JP/translation.json +++ b/src/lib/i18n/locales/ja-JP/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "ファイルのアップロードを許可", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "チャットで複数のモデルを許可", "Allow non-local voices": "ローカル以外のボイスを許可", "Allow Rate Response": "", @@ -144,6 +145,7 @@ "Archived Chats": "チャット記録", "archived-chat-export": "チャット記録のエクスポート", "Are you sure you want to clear all memories? This action cannot be undone.": "すべてのメモリをクリアしますか?この操作は元に戻すことができません。", + "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete this channel?": "このチャンネルを削除しますか?", "Are you sure you want to delete this message?": "このメッセージを削除しますか?", "Are you sure you want to unarchive all archived chats?": "すべてのアーカイブされたチャットをアンアーカイブしますか?", @@ -388,12 +390,14 @@ "Default description enabled": "デフォルト説明が有効です", "Default Features": "", "Default Filters": "", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "デフォルトモードは、実行前にツールを一度呼び出すことで、より広範なモデルで動作します。ネイティブモードは、モデルの組み込みのツール呼び出し機能を活用しますが、モデルがこの機能をサポートしている必要があります。", "Default Model": "デフォルトモデル", "Default model updated": "デフォルトモデルが更新されました", "Default Models": "デフォルトモデル", "Default permissions": "デフォルトの権限", "Default permissions updated successfully": "デフォルトの権限が更新されました", + "Default Pinned Models": "", "Default Prompt Suggestions": "デフォルトのプロンプトの提案", "Default to 389 or 636 if TLS is enabled": "389 またはTLSが有効な場合は 636 がデフォルト", "Default to ALL": "標準ではALL", @@ -402,6 +406,7 @@ "Delete": "削除", "Delete a model": "モデルを削除", "Delete All Chats": "すべてのチャットを削除", + "Delete all contents inside this folder": "", "Delete All Models": "すべてのモデルを削除", "Delete Chat": "チャットを削除", "Delete chat?": "チャットを削除しますか?", @@ -730,6 +735,7 @@ "Features": "機能", "Features Permissions": "機能の許可", "February": "2月", + "Feedback deleted successfully": "", "Feedback Details": "フィードバックの詳細", "Feedback History": "フィードバック履歴", "Feedbacks": "フィードバック", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "ファイルサイズの最大値は {{maxSize}} MB です。", "File Upload": "ファイルアップロード", "File uploaded successfully": "ファイルアップロードが成功しました", + "File uploaded!": "", "Files": "ファイル", "Filter": "フィルタ", "Filter is now globally disabled": "グローバルフィルタが無効です。", @@ -857,6 +864,7 @@ "Image Compression": "画像圧縮", "Image Compression Height": "画像圧縮 高さ", "Image Compression Width": "画像圧縮 幅", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "画像生成", "Image Generation Engine": "画像生成エンジン", @@ -941,6 +949,7 @@ "Knowledge Name": "ナレッジベースの名前", "Knowledge Public Sharing": "ナレッジベースの公開共有", "Knowledge reset successfully.": "ナレッジベースのリセットに成功しました", + "Knowledge Sharing": "", "Knowledge updated successfully": "ナレッジベースのアップデートに成功しました", "Kokoro.js (Browser)": "Kokoro.js (ブラウザ)", "Kokoro.js Dtype": "Kokoro.js Dtype", @@ -1006,6 +1015,7 @@ "Max Upload Size": "最大アップロードサイズ", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "同時にダウンロードできるモデルは最大 3 つです。後でもう一度お試しください。", "May": "5月", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "中", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "モデル設定が正常に保存されました", "Models imported successfully": "", "Models Public Sharing": "モデルの公開共有", + "Models Sharing": "", "Mojeek Search API Key": "Mojeek Search APIキー", "More": "もっと見る", "More Concise": "より簡潔に", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "注意:最小スコアを設定した場合、検索は最小スコア以上のスコアを持つドキュメントのみを返します。", "Notes": "ノート", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "通知音", "Notification Webhook": "通知Webhook", "Notifications": "デスクトップ通知", @@ -1274,6 +1286,7 @@ "Prompts": "プロンプト", "Prompts Access": "プロンプトアクセス", "Prompts Public Sharing": "プロンプトの公開共有", + "Prompts Sharing": "", "Provider Type": "", "Public": "公開", "Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com から \"{{searchValue}}\" をプル", @@ -1456,6 +1469,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "生成に用いる乱数シードを設定します。特定の数値を設定すると、同じプロンプトで同じテキストが生成されます。", "Sets the size of the context window used to generate the next token.": "次のトークンを生成する際に使用するコンテキストウィンドウのサイズを設定します。", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "停止シーケンスを設定します。このパターンに達するとLLMはテキスト生成を停止し、結果を返します。複数の停止パターンは、モデルファイル内で複数のstopパラメータを指定することで設定可能です。", + "Setting": "", "Settings": "設定", "Settings saved successfully!": "設定が正常に保存されました!", "Share": "共有", @@ -1636,6 +1650,7 @@ "Tools Function Calling Prompt": "ツール関数呼び出しプロンプト", "Tools have a function calling system that allows arbitrary code execution.": "ツールは任意のコード実行を可能にする関数呼び出しシステムを持っています。", "Tools Public Sharing": "ツールの公開共有", + "Tools Sharing": "", "Top K": "トップ K", "Top K Reranker": "トップ K リランカー", "Transformers": "", @@ -1683,6 +1698,7 @@ "Upload Pipeline": "パイプラインをアップロード", "Upload Progress": "アップロードの進行状況", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "アップロード状況: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", + "Uploading file...": "", "URL": "", "URL is required": "URLは必須です", "URL Mode": "URL モード", diff --git a/src/lib/i18n/locales/ka-GE/translation.json b/src/lib/i18n/locales/ka-GE/translation.json index 8d4ef90d5a..16cf24b619 100644 --- a/src/lib/i18n/locales/ka-GE/translation.json +++ b/src/lib/i18n/locales/ka-GE/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "პასუხის გაგრძელების დაშვება", "Allow Delete Messages": "შეტყობინებების წაშლის დაშვება", "Allow File Upload": "ფაილის ატვირთვის დაშვება", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "ერთზე მეტი მოდელის დაშვება ჩატში", "Allow non-local voices": "არალოკალური ხმების დაშვება", "Allow Rate Response": "პასუხის შეფასების დაშვება", @@ -144,6 +145,7 @@ "Archived Chats": "დაარქივებული ჩატები", "archived-chat-export": "დაარქივებული-ჩატის-გატანა", "Are you sure you want to clear all memories? This action cannot be undone.": "", + "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete this channel?": "მართლა გნებავთ ამ არხის წაშლა?", "Are you sure you want to delete this message?": "მართლა გნებავთ ამ შეტყობინების წასლა?", "Are you sure you want to unarchive all archived chats?": "", @@ -388,12 +390,14 @@ "Default description enabled": "ნაგულისხმევი აღწერა ჩართულია", "Default Features": "ნაგულისხმევი ფუნქციები", "Default Filters": "ნაგულიხმევი ფილტრები", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "ნაგულისხმევი მოდელი", "Default model updated": "ნაგულისხმევი მოდელი განახლდა", "Default Models": "ნაგულისხმევი მოდელები", "Default permissions": "ნაგულისხმები წვდომები", "Default permissions updated successfully": "", + "Default Pinned Models": "", "Default Prompt Suggestions": "ნაგულისხმევი მოთხოვნის მინიშნებები", "Default to 389 or 636 if TLS is enabled": "", "Default to ALL": "", @@ -402,6 +406,7 @@ "Delete": "წაშლა", "Delete a model": "მოდელის წაშლა", "Delete All Chats": "ყველა ჩატის წაშლა", + "Delete all contents inside this folder": "", "Delete All Models": "ყველა მოდელის წაშლა", "Delete Chat": "საუბრის წაშლა", "Delete chat?": "წავშალო ჩატი?", @@ -730,6 +735,7 @@ "Features": "მახასიათებლები", "Features Permissions": "უფლებები ფუნქციებზე", "February": "თებერვალი", + "Feedback deleted successfully": "", "Feedback Details": "უკუკავშირის დეტალები", "Feedback History": "უკუკავშირის ისტორია", "Feedbacks": "უკუკავშირები", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "ფაილის ზომა {{maxSize}} მბ-ს არ უნდა აღემატებოდეს.", "File Upload": "ფაილის ატვირთვა", "File uploaded successfully": "ფაილი წარმატებით აიტვირთა", + "File uploaded!": "", "Files": "ფაილი", "Filter": "ფილტრი", "Filter is now globally disabled": "ფილტრი ახლა გლობალურად გამორთულია", @@ -857,6 +864,7 @@ "Image Compression": "გამოსახულების შეკუმშვა", "Image Compression Height": "გამოსახულების შეკუმშვის სიმაღლე", "Image Compression Width": "გამოსახულების შეკუმშვის სიგანე", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "გამოსახულების გენერაცია", "Image Generation Engine": "გამოსახულებების გენერაციის ძრავა", @@ -941,6 +949,7 @@ "Knowledge Name": "ცოდნის სახელი", "Knowledge Public Sharing": "ცოდნის საჯარო გაზიარება", "Knowledge reset successfully.": "ცოდნის ჩამოყრა წარმატებულია.", + "Knowledge Sharing": "", "Knowledge updated successfully": "ცოდნა წარმატებით განახლდა", "Kokoro.js (Browser)": "Kokoro.js (ბრაუზერი)", "Kokoro.js Dtype": "Kokoro.js Dtype", @@ -1006,6 +1015,7 @@ "Max Upload Size": "მაქს. ატვირთვის ზომა", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "ერთდროულად მაქსიმუმ 3 მოდელის ჩამოტვირთვაა შესაძლებელია. მოგვიანებით სცადეთ.", "May": "მაისი", + "MBR": "", "MCP": "MCP", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "საშუალო", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "", "Models imported successfully": "", "Models Public Sharing": "", + "Models Sharing": "", "Mojeek Search API Key": "", "More": "მეტი", "More Concise": "", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "შენიშვნა: თუ თქვენ დააყენებთ მინიმალურ ქულას, ძებნა დააბრუნებს მხოლოდ დოკუმენტებს მინიმალური ქულის მეტი ან ტოლი ქულით.", "Notes": "შენიშვნები", "Notes Public Sharing": "შენიშვნების საჯარო გაზიარება", + "Notes Sharing": "", "Notification Sound": "გაფრთხილების ხმა", "Notification Webhook": "გაფრთხილების ვებჰუკი", "Notifications": "გაფრთხილებები", @@ -1274,6 +1286,7 @@ "Prompts": "მოთხოვნები", "Prompts Access": "", "Prompts Public Sharing": "", + "Prompts Sharing": "", "Provider Type": "მომწოდებლის წიპი", "Public": "საჯარო", "Pull \"{{searchValue}}\" from Ollama.com": "\"{{searchValue}}\"-ის გადმოწერა Ollama.com-იდან", @@ -1457,6 +1470,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "", "Sets the size of the context window used to generate the next token.": "", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "", + "Setting": "", "Settings": "მორგება", "Settings saved successfully!": "პარამეტრები შენახვა წარმატებულია!", "Share": "გაზიარება", @@ -1637,6 +1651,7 @@ "Tools Function Calling Prompt": "", "Tools have a function calling system that allows arbitrary code execution.": "", "Tools Public Sharing": "", + "Tools Sharing": "", "Top K": "ტოპ K", "Top K Reranker": "", "Transformers": "Transformers", @@ -1684,6 +1699,7 @@ "Upload Pipeline": "ფაიფლაინის ატვირთვა", "Upload Progress": "ატვირთვის მიმდინარეობა", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploading file...": "", "URL": "URL", "URL is required": "URL საჭიროა", "URL Mode": "URL რეჟიმი", diff --git a/src/lib/i18n/locales/kab-DZ/translation.json b/src/lib/i18n/locales/kab-DZ/translation.json index 6a2bb6dc53..fd60c9e0ab 100644 --- a/src/lib/i18n/locales/kab-DZ/translation.json +++ b/src/lib/i18n/locales/kab-DZ/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "Sireg akemmel n tririt", "Allow Delete Messages": "Sireg tukksa n yiznan", "Allow File Upload": "Sireg asali n yifuyla", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "Sireg ugar n timudmiwin deg usqerdec", "Allow non-local voices": "Sireg tuɣac tirdiganin", "Allow Rate Response": "", @@ -144,6 +145,7 @@ "Archived Chats": "Idiwenniyen i yettwaḥerzen", "archived-chat-export": "asifeḍ n yidiwenniyen i yettwaḥerzen", "Are you sure you want to clear all memories? This action cannot be undone.": "Tetḥeqqeḍ tebɣiḍ ad tekkseḍ akk aktayen? Tigawt-a ur tettwakkes ara.", + "Are you sure you want to delete \"{{NAME}}\"?": "", "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 message?": "Tetḥeqqeḍ tebɣiḍ ad tekkseḍ izen-a?", "Are you sure you want to unarchive all archived chats?": "Tetḥeqqemt tebɣamt ad d-tekksemt akk iqecwalen iarkasen?", @@ -388,12 +390,14 @@ "Default description enabled": "Aglam amezwar yermed", "Default Features": "", "Default Filters": "Imsizdigen imezwura", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "Tamudemt tamezwart", "Default model updated": "Tamudemt amezwar, tettwaleqqem", "Default Models": "Timudmiwin timezwura", "Default permissions": "Tisirag timezwura", "Default permissions updated successfully": "Tisirag timezwar ttwaleqqment akken iwata", + "Default Pinned Models": "", "Default Prompt Suggestions": "Isumar n yineftaɣen s wudem amezwar", "Default to 389 or 636 if TLS is enabled": "Amezwer 389 neɣ 636 ma yella TLS yettwarmed", "Default to ALL": "S wudem amezwar i meṛṛa", @@ -402,6 +406,7 @@ "Delete": "Kkes", "Delete a model": "Kkes tamudemt", "Delete All Chats": "Kkes akk idiwenniyen", + "Delete all contents inside this folder": "", "Delete All Models": "Kkes akk timudmiwin", "Delete Chat": "Kkes asqerdec", "Delete chat?": "Tebɣiḍ ad tekkseḍ adiwenni?", @@ -730,6 +735,7 @@ "Features": "Timahilin", "Features Permissions": "Tisirag n tmehilin", "February": "Fuṛaṛ", + "Feedback deleted successfully": "", "Feedback Details": "Talqayt n tamawin", "Feedback History": "Azray n tamawin", "Feedbacks": "Timuɣliwin", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "Tiddi n ufaylu ur ilaq ara ad tɛeddi nnig {{maxSize}} MB.", "File Upload": "Asali n ufaylu", "File uploaded successfully": "Afaylu-nni yuli akken iwata", + "File uploaded!": "", "Files": "Ifuyla", "Filter": "Imsizdeg", "Filter is now globally disabled": "Afaylu tura d ameɛdur amaḍalan", @@ -857,6 +864,7 @@ "Image Compression": "Tussda n tugna", "Image Compression Height": "Askussel n teɣzi n tugna", "Image Compression Width": "Askussem n tehri n tugna", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "Asirew n tugniwin", "Image Generation Engine": "Amsedday n usirew n tugniwin", @@ -941,6 +949,7 @@ "Knowledge Name": "Isem n tmessunt", "Knowledge Public Sharing": "Beṭṭu azayaz n tmussniwin", "Knowledge reset successfully.": "Tamussni tettuwennez akken iwata.", + "Knowledge Sharing": "", "Knowledge updated successfully": "Timussniwin ttwaleqqment akken iwata", "Kokoro.js (Browser)": "Kokoro.js (Iminig)", "Kokoro.js Dtype": "Kokoro.js Dtype", @@ -1006,6 +1015,7 @@ "Max Upload Size": "Teɣzi tafellayt n uzdam", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maximum n 3 n tmudmin yezmer ad d-yettwasider seg-a ɣer da. Ttxil-k, ɛreḍ tikkelt niḍen ticki.", "May": "Mayyu", + "MBR": "", "MCP": "MCP", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "Asneftaɣ n yimudam yettwaskelsen akken iwata", "Models imported successfully": "", "Models Public Sharing": "Beṭṭu azayaz n tmudmiwin", + "Models Sharing": "", "Mojeek Search API Key": "Tasarut API n Mojeek", "More": "Ugar", "More Concise": "Awezlan ugar", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "", "Notes": "Tizmilin", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "Imesli n tilɣa", "Notification Webhook": "Webhook n ulɣu", "Notifications": "Tilɣa", @@ -1274,6 +1286,7 @@ "Prompts": "Ineftaɣen", "Prompts Access": "Anekcum ɣer yineftaɣen", "Prompts Public Sharing": "Beṭṭu azayaz n yineftaɣen", + "Prompts Sharing": "", "Provider Type": "Tawsit n usaǧǧaw", "Public": "Azayaz", "Pull \"{{searchValue}}\" from Ollama.com": "Awway n \"{{searchValue}}\" seg Ollama.com", @@ -1457,6 +1470,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "", "Sets the size of the context window used to generate the next token.": "Sbadu tiddi n tzewwut tasatalant yellan zik tetteg-d asken ay d-yetteddun.", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "Sbadu tiseddarin n uḥbas i useqdec. Mi ara d-temlil temɛawdit-a, LLM ad teḥbes asegrew n uḍris d tuɣalin. Timɛayin n uḥbas yeggten zemrent ad ttwasbeddent s usbadu n waṭas n yizamulen n uḥbas yemgaraden deg tmudemt.", + "Setting": "", "Settings": "Iɣewwaren", "Settings saved successfully!": "Iɣewwaṛen ttwakelsen akken iwata!", "Share": "Bḍu", @@ -1637,6 +1651,7 @@ "Tools Function Calling Prompt": "", "Tools have a function calling system that allows arbitrary code execution.": "", "Tools Public Sharing": "Beṭṭu azayaz n yifecka", + "Tools Sharing": "", "Top K": "Top K", "Top K Reranker": "Top K Reranker", "Transformers": "Transformers", @@ -1684,6 +1699,7 @@ "Upload Pipeline": "Aselda n uɛebbi", "Upload Progress": "", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Tikli n uɛebbi: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", + "Uploading file...": "", "URL": "URL", "URL is required": "Tlaq tansa URL", "URL Mode": "Askar n URL", diff --git a/src/lib/i18n/locales/ko-KR/translation.json b/src/lib/i18n/locales/ko-KR/translation.json index 4582bc75ca..01e2e949c2 100644 --- a/src/lib/i18n/locales/ko-KR/translation.json +++ b/src/lib/i18n/locales/ko-KR/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "계속 응답 허용", "Allow Delete Messages": "메시지 삭제 허용", "Allow File Upload": "파일 업로드 허용", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "채팅에서 여러 모델 허용", "Allow non-local voices": "외부 음성 허용", "Allow Rate Response": "", @@ -144,6 +145,7 @@ "Archived Chats": "보관된 채팅", "archived-chat-export": "보관된 채팅 내보내기", "Are you sure you want to clear all memories? This action cannot be undone.": "정말 모든 메모리를 지우시겠습니까? 이 작업은 되돌릴 수 없습니다.", + "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete this channel?": "정말 이 채널을 삭제하시겠습니까?", "Are you sure you want to delete this message?": "정말 이 메시지를 삭제하시겠습니까?", "Are you sure you want to unarchive all archived chats?": "정말 보관된 모든 채팅을 보관 해제하시겠습니까?", @@ -388,12 +390,14 @@ "Default description enabled": "기본 설명 활성화됨", "Default Features": "기본 기능", "Default Filters": "기본 필터", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "기본 모드는 실행 전에 도구를 한 번 호출하여 더 다양한 모델에서 작동합니다. 기본 모드는 모델에 내장된 도구 호출 기능을 활용하지만, 모델이 이 기능을 본질적으로 지원해야 합니다.", "Default Model": "기본 모델", "Default model updated": "기본 모델이 업데이트되었습니다.", "Default Models": "기본 모델", "Default permissions": "기본 권한", "Default permissions updated successfully": "성공적으로 기본 권한이 수정되었습니다", + "Default Pinned Models": "", "Default Prompt Suggestions": "기본 프롬프트 제안", "Default to 389 or 636 if TLS is enabled": "TLS가 활성화된 경우 기본값은 389 또는 636입니다", "Default to ALL": "기본값: 전체", @@ -402,6 +406,7 @@ "Delete": "삭제", "Delete a model": "모델 삭제", "Delete All Chats": "모든 채팅 삭제", + "Delete all contents inside this folder": "", "Delete All Models": "모든 모델 삭제", "Delete Chat": "채팅 삭제", "Delete chat?": "채팅을 삭제하시겠습니까?", @@ -730,6 +735,7 @@ "Features": "기능", "Features Permissions": "기능 권한", "February": "2월", + "Feedback deleted successfully": "", "Feedback Details": "피드백 상세내용", "Feedback History": "피드백 기록", "Feedbacks": "피드백", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "파일 사이즈가 {{maxSize}} MB를 초과하면 안됩니다.", "File Upload": "파일 업로드", "File uploaded successfully": "파일이 성공적으로 업로드되었습니다", + "File uploaded!": "", "Files": "파일", "Filter": "필터", "Filter is now globally disabled": "전반적으로 필터 비활성화됨", @@ -857,6 +864,7 @@ "Image Compression": "이미지 압축", "Image Compression Height": "이미지 압축 높이", "Image Compression Width": "이미지 압축 너비", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "이미지 생성", "Image Generation Engine": "이미지 생성 엔진", @@ -941,6 +949,7 @@ "Knowledge Name": "지식 기반 이름", "Knowledge Public Sharing": "지식 기반 공개 공유", "Knowledge reset successfully.": "성공적으로 지식 기반이 초기화되었습니다", + "Knowledge Sharing": "", "Knowledge updated successfully": "성공적으로 지식 기반이 업데이트되었습니다", "Kokoro.js (Browser)": "Kokoro.js (브라우저)", "Kokoro.js Dtype": "", @@ -1006,6 +1015,7 @@ "Max Upload Size": "업로드 최대 사이즈", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "최대 3개의 모델을 동시에 다운로드할 수 있습니다. 나중에 다시 시도하세요.", "May": "5월", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "MCP 지원은 실험적이며 명세가 자주 변경되므로, 호환성 문제가 발생할 수 있습니다. Open WebUI 팀이 OpenAPI 명세 지원을 직접 유지·관리하고 있어, 호환성 측면에서는 더 신뢰할 수 있는 선택입니다.", "Medium": "", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "모델 구성이 성공적으로 저장되었습니다", "Models imported successfully": "모델을 성공적으로 가져왔습니다.", "Models Public Sharing": "모델 공개 공유", + "Models Sharing": "", "Mojeek Search API Key": "Mojeek Search API 키", "More": "더보기", "More Concise": "더 간결하게", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "참고: 최소 점수를 설정하면, 검색 결과로 최소 점수 이상의 점수를 가진 문서만 반환합니다.", "Notes": "노트", "Notes Public Sharing": "노트 공개 공유", + "Notes Sharing": "", "Notification Sound": "알림 소리", "Notification Webhook": "알림 웹훅", "Notifications": "알림", @@ -1274,6 +1286,7 @@ "Prompts": "프롬프트", "Prompts Access": "프롬프트 접근", "Prompts Public Sharing": "프롬프트 공개 공유", + "Prompts Sharing": "", "Provider Type": "", "Public": "공개", "Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com에서 \"{{searchValue}}\" 가져오기", @@ -1456,6 +1469,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "생성에 사용할 난수 시드를 설정합니다. 이를 특정 숫자로 설정하면 모델이 동일한 프롬프트에 대해 동일한 텍스트를 생성하게 됩니다.", "Sets the size of the context window used to generate the next token.": "다음 토큰을 생성하는 데 사용되는 컨텍스트 창의 크기를 설정합니다.", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "중단 시퀀스를 설정합니다. 이 패턴이 발생하면 LLM은 텍스트 생성을 중단하고 반환합니다. 여러 중단 패턴은 모델 파일에서 여러 개의 별도 중단 매개변수를 지정하여 설정할 수 있습니다.", + "Setting": "", "Settings": "설정", "Settings saved successfully!": "설정이 성공적으로 저장되었습니다!", "Share": "공유", @@ -1636,6 +1650,7 @@ "Tools Function Calling Prompt": "도구 함수 호출 프롬프트", "Tools have a function calling system that allows arbitrary code execution.": "도구에 임의 코드 실행을 허용하는 함수가 포함되어 있습니다.", "Tools Public Sharing": "도구 공개 및 공유", + "Tools Sharing": "", "Top K": "Top K", "Top K Reranker": "Top K 리랭커", "Transformers": "트랜스포머", @@ -1683,6 +1698,7 @@ "Upload Pipeline": "업로드 파이프라인", "Upload Progress": "업로드 진행 상황", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploading file...": "", "URL": "URL", "URL is required": "URL이 필요합니다.", "URL Mode": "URL 모드", diff --git a/src/lib/i18n/locales/lt-LT/translation.json b/src/lib/i18n/locales/lt-LT/translation.json index 56a603d942..c83658d0ad 100644 --- a/src/lib/i18n/locales/lt-LT/translation.json +++ b/src/lib/i18n/locales/lt-LT/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Leisti nelokalius balsus", "Allow Rate Response": "", @@ -144,6 +145,7 @@ "Archived Chats": "Archyvuoti pokalbiai", "archived-chat-export": "", "Are you sure you want to clear all memories? This action cannot be undone.": "", + "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete this channel?": "", "Are you sure you want to delete this message?": "", "Are you sure you want to unarchive all archived chats?": "", @@ -388,12 +390,14 @@ "Default description enabled": "", "Default Features": "", "Default Filters": "", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "Numatytasis modelis", "Default model updated": "Numatytasis modelis atnaujintas", "Default Models": "", "Default permissions": "", "Default permissions updated successfully": "", + "Default Pinned Models": "", "Default Prompt Suggestions": "Numatytieji užklausų pasiūlymai", "Default to 389 or 636 if TLS is enabled": "", "Default to ALL": "", @@ -402,6 +406,7 @@ "Delete": "ištrinti", "Delete a model": "Ištrinti modėlį", "Delete All Chats": "Ištrinti visus pokalbius", + "Delete all contents inside this folder": "", "Delete All Models": "", "Delete Chat": "Ištrinti pokalbį", "Delete chat?": "Ištrinti pokalbį?", @@ -730,6 +735,7 @@ "Features": "", "Features Permissions": "", "February": "Vasaris", + "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "", "Feedbacks": "", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "", "File Upload": "", "File uploaded successfully": "", + "File uploaded!": "", "Files": "Rinkmenos", "Filter": "", "Filter is now globally disabled": "Filtrai nėra leidžiami globaliai", @@ -857,6 +864,7 @@ "Image Compression": "", "Image Compression Height": "", "Image Compression Width": "", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "", "Image Generation Engine": "Vaizdų generavimo variklis", @@ -941,6 +949,7 @@ "Knowledge Name": "", "Knowledge Public Sharing": "", "Knowledge reset successfully.": "", + "Knowledge Sharing": "", "Knowledge updated successfully": "", "Kokoro.js (Browser)": "", "Kokoro.js Dtype": "", @@ -1006,6 +1015,7 @@ "Max Upload Size": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Daugiausiai trys modeliai gali būti parsisiunčiami vienu metu.", "May": "gegužė", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "", "Models imported successfully": "", "Models Public Sharing": "", + "Models Sharing": "", "Mojeek Search API Key": "", "More": "Daugiau", "More Concise": "", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Jei turite minimalų įvertį, paieška gražins tik tą informaciją, kuri viršyje šį įvertį", "Notes": "", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "", "Notification Webhook": "", "Notifications": "Pranešimai", @@ -1274,6 +1286,7 @@ "Prompts": "Užklausos", "Prompts Access": "", "Prompts Public Sharing": "", + "Prompts Sharing": "", "Provider Type": "", "Public": "", "Pull \"{{searchValue}}\" from Ollama.com": "Rasti \"{{searchValue}}\" iš Ollama.com", @@ -1459,6 +1472,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "", "Sets the size of the context window used to generate the next token.": "", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "", + "Setting": "", "Settings": "Nustatymai", "Settings saved successfully!": "Parametrai sėkmingai išsaugoti!", "Share": "Dalintis", @@ -1639,6 +1653,7 @@ "Tools Function Calling Prompt": "", "Tools have a function calling system that allows arbitrary code execution.": "Įrankiai gali naudoti funkcijas ir leisti vykdyti kodą", "Tools Public Sharing": "", + "Tools Sharing": "", "Top K": "Top K", "Top K Reranker": "", "Transformers": "", @@ -1686,6 +1701,7 @@ "Upload Pipeline": "Atnaujinti procesą", "Upload Progress": "Įkėlimo progresas", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploading file...": "", "URL": "", "URL is required": "", "URL Mode": "URL režimas", diff --git a/src/lib/i18n/locales/ms-MY/translation.json b/src/lib/i18n/locales/ms-MY/translation.json index e9216440a2..84a69f75c7 100644 --- a/src/lib/i18n/locales/ms-MY/translation.json +++ b/src/lib/i18n/locales/ms-MY/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Benarkan suara bukan tempatan ", "Allow Rate Response": "", @@ -144,6 +145,7 @@ "Archived Chats": "Perbualan yang diarkibkan", "archived-chat-export": "", "Are you sure you want to clear all memories? This action cannot be undone.": "", + "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete this channel?": "", "Are you sure you want to delete this message?": "", "Are you sure you want to unarchive all archived chats?": "", @@ -388,12 +390,14 @@ "Default description enabled": "", "Default Features": "", "Default Filters": "", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "Model Lalai", "Default model updated": "Model lalai dikemas kini", "Default Models": "", "Default permissions": "", "Default permissions updated successfully": "", + "Default Pinned Models": "", "Default Prompt Suggestions": "Cadangan Gesaan Lalai", "Default to 389 or 636 if TLS is enabled": "", "Default to ALL": "", @@ -402,6 +406,7 @@ "Delete": "Padam", "Delete a model": "Padam Model", "Delete All Chats": "Padam Semua Perbualan", + "Delete all contents inside this folder": "", "Delete All Models": "", "Delete Chat": "Padam Perbualan", "Delete chat?": "Padam perbualan?", @@ -730,6 +735,7 @@ "Features": "", "Features Permissions": "", "February": "Febuari", + "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "", "Feedbacks": "", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "", "File Upload": "", "File uploaded successfully": "", + "File uploaded!": "", "Files": "Fail-Fail", "Filter": "", "Filter is now globally disabled": "Tapisan kini dilumpuhkan secara global", @@ -857,6 +864,7 @@ "Image Compression": "", "Image Compression Height": "", "Image Compression Width": "", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "", "Image Generation Engine": "Enjin Penjanaan Imej", @@ -941,6 +949,7 @@ "Knowledge Name": "", "Knowledge Public Sharing": "", "Knowledge reset successfully.": "", + "Knowledge Sharing": "", "Knowledge updated successfully": "", "Kokoro.js (Browser)": "", "Kokoro.js Dtype": "", @@ -1006,6 +1015,7 @@ "Max Upload Size": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maksimum 3 model boleh dimuat turun serentak. Sila cuba sebentar lagi.", "May": "Mei", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "", "Models imported successfully": "", "Models Public Sharing": "", + "Models Sharing": "", "Mojeek Search API Key": "", "More": "Lagi", "More Concise": "", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Nota: Jika anda menetapkan skor minimum, carian hanya akan mengembalikan dokumen dengan skor lebih besar daripada atau sama dengan skor minimum.", "Notes": "", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "", "Notification Webhook": "", "Notifications": "Pemberitahuan", @@ -1274,6 +1286,7 @@ "Prompts": "Gesaan", "Prompts Access": "", "Prompts Public Sharing": "", + "Prompts Sharing": "", "Provider Type": "", "Public": "", "Pull \"{{searchValue}}\" from Ollama.com": "Tarik \"{{ searchValue }}\" daripada Ollama.com", @@ -1456,6 +1469,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "", "Sets the size of the context window used to generate the next token.": "", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "", + "Setting": "", "Settings": "Tetapan", "Settings saved successfully!": "Tetapan berjaya disimpan!", "Share": "Kongsi", @@ -1636,6 +1650,7 @@ "Tools Function Calling Prompt": "", "Tools have a function calling system that allows arbitrary code execution.": "Alatan mempunyai sistem panggilan fungsi yang membolehkan pelaksanaan kod sewenang-wenangnya.", "Tools Public Sharing": "", + "Tools Sharing": "", "Top K": "'Top K'", "Top K Reranker": "", "Transformers": "", @@ -1683,6 +1698,7 @@ "Upload Pipeline": "Muatnaik 'Pipeline'", "Upload Progress": "Kemajuan Muatnaik", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploading file...": "", "URL": "", "URL is required": "", "URL Mode": "Mod URL", diff --git a/src/lib/i18n/locales/nb-NO/translation.json b/src/lib/i18n/locales/nb-NO/translation.json index d5f5811496..338add3b22 100644 --- a/src/lib/i18n/locales/nb-NO/translation.json +++ b/src/lib/i18n/locales/nb-NO/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "Tillatt opplasting av filer", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Tillat ikke-lokale stemmer", "Allow Rate Response": "", @@ -144,6 +145,7 @@ "Archived Chats": "Arkiverte chatter", "archived-chat-export": "archived-chat-export", "Are you sure you want to clear all memories? This action cannot be undone.": "", + "Are you sure you want to delete \"{{NAME}}\"?": "", "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 message?": "Er du sikker på at du vil slette denne meldingen?", "Are you sure you want to unarchive all archived chats?": "Er du sikker på at du vil oppheve arkiveringen av alle arkiverte chatter?", @@ -388,12 +390,14 @@ "Default description enabled": "", "Default Features": "", "Default Filters": "", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Standard modus fungerer med et bredere utvalg av modeller ved at verktøyene kalles én gang før kjøring. Opprinnelig modus utnytter modellens innebygde funksjoner for verktøykalling, men krever at modellen i seg selv støtter denne funksjonen.", "Default Model": "Standard modell", "Default model updated": "Standard modell oppdatert", "Default Models": "Standard modeller", "Default permissions": "Standard tillatelser", "Default permissions updated successfully": "Standard tillatelser oppdatert", + "Default Pinned Models": "", "Default Prompt Suggestions": "Standard forslag til ledetekster", "Default to 389 or 636 if TLS is enabled": "Velg 389 eller 636 som standard hvis TLS er aktivert", "Default to ALL": "Velg ALL som standard", @@ -402,6 +406,7 @@ "Delete": "Slett", "Delete a model": "Slett en modell", "Delete All Chats": "Slett alle chatter", + "Delete all contents inside this folder": "", "Delete All Models": "Slett alle modeller", "Delete Chat": "Slett chat", "Delete chat?": "Slette chat?", @@ -730,6 +735,7 @@ "Features": "Funksjoner", "Features Permissions": "Tillatelser for funksjoner", "February": "februar", + "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "Tilbakemeldingslogg", "Feedbacks": "Tilbakemeldinger", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "Filstørrelser kan ikke være på mer enn {{maxSize} MB", "File Upload": "", "File uploaded successfully": "Filen er lastet opp", + "File uploaded!": "", "Files": "Filer", "Filter": "", "Filter is now globally disabled": "Filteret er nå globalt deaktivert", @@ -857,6 +864,7 @@ "Image Compression": "Bildekomprimering", "Image Compression Height": "", "Image Compression Width": "", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "Bildegenering", "Image Generation Engine": "Bildegenereringsmotor", @@ -941,6 +949,7 @@ "Knowledge Name": "", "Knowledge Public Sharing": "", "Knowledge reset successfully.": "Tilbakestilling av kunnskap vellykket.", + "Knowledge Sharing": "", "Knowledge updated successfully": "Kunnskap oppdatert", "Kokoro.js (Browser)": "Kokoro.js (nettleser)", "Kokoro.js Dtype": "Kokoro.js Dtype", @@ -1006,6 +1015,7 @@ "Max Upload Size": "Maks størrelse på opplasting", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maksimalt tre modeller kan lastes ned samtidig. Prøv igjen senere.", "May": "mai", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "Kofigurasjon av modeller er lagret", "Models imported successfully": "", "Models Public Sharing": "", + "Models Sharing": "", "Mojeek Search API Key": "API-nøekkel for Mojeek Search", "More": "Mer", "More Concise": "", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Merk: Hvis du setter en minimumspoengsum, returnerer søket kun dokumenter med en poengsum som er større enn eller lik minimumspoengsummen.", "Notes": "Notater", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "Lyd for varsler", "Notification Webhook": "Webhook for varsler", "Notifications": "Varsler", @@ -1274,6 +1286,7 @@ "Prompts": "Ledetekster", "Prompts Access": "Tilgang til ledetekster", "Prompts Public Sharing": "", + "Prompts Sharing": "", "Provider Type": "", "Public": "", "Pull \"{{searchValue}}\" from Ollama.com": "Hent {{searchValue}} fra Ollama.com", @@ -1457,6 +1470,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "", "Sets the size of the context window used to generate the next token.": "", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "Angir hvilke stoppsekvenser som skal brukes. Når dette mønsteret forekommer, stopper LLM genereringen av tekst og returnerer. Du kan angi flere stoppmønstre ved å spesifisere flere separate stoppparametere i en modellfil.", + "Setting": "", "Settings": "Innstillinger", "Settings saved successfully!": "Innstillinger lagret!", "Share": "Del", @@ -1637,6 +1651,7 @@ "Tools Function Calling Prompt": "Ledetekst for kalling av verktøyfunksjonen", "Tools have a function calling system that allows arbitrary code execution.": "Verktøy inneholder et funksjonskallsystem som tillater vilkårlig kodekjøring.", "Tools Public Sharing": "", + "Tools Sharing": "", "Top K": "Top K", "Top K Reranker": "", "Transformers": "Transformatorer", @@ -1684,6 +1699,7 @@ "Upload Pipeline": "Last opp pipeline", "Upload Progress": "Opplastingsfremdrift", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploading file...": "", "URL": "URL", "URL is required": "", "URL Mode": "URL-modus", diff --git a/src/lib/i18n/locales/nl-NL/translation.json b/src/lib/i18n/locales/nl-NL/translation.json index 30d3ebdb37..d250917f94 100644 --- a/src/lib/i18n/locales/nl-NL/translation.json +++ b/src/lib/i18n/locales/nl-NL/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "Bestandenupload toestaan", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Niet-lokale stemmen toestaan", "Allow Rate Response": "", @@ -144,6 +145,7 @@ "Archived Chats": "Chatrecord", "archived-chat-export": "gearchiveerde-chat-export", "Are you sure you want to clear all memories? This action cannot be undone.": "Weet je zeker dat je alle herinneringen wil verwijderen? Deze actie kan niet ongedaan worden gemaakt.", + "Are you sure you want to delete \"{{NAME}}\"?": "", "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 message?": "Weet je zeker dat je dit bericht wil verwijderen?", "Are you sure you want to unarchive all archived chats?": "Weet je zeker dat je alle gearchiveerde chats wil onarchiveren?", @@ -388,12 +390,14 @@ "Default description enabled": "", "Default Features": "", "Default Filters": "", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "De standaardmodus werkt met een breder scala aan modellen door gereedschappen één keer aan te roepen voordat ze worden uitgevoerd. De native modus maakt gebruik van de ingebouwde mogelijkheden van het model om gereedschappen aan te roepen, maar vereist dat het model deze functie inherent ondersteunt.", "Default Model": "Standaardmodel", "Default model updated": "Standaardmodel bijgewerkt", "Default Models": "Standaardmodellen", "Default permissions": "Standaardrechten", "Default permissions updated successfully": "Standaardrechten succesvol bijgewerkt", + "Default Pinned Models": "", "Default Prompt Suggestions": "Standaard Prompt Suggesties", "Default to 389 or 636 if TLS is enabled": "Standaard 389 of 636 als TLS is ingeschakeld", "Default to ALL": "Standaard op ALL", @@ -402,6 +406,7 @@ "Delete": "Verwijderen", "Delete a model": "Verwijder een model", "Delete All Chats": "Verwijder alle chats", + "Delete all contents inside this folder": "", "Delete All Models": "Verwijder alle modellen", "Delete Chat": "Verwijder chat", "Delete chat?": "Verwijder chat?", @@ -730,6 +735,7 @@ "Features": "Functies", "Features Permissions": "Functietoestemmingen", "February": "Februari", + "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "Feedback geschiedenis", "Feedbacks": "Feedback", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "Bestandsgrootte mag niet groter zijn dan {{maxSize}} MB.", "File Upload": "", "File uploaded successfully": "Bestand succesvol geüpload", + "File uploaded!": "", "Files": "Bestanden", "Filter": "", "Filter is now globally disabled": "Filter is nu globaal uitgeschakeld", @@ -857,6 +864,7 @@ "Image Compression": "Afbeeldingscompressie", "Image Compression Height": "", "Image Compression Width": "", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "Afbeeldingsgeneratie", "Image Generation Engine": "Afbeeldingsgeneratie Engine", @@ -941,6 +949,7 @@ "Knowledge Name": "", "Knowledge Public Sharing": "Publieke kennisdeling", "Knowledge reset successfully.": "Kennis succesvol gereset", + "Knowledge Sharing": "", "Knowledge updated successfully": "Kennis succesvol bijgewerkt", "Kokoro.js (Browser)": "Kokoro.js (Browser)", "Kokoro.js Dtype": "Kokoro.js Dtype", @@ -1006,6 +1015,7 @@ "Max Upload Size": "Maximale Uploadgrootte", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maximaal 3 modellen kunnen tegelijkertijd worden gedownload. Probeer het later opnieuw.", "May": "Mei", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "Modellenconfiguratie succesvol opgeslagen", "Models imported successfully": "", "Models Public Sharing": "Modellen publiek delen", + "Models Sharing": "", "Mojeek Search API Key": "Mojeek Search API-sleutel", "More": "Meer", "More Concise": "", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Opmerking: Als je een minimumscore instelt, levert de zoekopdracht alleen documenten op met een score groter dan of gelijk aan de minimumscore.", "Notes": "Aantekeningen", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "Notificatiegeluid", "Notification Webhook": "Notificatie-webhook", "Notifications": "Notificaties", @@ -1274,6 +1286,7 @@ "Prompts": "Prompts", "Prompts Access": "Prompttoegang", "Prompts Public Sharing": "Publiek prompts delen", + "Prompts Sharing": "", "Provider Type": "", "Public": "Publiek", "Pull \"{{searchValue}}\" from Ollama.com": "Haal \"{{searchValue}}\" uit Ollama.com", @@ -1457,6 +1470,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "Stelt de willekeurigheid in om te gebruiken voor het genereren. Als je dit op een specifiek getal instelt, genereert het model dezelfde tekst voor dezelfde prompt.", "Sets the size of the context window used to generate the next token.": "Stelt de grootte van het contextvenster in dat gebruikt wordt om het volgende token te genereren.", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "Stelt de te gebruiken stopsequentie in. Als dit patroon wordt gevonden, stopt de LLM met het genereren van tekst en keert terug. Er kunnen meerdere stoppatronen worden ingesteld door meerdere afzonderlijke stopparameters op te geven in een modelbestand.", + "Setting": "", "Settings": "Instellingen", "Settings saved successfully!": "Instellingen succesvol opgeslagen!", "Share": "Delen", @@ -1637,6 +1651,7 @@ "Tools Function Calling Prompt": "Gereedschapsfunctie aanroepprompt", "Tools have a function calling system that allows arbitrary code execution.": "Gereedschappen hebben een systeem voor het aanroepen van functies waarmee willekeurige code kan worden uitgevoerd", "Tools Public Sharing": "Gereedschappen publiek delen", + "Tools Sharing": "", "Top K": "Top K", "Top K Reranker": "Top K herranker", "Transformers": "Transformers", @@ -1684,6 +1699,7 @@ "Upload Pipeline": "Upload Pijpleiding", "Upload Progress": "Upload Voortgang", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploading file...": "", "URL": "URL", "URL is required": "", "URL Mode": "URL-modus", diff --git a/src/lib/i18n/locales/pa-IN/translation.json b/src/lib/i18n/locales/pa-IN/translation.json index bbb399b8e9..37bb2402ac 100644 --- a/src/lib/i18n/locales/pa-IN/translation.json +++ b/src/lib/i18n/locales/pa-IN/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "", "Allow Rate Response": "", @@ -144,6 +145,7 @@ "Archived Chats": "ਆਰਕਾਈਵ ਕੀਤੀਆਂ ਗੱਲਾਂ", "archived-chat-export": "", "Are you sure you want to clear all memories? This action cannot be undone.": "", + "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete this channel?": "", "Are you sure you want to delete this message?": "", "Are you sure you want to unarchive all archived chats?": "", @@ -388,12 +390,14 @@ "Default description enabled": "", "Default Features": "", "Default Filters": "", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "ਡਿਫਾਲਟ ਮਾਡਲ", "Default model updated": "ਮੂਲ ਮਾਡਲ ਅੱਪਡੇਟ ਕੀਤਾ ਗਿਆ", "Default Models": "", "Default permissions": "", "Default permissions updated successfully": "", + "Default Pinned Models": "", "Default Prompt Suggestions": "ਮੂਲ ਪ੍ਰੰਪਟ ਸੁਝਾਅ", "Default to 389 or 636 if TLS is enabled": "", "Default to ALL": "", @@ -402,6 +406,7 @@ "Delete": "ਮਿਟਾਓ", "Delete a model": "ਇੱਕ ਮਾਡਲ ਮਿਟਾਓ", "Delete All Chats": "ਸਾਰੀਆਂ ਚੈਟਾਂ ਨੂੰ ਮਿਟਾਓ", + "Delete all contents inside this folder": "", "Delete All Models": "", "Delete Chat": "ਗੱਲਬਾਤ ਮਿਟਾਓ", "Delete chat?": "", @@ -730,6 +735,7 @@ "Features": "", "Features Permissions": "", "February": "ਫਰਵਰੀ", + "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "", "Feedbacks": "", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "", "File Upload": "", "File uploaded successfully": "", + "File uploaded!": "", "Files": "", "Filter": "", "Filter is now globally disabled": "", @@ -857,6 +864,7 @@ "Image Compression": "", "Image Compression Height": "", "Image Compression Width": "", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "", "Image Generation Engine": "ਚਿੱਤਰ ਜਨਰੇਸ਼ਨ ਇੰਜਣ", @@ -941,6 +949,7 @@ "Knowledge Name": "", "Knowledge Public Sharing": "", "Knowledge reset successfully.": "", + "Knowledge Sharing": "", "Knowledge updated successfully": "", "Kokoro.js (Browser)": "", "Kokoro.js Dtype": "", @@ -1006,6 +1015,7 @@ "Max Upload Size": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "ਇੱਕ ਸਮੇਂ ਵਿੱਚ ਵੱਧ ਤੋਂ ਵੱਧ 3 ਮਾਡਲ ਡਾਊਨਲੋਡ ਕੀਤੇ ਜਾ ਸਕਦੇ ਹਨ। ਕਿਰਪਾ ਕਰਕੇ ਬਾਅਦ ਵਿੱਚ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ।", "May": "ਮਈ", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "", "Models imported successfully": "", "Models Public Sharing": "", + "Models Sharing": "", "Mojeek Search API Key": "", "More": "ਹੋਰ", "More Concise": "", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "ਨੋਟ: ਜੇ ਤੁਸੀਂ ਘੱਟੋ-ਘੱਟ ਸਕੋਰ ਸੈੱਟ ਕਰਦੇ ਹੋ, ਤਾਂ ਖੋਜ ਸਿਰਫ਼ ਉਹੀ ਡਾਕੂਮੈਂਟ ਵਾਪਸ ਕਰੇਗੀ ਜਿਨ੍ਹਾਂ ਦਾ ਸਕੋਰ ਘੱਟੋ-ਘੱਟ ਸਕੋਰ ਦੇ ਬਰਾਬਰ ਜਾਂ ਵੱਧ ਹੋਵੇ।", "Notes": "", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "", "Notification Webhook": "", "Notifications": "ਸੂਚਨਾਵਾਂ", @@ -1274,6 +1286,7 @@ "Prompts": "ਪ੍ਰੰਪਟ", "Prompts Access": "", "Prompts Public Sharing": "", + "Prompts Sharing": "", "Provider Type": "", "Public": "", "Pull \"{{searchValue}}\" from Ollama.com": "ਓਲਾਮਾ.ਕਾਮ ਤੋਂ \"{{searchValue}}\" ਖਿੱਚੋ", @@ -1457,6 +1470,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "", "Sets the size of the context window used to generate the next token.": "", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "", + "Setting": "", "Settings": "ਸੈਟਿੰਗਾਂ", "Settings saved successfully!": "ਸੈਟਿੰਗਾਂ ਸਫਲਤਾਪੂਰਵਕ ਸੰਭਾਲੀਆਂ ਗਈਆਂ!", "Share": "ਸਾਂਝਾ ਕਰੋ", @@ -1637,6 +1651,7 @@ "Tools Function Calling Prompt": "", "Tools have a function calling system that allows arbitrary code execution.": "", "Tools Public Sharing": "", + "Tools Sharing": "", "Top K": "ਸਿਖਰ K", "Top K Reranker": "", "Transformers": "", @@ -1684,6 +1699,7 @@ "Upload Pipeline": "", "Upload Progress": "ਅਪਲੋਡ ਪ੍ਰਗਤੀ", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploading file...": "", "URL": "", "URL is required": "", "URL Mode": "URL ਮੋਡ", diff --git a/src/lib/i18n/locales/pl-PL/translation.json b/src/lib/i18n/locales/pl-PL/translation.json index e2df880ecf..d60011f388 100644 --- a/src/lib/i18n/locales/pl-PL/translation.json +++ b/src/lib/i18n/locales/pl-PL/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "Pozwól na przesyłanie plików", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "Zezwól na wiele modeli w ramach jednego czatu", "Allow non-local voices": "Pozwól na głosy spoza lokalnej społeczności", "Allow Rate Response": "", @@ -144,6 +145,7 @@ "Archived Chats": "Zarchiwizowane rozmowy", "archived-chat-export": "archiwizowany eksport czatu", "Are you sure you want to clear all memories? This action cannot be undone.": "Czy na pewno chcesz wyczyścić wszystkie wspomnienia? Tej akcji nie można cofnąć.", + "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete this channel?": "Czy na pewno chcesz usunąć ten kanał?", "Are you sure you want to delete this message?": "Czy na pewno chcesz usunąć tę wiadomość?", "Are you sure you want to unarchive all archived chats?": "Czy na pewno chcesz przywrócić wszystkie zapisane rozmowy?", @@ -388,12 +390,14 @@ "Default description enabled": "", "Default Features": "", "Default Filters": "", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Tryb domyślny współpracuje z szerszym zakresem modeli, wywołując narzędzia raz przed wykonaniem. Tryb natywny wykorzystuje wbudowane możliwości wywoływania narzędzi przez model, ale wymaga, aby model wewnętrznie obsługiwał tę funkcję.", "Default Model": "Model domyślny", "Default model updated": "Domyślny model został zaktualizowany", "Default Models": "Domyślne modele", "Default permissions": "Domyślne uprawnienia", "Default permissions updated successfully": "Domyślne uprawnienia zaktualizowane pomyślnie", + "Default Pinned Models": "", "Default Prompt Suggestions": "Domyślne propozycje promptów", "Default to 389 or 636 if TLS is enabled": "Domyślnie użyj 389 lub 636, jeśli TLS jest włączony", "Default to ALL": "Domyślne dla wszystkich", @@ -402,6 +406,7 @@ "Delete": "Usuń", "Delete a model": "Usuń model", "Delete All Chats": "Usuń wszystkie rozmowy", + "Delete all contents inside this folder": "", "Delete All Models": "Usuń Wszystkie Modele", "Delete Chat": "Usuń rozmowę", "Delete chat?": "Usunąć czat?", @@ -730,6 +735,7 @@ "Features": "Funkcje", "Features Permissions": "Uprawnienia do funkcji", "February": "Luty", + "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "Historia ocen", "Feedbacks": "Oceny", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "Rozmiar pliku nie powinien przekraczać {{maxSize}} MB.", "File Upload": "", "File uploaded successfully": "Plik został pomyślnie przesłany", + "File uploaded!": "", "Files": "Pliki", "Filter": "Filtr", "Filter is now globally disabled": "Filtr jest teraz globalnie wyłączony", @@ -857,6 +864,7 @@ "Image Compression": "Kompresja obrazu", "Image Compression Height": "", "Image Compression Width": "", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "Generowanie obrazów", "Image Generation Engine": "Silnik generowania obrazów", @@ -941,6 +949,7 @@ "Knowledge Name": "", "Knowledge Public Sharing": "", "Knowledge reset successfully.": "Pomyślnie zresetowano wiedzę.", + "Knowledge Sharing": "", "Knowledge updated successfully": "Wiedza zaktualizowana pomyślnie", "Kokoro.js (Browser)": "Kokoro.js (Przeglądarka)", "Kokoro.js Dtype": "Kokoro.js Dtype", @@ -1006,6 +1015,7 @@ "Max Upload Size": "Maksymalny rozmiar przesyłanego pliku", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maksymalnie 3 modele można pobierać jednocześnie. Proszę spróbować ponownie później.", "May": "Maj", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "Konfiguracja modeli została zapisana pomyślnie", "Models imported successfully": "", "Models Public Sharing": "", + "Models Sharing": "", "Mojeek Search API Key": "Klucz API Mojeek Search", "More": "Więcej", "More Concise": "", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Uwaga: Jeśli określisz minimalną punktację, wyszukiwanie zwróci tylko dokumenty o wyniku równym lub wyższym niż minimalna punktacja.", "Notes": "Notatki", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "Dźwięk powiadomienia", "Notification Webhook": "Powiadomienie Webhook", "Notifications": "Powiadomienia", @@ -1274,6 +1286,7 @@ "Prompts": "Prompty", "Prompts Access": "Dostęp do promptów", "Prompts Public Sharing": "Publiczne udostępnianie promptów", + "Prompts Sharing": "", "Provider Type": "", "Public": "Publiczne", "Pull \"{{searchValue}}\" from Ollama.com": "Pobierz \"{{searchValue}}\" z Ollama.com", @@ -1459,6 +1472,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "", "Sets the size of the context window used to generate the next token.": "", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "Ustawia sekwencje stopu do użycia. Gdy ten wzorzec zostanie napotkany, LLM przestanie generować tekst i zwróci wynik. Można skonfigurować wiele sekwencji stopu, określając kilka oddzielnych parametrów stopu w pliku modelu.", + "Setting": "", "Settings": "Ustawienia", "Settings saved successfully!": "Ustawienia zostały zapisane pomyślnie!", "Share": "Udostępnij", @@ -1639,6 +1653,7 @@ "Tools Function Calling Prompt": "Narzędzia Funkcja Wywołania Promptu", "Tools have a function calling system that allows arbitrary code execution.": "Narzędzia mają funkcję wywoływania systemu, która umożliwia wykonanie dowolnego kodu.", "Tools Public Sharing": "", + "Tools Sharing": "", "Top K": "Najlepsze K", "Top K Reranker": "", "Transformers": "Transformery", @@ -1686,6 +1701,7 @@ "Upload Pipeline": "Prześlij przepływ", "Upload Progress": "Postęp przesyłania plików", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploading file...": "", "URL": "Adres URL", "URL is required": "", "URL Mode": "Tryb URL", diff --git a/src/lib/i18n/locales/pt-BR/translation.json b/src/lib/i18n/locales/pt-BR/translation.json index f0cf0874c0..0c4ff286a6 100644 --- a/src/lib/i18n/locales/pt-BR/translation.json +++ b/src/lib/i18n/locales/pt-BR/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "Permitir Resposta Contínua", "Allow Delete Messages": "Permitir Exclusão de Mensagens", "Allow File Upload": "Permitir Envio de arquivos", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "Permitir Vários Modelos no Chat", "Allow non-local voices": "Permitir vozes não locais", "Allow Rate Response": "Permitir Avaliar Resposta", @@ -144,6 +145,7 @@ "Archived Chats": "Chats Arquivados", "archived-chat-export": "exportação de chats arquivados", "Are you sure you want to clear all memories? This action cannot be undone.": "Tem certeza de que deseja apagar todas as memórias? Esta ação não pode ser desfeita.", + "Are you sure you want to delete \"{{NAME}}\"?": "", "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 message?": "Tem certeza de que deseja excluir esta mensagem?", "Are you sure you want to unarchive all archived chats?": "Você tem certeza que deseja desarquivar todos os chats arquivados?", @@ -388,12 +390,14 @@ "Default description enabled": "Descrição padrão habilitada", "Default Features": "Recursos padrão", "Default Filters": "Filtros padrão", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "O modo padrão funciona com uma gama mais ampla de modelos, chamando as ferramentas uma vez antes da execução. O modo nativo aproveita os recursos integrados de chamada de ferramentas do modelo, mas exige que o modelo suporte esse recurso inerentemente.", "Default Model": "Modelo Padrão", "Default model updated": "Modelo padrão atualizado", "Default Models": "Modelos Padrão", "Default permissions": "Permissões padrão", "Default permissions updated successfully": "Permissões padrão atualizadas com sucesso", + "Default Pinned Models": "", "Default Prompt Suggestions": "Sugestões de Prompt Padrão", "Default to 389 or 636 if TLS is enabled": "O padrão é 389 ou 636 se o TLS estiver habilitado", "Default to ALL": "Padrão para TODOS", @@ -402,6 +406,7 @@ "Delete": "Excluir", "Delete a model": "Excluir um modelo", "Delete All Chats": "Excluir Todos os Chats", + "Delete all contents inside this folder": "", "Delete All Models": "Excluir Todos os Modelos", "Delete Chat": "Excluir Chat", "Delete chat?": "Excluir chat?", @@ -730,6 +735,7 @@ "Features": "Funcionalidades", "Features Permissions": "Permissões das Funcionalidades", "February": "Fevereiro", + "Feedback deleted successfully": "", "Feedback Details": "Detalhes do comentário", "Feedback History": "Histórico de comentários", "Feedbacks": "Comentários", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "Arquivo não pode exceder {{maxSize}} MB.", "File Upload": "Upload de arquivo", "File uploaded successfully": "Arquivo carregado com sucesso", + "File uploaded!": "", "Files": "Arquivos", "Filter": "Filtro", "Filter is now globally disabled": "O filtro está agora desativado globalmente", @@ -857,6 +864,7 @@ "Image Compression": "Compressão de imagem", "Image Compression Height": "Altura de compressão da imagem", "Image Compression Width": "Largura de compressão de imagem", + "Image Edit": "", "Image Edit Engine": "Motor de edição de imagens", "Image Generation": "Geração de Imagem", "Image Generation Engine": "Motor de Geração de Imagem", @@ -941,6 +949,7 @@ "Knowledge Name": "Nome da Base de Conhecimento", "Knowledge Public Sharing": "Compartilhamento Público da Base de Conhecimento", "Knowledge reset successfully.": "Conhecimento resetado com sucesso.", + "Knowledge Sharing": "", "Knowledge updated successfully": "Conhecimento atualizado com sucesso", "Kokoro.js (Browser)": "", "Kokoro.js Dtype": "", @@ -1006,6 +1015,7 @@ "Max Upload Size": "Tamanho máximo do arquivo", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Máximo de 3 modelos podem ser baixados simultaneamente. Por favor, tente novamente mais tarde.", "May": "Maio", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "O suporte ao MCP é experimental e suas especificações mudam com frequência, o que pode levar a incompatibilidades. O suporte à especificação OpenAPI é mantido diretamente pela equipe do Open WebUI, tornando-o a opção mais confiável para compatibilidade.", "Medium": "Médio", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "Configuração de modelos salva com sucesso", "Models imported successfully": "", "Models Public Sharing": "Modelos de Compartilhamento Público", + "Models Sharing": "", "Mojeek Search API Key": "Chave de API Mojeel Search", "More": "Mais", "More Concise": "Mais conciso", @@ -1077,7 +1088,6 @@ "New Function": "Nova Função", "New Knowledge": "Novo Conhecimento", "New Model": "Novo Modelo", - "New Note": "Nova Nota", "New Password": "Nova Senha", "New Prompt": "Novo Prompt", "New Temporary Chat": "Novo chat temporário", @@ -1129,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Nota: Se você definir uma pontuação mínima, a pesquisa retornará apenas documentos com pontuação igual ou superior à pontuação mínima.", "Notes": "Notas", "Notes Public Sharing": "Compartilhamento Público das Notas", + "Notes Sharing": "", "Notification Sound": "Som de notificação", "Notification Webhook": "Webhook de notificação", "Notifications": "Notificações", @@ -1275,6 +1286,7 @@ "Prompts": "Prompts", "Prompts Access": "Acessar prompts", "Prompts Public Sharing": "Compartilhamento Público dos Prompts", + "Prompts Sharing": "", "Provider Type": "Tipo de provedor", "Public": "Público", "Pull \"{{searchValue}}\" from Ollama.com": "Obter \"{{searchValue}}\" de Ollama.com", @@ -1459,6 +1471,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "Define a semente numérica aleatória a ser usada para geração. Definir um número específico fará com que o modelo gere o mesmo texto para o mesmo prompt.", "Sets the size of the context window used to generate the next token.": "Define o tamanho da janela de contexto usada para gerar o próximo token.", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "Define as sequências de parada a serem usadas. Quando esse padrão for encontrado, o modelo de linguagem (LLM) parará de gerar texto e retornará. Vários padrões de parada podem ser definidos especificando parâmetros de parada separados em um arquivo de modelo.", + "Setting": "", "Settings": "Configurações", "Settings saved successfully!": "Configurações salvas com sucesso!", "Share": "Compartilhar", @@ -1639,6 +1652,7 @@ "Tools Function Calling Prompt": "Prompt de chamada de função de ferramentas", "Tools have a function calling system that allows arbitrary code execution.": "Ferramentas possuem um sistema de chamada de funções que permite a execução de código arbitrário.", "Tools Public Sharing": "Ferramentas Compartilhamento Público", + "Tools Sharing": "", "Top K": "Top K", "Top K Reranker": "", "Transformers": "", @@ -1686,6 +1700,7 @@ "Upload Pipeline": "Fazer upload de Pipeline", "Upload Progress": "Progresso do Upload", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Progresso do upload: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", + "Uploading file...": "", "URL": "", "URL is required": "URL é obrigratória", "URL Mode": "Modo URL", diff --git a/src/lib/i18n/locales/pt-PT/translation.json b/src/lib/i18n/locales/pt-PT/translation.json index 4f6f6400cc..13614d7a52 100644 --- a/src/lib/i18n/locales/pt-PT/translation.json +++ b/src/lib/i18n/locales/pt-PT/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Permitir vozes não locais", "Allow Rate Response": "", @@ -144,6 +145,7 @@ "Archived Chats": "Conversas arquivadas", "archived-chat-export": "", "Are you sure you want to clear all memories? This action cannot be undone.": "", + "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete this channel?": "", "Are you sure you want to delete this message?": "", "Are you sure you want to unarchive all archived chats?": "", @@ -388,12 +390,14 @@ "Default description enabled": "", "Default Features": "", "Default Filters": "", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "Modelo padrão", "Default model updated": "Modelo padrão atualizado", "Default Models": "", "Default permissions": "", "Default permissions updated successfully": "", + "Default Pinned Models": "", "Default Prompt Suggestions": "Sugestões de Prompt Padrão", "Default to 389 or 636 if TLS is enabled": "", "Default to ALL": "", @@ -402,6 +406,7 @@ "Delete": "Apagar", "Delete a model": "Apagar um modelo", "Delete All Chats": "Apagar todas as conversas", + "Delete all contents inside this folder": "", "Delete All Models": "", "Delete Chat": "Apagar Conversa", "Delete chat?": "", @@ -730,6 +735,7 @@ "Features": "", "Features Permissions": "", "February": "Fevereiro", + "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "", "Feedbacks": "", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "", "File Upload": "", "File uploaded successfully": "", + "File uploaded!": "", "Files": "", "Filter": "", "Filter is now globally disabled": "", @@ -857,6 +864,7 @@ "Image Compression": "", "Image Compression Height": "", "Image Compression Width": "", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "", "Image Generation Engine": "Mecanismo de Geração de Imagens", @@ -941,6 +949,7 @@ "Knowledge Name": "", "Knowledge Public Sharing": "", "Knowledge reset successfully.": "", + "Knowledge Sharing": "", "Knowledge updated successfully": "", "Kokoro.js (Browser)": "", "Kokoro.js Dtype": "", @@ -1006,6 +1015,7 @@ "Max Upload Size": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "O máximo de 3 modelos podem ser descarregados simultaneamente. Tente novamente mais tarde.", "May": "Maio", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "", "Models imported successfully": "", "Models Public Sharing": "", + "Models Sharing": "", "Mojeek Search API Key": "", "More": "Mais", "More Concise": "", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Nota: Se você definir uma pontuação mínima, a pesquisa só retornará documentos com uma pontuação maior ou igual à pontuação mínima.", "Notes": "", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "", "Notification Webhook": "", "Notifications": "Notificações da Área de Trabalho", @@ -1274,6 +1286,7 @@ "Prompts": "Prompts", "Prompts Access": "", "Prompts Public Sharing": "", + "Prompts Sharing": "", "Provider Type": "", "Public": "", "Pull \"{{searchValue}}\" from Ollama.com": "Puxar \"{{searchValue}}\" do Ollama.com", @@ -1458,6 +1471,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "", "Sets the size of the context window used to generate the next token.": "", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "", + "Setting": "", "Settings": "Configurações", "Settings saved successfully!": "Configurações guardadas com sucesso!", "Share": "Partilhar", @@ -1638,6 +1652,7 @@ "Tools Function Calling Prompt": "", "Tools have a function calling system that allows arbitrary code execution.": "", "Tools Public Sharing": "", + "Tools Sharing": "", "Top K": "Top K", "Top K Reranker": "", "Transformers": "", @@ -1685,6 +1700,7 @@ "Upload Pipeline": "Carregar Pipeline", "Upload Progress": "Progresso do Carregamento", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploading file...": "", "URL": "", "URL is required": "", "URL Mode": "Modo de URL", diff --git a/src/lib/i18n/locales/ro-RO/translation.json b/src/lib/i18n/locales/ro-RO/translation.json index 3947425956..3a27f9590d 100644 --- a/src/lib/i18n/locales/ro-RO/translation.json +++ b/src/lib/i18n/locales/ro-RO/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "Permite încărcarea fișierelor", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "Permite modele multiple în chat", "Allow non-local voices": "Permite voci non-locale", "Allow Rate Response": "", @@ -144,6 +145,7 @@ "Archived Chats": "Conversații Arhivate", "archived-chat-export": "", "Are you sure you want to clear all memories? This action cannot be undone.": "", + "Are you sure you want to delete \"{{NAME}}\"?": "", "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 message?": "Ești sigur că vrei să ștergi acest mesaj?", "Are you sure you want to unarchive all archived chats?": "Ești sigur că vrei să dezarhivezi toate conversațiile arhivate?", @@ -388,12 +390,14 @@ "Default description enabled": "", "Default Features": "", "Default Filters": "", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "Model Implicit", "Default model updated": "Modelul implicit a fost actualizat", "Default Models": "", "Default permissions": "Permisiuni implicite", "Default permissions updated successfully": "Permisiunile implicite au fost actualizate cu succes", + "Default Pinned Models": "", "Default Prompt Suggestions": "Sugestii de Prompt Implicite", "Default to 389 or 636 if TLS is enabled": "", "Default to ALL": "", @@ -402,6 +406,7 @@ "Delete": "Șterge", "Delete a model": "Șterge un model", "Delete All Chats": "Șterge Toate Conversațiile", + "Delete all contents inside this folder": "", "Delete All Models": "Șterge toate modelele", "Delete Chat": "Șterge Conversația", "Delete chat?": "Șterge conversația?", @@ -730,6 +735,7 @@ "Features": "", "Features Permissions": "", "February": "Februarie", + "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "Istoricul feedback-ului", "Feedbacks": "", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "Dimensiunea fișierului nu ar trebui să depășească {{maxSize}} MB.", "File Upload": "", "File uploaded successfully": "", + "File uploaded!": "", "Files": "Fișiere", "Filter": "", "Filter is now globally disabled": "Filtrul este acum dezactivat global", @@ -857,6 +864,7 @@ "Image Compression": "", "Image Compression Height": "", "Image Compression Width": "", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "", "Image Generation Engine": "Motor de Generare a Imaginilor", @@ -941,6 +949,7 @@ "Knowledge Name": "", "Knowledge Public Sharing": "", "Knowledge reset successfully.": "Resetarea cunoștințelor a fost efectuată cu succes.", + "Knowledge Sharing": "", "Knowledge updated successfully": "Cunoașterea a fost actualizată cu succes", "Kokoro.js (Browser)": "", "Kokoro.js Dtype": "", @@ -1006,6 +1015,7 @@ "Max Upload Size": "Dimensiune Maximă de Încărcare", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maxim 3 modele pot fi descărcate simultan. Vă rugăm să încercați din nou mai târziu.", "May": "Mai", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "", "Models imported successfully": "", "Models Public Sharing": "", + "Models Sharing": "", "Mojeek Search API Key": "", "More": "Mai multe", "More Concise": "", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Notă: Dacă setați un scor minim, căutarea va returna doar documente cu un scor mai mare sau egal cu scorul minim.", "Notes": "Note", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "", "Notification Webhook": "", "Notifications": "Notificări", @@ -1274,6 +1286,7 @@ "Prompts": "Prompturi", "Prompts Access": "", "Prompts Public Sharing": "", + "Prompts Sharing": "", "Provider Type": "", "Public": "", "Pull \"{{searchValue}}\" from Ollama.com": "Extrage \"{{searchValue}}\" de pe Ollama.com", @@ -1458,6 +1471,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "", "Sets the size of the context window used to generate the next token.": "", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "", + "Setting": "", "Settings": "Setări", "Settings saved successfully!": "Setările au fost salvate cu succes!", "Share": "Partajează", @@ -1638,6 +1652,7 @@ "Tools Function Calling Prompt": "", "Tools have a function calling system that allows arbitrary code execution.": "Instrumentele au un sistem de apelare a funcțiilor care permite executarea arbitrară a codului.", "Tools Public Sharing": "", + "Tools Sharing": "", "Top K": "Top K", "Top K Reranker": "", "Transformers": "", @@ -1685,6 +1700,7 @@ "Upload Pipeline": "Încarcă Conducta", "Upload Progress": "Progres Încărcare", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploading file...": "", "URL": "", "URL is required": "", "URL Mode": "Mod URL", diff --git a/src/lib/i18n/locales/ru-RU/translation.json b/src/lib/i18n/locales/ru-RU/translation.json index 01c6eb4278..04591cebdb 100644 --- a/src/lib/i18n/locales/ru-RU/translation.json +++ b/src/lib/i18n/locales/ru-RU/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "Разрешить продолжение ответа", "Allow Delete Messages": "Разрешить удаление сообщений", "Allow File Upload": "Разрешить загрузку файлов", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "Разрешить использование нескольких моделей в чате", "Allow non-local voices": "Разрешить не локальные голоса", "Allow Rate Response": "Разрешить оценку ответа", @@ -144,6 +145,7 @@ "Archived Chats": "Архив чатов", "archived-chat-export": "экспорт-архивного-чата", "Are you sure you want to clear all memories? This action cannot be undone.": "Вы уверены, что хотите удалить все воспоминания? Это действие невозможно отменить.", + "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete this channel?": "Вы уверены, что хотите удалить этот канал?", "Are you sure you want to delete this message?": "Вы уверены, что хотите удалить это сообщение?", "Are you sure you want to unarchive all archived chats?": "Вы уверены, что хотите разархивировать все заархивированные чаты?", @@ -388,12 +390,14 @@ "Default description enabled": "Описание по умолчанию включено", "Default Features": "Функции по умолчанию", "Default Filters": "Фильтры по умолчанию", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Режим по умолчанию работает с более широким спектром моделей, вызывая инструменты один раз перед выполнением. Режим Нативно использует встроенные в модель возможности вызова инструментов, но требует, чтобы модель изначально поддерживала эту функцию.", "Default Model": "Модель по умолчанию", "Default model updated": "Модель по умолчанию обновлена", "Default Models": "Модели по умолчанию", "Default permissions": "Разрешения по умолчанию", "Default permissions updated successfully": "Разрешения по умолчанию успешно обновлены.", + "Default Pinned Models": "", "Default Prompt Suggestions": "Предложения промптов по умолчанию", "Default to 389 or 636 if TLS is enabled": "По умолчанию 389 или 636, если TLS включен.", "Default to ALL": "По умолчанию ВСЕ", @@ -402,6 +406,7 @@ "Delete": "Удалить", "Delete a model": "Удалить модель", "Delete All Chats": "Удалить ВСЕ Чаты", + "Delete all contents inside this folder": "", "Delete All Models": "Удалить ВСЕ Модели", "Delete Chat": "Удалить Чат", "Delete chat?": "Удалить чат?", @@ -730,6 +735,7 @@ "Features": "Функции", "Features Permissions": "Разрешения для функций", "February": "Февраль", + "Feedback deleted successfully": "", "Feedback Details": "Детали отзыва", "Feedback History": "История отзывов", "Feedbacks": "Отзывы", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "Размер файла не должен превышать {{maxSize}} МБ.", "File Upload": "Загрузка файла", "File uploaded successfully": "Файл успешно загружен", + "File uploaded!": "", "Files": "Файлы", "Filter": "Фильтр", "Filter is now globally disabled": "Фильтр теперь отключен глобально", @@ -857,6 +864,7 @@ "Image Compression": "Сжатие изображения", "Image Compression Height": "Высота сжатия изображения", "Image Compression Width": "Ширина сжатия изображения", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "Генерация изображений", "Image Generation Engine": "Механизм генерации изображений", @@ -941,6 +949,7 @@ "Knowledge Name": "Название знаний", "Knowledge Public Sharing": "Публичный обмен знаниями", "Knowledge reset successfully.": "Знания успешно сброшены.", + "Knowledge Sharing": "", "Knowledge updated successfully": "Знания успешно обновлены", "Kokoro.js (Browser)": "Kokoro.js (Браузер)", "Kokoro.js Dtype": "Kokoro.js Dtype", @@ -1006,6 +1015,7 @@ "Max Upload Size": "Максимальный размер загрузок", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Максимальное количество моделей для загрузки одновременно - 3. Пожалуйста, попробуйте позже.", "May": "Май", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "Средний", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "Конфигурация моделей успешно сохранена.", "Models imported successfully": "", "Models Public Sharing": "Публичный обмен моделями", + "Models Sharing": "", "Mojeek Search API Key": "Ключ API для поиска Mojeek", "More": "Больше", "More Concise": "Более кратко", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Обратите внимание: Если вы установите минимальный балл, поиск будет возвращать только документы с баллом больше или равным минимальному баллу.", "Notes": "Заметки", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "Звук уведомления", "Notification Webhook": "Веб-хук уведомления", "Notifications": "Уведомления", @@ -1274,6 +1286,7 @@ "Prompts": "Промпты", "Prompts Access": "Доступ к промптам", "Prompts Public Sharing": "Публичный обмен промптами", + "Prompts Sharing": "", "Provider Type": "Тип поставщика", "Public": "Публичное", "Pull \"{{searchValue}}\" from Ollama.com": "Загрузить \"{{searchValue}}\" с Ollama.com", @@ -1459,6 +1472,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "Задает начальное значение случайного числа, которое будет использоваться для генерации. Установка этого значения на определенное число заставит модель генерировать один и тот же текст для одного и того же запроса.", "Sets the size of the context window used to generate the next token.": "Устанавливает размер контекстного окна, используемого для генерации следующего токена.", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "Устанавливает используемые последовательности остановок. При обнаружении этого шаблона LLM прекратит генерировать текст и вернет данные. Можно задать несколько шаблонов остановок, указав несколько отдельных параметров остановки в файле модели.", + "Setting": "", "Settings": "Настройки", "Settings saved successfully!": "Настройки успешно сохранены!", "Share": "Поделиться", @@ -1639,6 +1653,7 @@ "Tools Function Calling Prompt": "Промпт на вызов функции Инструменты", "Tools have a function calling system that allows arbitrary code execution.": "Инструменты имеют систему вызова функций, которая позволяет выполнять произвольный код.", "Tools Public Sharing": "Публичный обмен инструментами", + "Tools Sharing": "", "Top K": "Top K", "Top K Reranker": "Top K переранжировщик", "Transformers": "Transformers", @@ -1686,6 +1701,7 @@ "Upload Pipeline": "Загрузить конвейер", "Upload Progress": "Прогресс загрузки", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Прогресс загрузки: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", + "Uploading file...": "", "URL": "URL", "URL is required": "Требуется URL", "URL Mode": "Режим URL", diff --git a/src/lib/i18n/locales/sk-SK/translation.json b/src/lib/i18n/locales/sk-SK/translation.json index 4129358e50..96a1414b26 100644 --- a/src/lib/i18n/locales/sk-SK/translation.json +++ b/src/lib/i18n/locales/sk-SK/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "Povoliť nahrávanie súborov", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Povoliť ne-lokálne hlasy", "Allow Rate Response": "", @@ -144,6 +145,7 @@ "Archived Chats": "Archivované konverzácie", "archived-chat-export": "", "Are you sure you want to clear all memories? This action cannot be undone.": "", + "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete this channel?": "", "Are you sure you want to delete this message?": "", "Are you sure you want to unarchive all archived chats?": "", @@ -388,12 +390,14 @@ "Default description enabled": "", "Default Features": "", "Default Filters": "", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "Predvolený model", "Default model updated": "Predvolený model aktualizovaný.", "Default Models": "Predvolené modely", "Default permissions": "Predvolené povolenia", "Default permissions updated successfully": "Predvolené povolenia úspešne aktualizované", + "Default Pinned Models": "", "Default Prompt Suggestions": "Predvolené návrhy promptov", "Default to 389 or 636 if TLS is enabled": "", "Default to ALL": "", @@ -402,6 +406,7 @@ "Delete": "Odstrániť", "Delete a model": "Odstrániť model.", "Delete All Chats": "Odstrániť všetky konverzácie", + "Delete all contents inside this folder": "", "Delete All Models": "", "Delete Chat": "Odstrániť chat", "Delete chat?": "Odstrániť konverzáciu?", @@ -730,6 +735,7 @@ "Features": "", "Features Permissions": "", "February": "Február", + "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "História spätnej väzby", "Feedbacks": "", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "Veľkosť súboru by nemala presiahnuť {{maxSize}} MB.", "File Upload": "", "File uploaded successfully": "", + "File uploaded!": "", "Files": "Súbory", "Filter": "", "Filter is now globally disabled": "Filter je teraz globálne zakázaný", @@ -857,6 +864,7 @@ "Image Compression": "", "Image Compression Height": "", "Image Compression Width": "", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "", "Image Generation Engine": "Engine na generovanie obrázkov", @@ -941,6 +949,7 @@ "Knowledge Name": "", "Knowledge Public Sharing": "", "Knowledge reset successfully.": "Úspešné obnovenie znalostí.", + "Knowledge Sharing": "", "Knowledge updated successfully": "Znalosti úspešne aktualizované", "Kokoro.js (Browser)": "", "Kokoro.js Dtype": "", @@ -1006,6 +1015,7 @@ "Max Upload Size": "Maximálna veľkosť nahrávania", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maximálne 3 modely môžu byť stiahnuté súčasne. Prosím skúste to znova neskôr.", "May": "Máj", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "", "Models imported successfully": "", "Models Public Sharing": "", + "Models Sharing": "", "Mojeek Search API Key": "", "More": "Viac", "More Concise": "", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Poznámka: Ak nastavíte minimálne skóre, vyhľadávanie vráti iba dokumenty s hodnotením, ktoré je väčšie alebo rovné zadanému minimálnemu skóre.", "Notes": "Poznámky", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "", "Notification Webhook": "", "Notifications": "Oznámenia", @@ -1274,6 +1286,7 @@ "Prompts": "Prompty", "Prompts Access": "", "Prompts Public Sharing": "", + "Prompts Sharing": "", "Provider Type": "", "Public": "", "Pull \"{{searchValue}}\" from Ollama.com": "Stiahnite \"{{searchValue}}\" z Ollama.com", @@ -1459,6 +1472,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "", "Sets the size of the context window used to generate the next token.": "", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "", + "Setting": "", "Settings": "Nastavenia", "Settings saved successfully!": "Nastavenia boli úspešne uložené!", "Share": "Zdieľať", @@ -1639,6 +1653,7 @@ "Tools Function Calling Prompt": "", "Tools have a function calling system that allows arbitrary code execution.": "Nástroje majú systém volania funkcií, ktorý umožňuje spúšťanie ľubovoľného kódu.", "Tools Public Sharing": "", + "Tools Sharing": "", "Top K": "Top K", "Top K Reranker": "", "Transformers": "", @@ -1686,6 +1701,7 @@ "Upload Pipeline": "Nahrať pipeline", "Upload Progress": "Priebeh nahrávania", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploading file...": "", "URL": "", "URL is required": "", "URL Mode": "Režim URL", diff --git a/src/lib/i18n/locales/sr-RS/translation.json b/src/lib/i18n/locales/sr-RS/translation.json index 0187cdcfee..1e4b78353f 100644 --- a/src/lib/i18n/locales/sr-RS/translation.json +++ b/src/lib/i18n/locales/sr-RS/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "Дозволи отпремање датотека", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Дозволи нелокалне гласове", "Allow Rate Response": "", @@ -144,6 +145,7 @@ "Archived Chats": "Архиве", "archived-chat-export": "izvezena-arhiva", "Are you sure you want to clear all memories? This action cannot be undone.": "", + "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete this channel?": "Да ли сигурно желите обрисати овај канал?", "Are you sure you want to delete this message?": "Да ли сигурно желите обрисати ову поруку?", "Are you sure you want to unarchive all archived chats?": "Да ли сигурно желите деархивирати све архиве?", @@ -388,12 +390,14 @@ "Default description enabled": "", "Default Features": "", "Default Filters": "", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "Подразумевани модел", "Default model updated": "Подразумевани модел ажуриран", "Default Models": "Подразумевани модели", "Default permissions": "Подразумевана овлашћења", "Default permissions updated successfully": "", + "Default Pinned Models": "", "Default Prompt Suggestions": "Подразумевани предлози упита", "Default to 389 or 636 if TLS is enabled": "", "Default to ALL": "", @@ -402,6 +406,7 @@ "Delete": "Обриши", "Delete a model": "Обриши модел", "Delete All Chats": "Обриши сва ћаскања", + "Delete all contents inside this folder": "", "Delete All Models": "Обриши све моделе", "Delete Chat": "Обриши ћаскање", "Delete chat?": "Обрисати ћаскање?", @@ -730,6 +735,7 @@ "Features": "", "Features Permissions": "", "February": "Фебруар", + "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "Историјат повратних података", "Feedbacks": "Повратни подаци", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "", "File Upload": "", "File uploaded successfully": "", + "File uploaded!": "", "Files": "Датотеке", "Filter": "", "Filter is now globally disabled": "", @@ -857,6 +864,7 @@ "Image Compression": "Компресија слике", "Image Compression Height": "", "Image Compression Width": "", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "Стварање слике", "Image Generation Engine": "Мотор за стварање слика", @@ -941,6 +949,7 @@ "Knowledge Name": "", "Knowledge Public Sharing": "", "Knowledge reset successfully.": "", + "Knowledge Sharing": "", "Knowledge updated successfully": "", "Kokoro.js (Browser)": "", "Kokoro.js Dtype": "", @@ -1006,6 +1015,7 @@ "Max Upload Size": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Највише 3 модела могу бити преузета истовремено. Покушајте поново касније.", "May": "Мај", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "", "Models imported successfully": "", "Models Public Sharing": "", + "Models Sharing": "", "Mojeek Search API Key": "", "More": "Више", "More Concise": "", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Напомена: ако подесите најмањи резултат, претрага ће вратити само документе са резултатом већим или једнаким најмањем резултату.", "Notes": "Белешке", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "Звук обавештења", "Notification Webhook": "Веб-кука обавештења", "Notifications": "Обавештења", @@ -1274,6 +1286,7 @@ "Prompts": "Упити", "Prompts Access": "Приступ упитима", "Prompts Public Sharing": "", + "Prompts Sharing": "", "Provider Type": "", "Public": "", "Pull \"{{searchValue}}\" from Ollama.com": "Повуците \"{{searchValue}}\" са Ollama.com", @@ -1458,6 +1471,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "", "Sets the size of the context window used to generate the next token.": "", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "", + "Setting": "", "Settings": "Подешавања", "Settings saved successfully!": "Подешавања успешно сачувана!", "Share": "Подели", @@ -1638,6 +1652,7 @@ "Tools Function Calling Prompt": "", "Tools have a function calling system that allows arbitrary code execution.": "", "Tools Public Sharing": "", + "Tools Sharing": "", "Top K": "Топ К", "Top K Reranker": "", "Transformers": "", @@ -1685,6 +1700,7 @@ "Upload Pipeline": "Цевовод отпремања", "Upload Progress": "Напредак отпремања", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploading file...": "", "URL": "УРЛ", "URL is required": "", "URL Mode": "Режим адресе", diff --git a/src/lib/i18n/locales/sv-SE/translation.json b/src/lib/i18n/locales/sv-SE/translation.json index 309135b557..1465ab0f29 100644 --- a/src/lib/i18n/locales/sv-SE/translation.json +++ b/src/lib/i18n/locales/sv-SE/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "Tillåt funktionen Fortsätt svara", "Allow Delete Messages": "Tillåt radering av meddelanden", "Allow File Upload": "Tillåt filuppladdning", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "Tillåt flera modeller i chatt", "Allow non-local voices": "Tillåt icke-lokala röster", "Allow Rate Response": "Tillåt betygsättning av svar", @@ -144,6 +145,7 @@ "Archived Chats": "Arkiverade chattar", "archived-chat-export": "arkiverad-chatt-export", "Are you sure you want to clear all memories? This action cannot be undone.": "Är du säker på att du vill rensa alla minnen? Denna åtgärd kan inte ångras.", + "Are you sure you want to delete \"{{NAME}}\"?": "", "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 message?": "Är du säker på att du vill radera detta meddelande?", "Are you sure you want to unarchive all archived chats?": "Är du säker på att du vill avarkivera alla arkiverade chattar?", @@ -388,12 +390,14 @@ "Default description enabled": "Standardbeskrivning aktiverad", "Default Features": "Föraktiverade funktioner", "Default Filters": "Standardfilter", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Standardläget fungerar med ett bredare utbud av modeller genom att anropa verktyg en gång före körning. Inbyggt läge utnyttjar modellens inbyggda verktygsanropsfunktioner, men kräver att modellen har stöd för den här funktionen.", "Default Model": "Standardmodell", "Default model updated": "Standardmodell uppdaterad", "Default Models": "Standardmodeller", "Default permissions": "Standardbehörigheter", "Default permissions updated successfully": "Standardbehörigheter uppdaterades framgångsrikt", + "Default Pinned Models": "", "Default Prompt Suggestions": "Standardinstruktionsförslag", "Default to 389 or 636 if TLS is enabled": "Standard till 389 eller 636 om TLS är aktiverat", "Default to ALL": "Standard till ALLA", @@ -402,6 +406,7 @@ "Delete": "Radera", "Delete a model": "Ta bort en modell", "Delete All Chats": "Ta bort alla chattar", + "Delete all contents inside this folder": "", "Delete All Models": "Ta bort alla modeller", "Delete Chat": "Radera chatt", "Delete chat?": "Radera chatt?", @@ -730,6 +735,7 @@ "Features": "Funktioner", "Features Permissions": "Funktionsbehörigheter", "February": "februari", + "Feedback deleted successfully": "", "Feedback Details": "Feedbackdetaljer", "Feedback History": "Feedbackhistorik", "Feedbacks": "Återkopplingar", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "Filstorleken får inte överstiga {{maxSize}} MB.", "File Upload": "Filuppladdning", "File uploaded successfully": "Filen har laddats upp", + "File uploaded!": "", "Files": "Filer", "Filter": "Filter", "Filter is now globally disabled": "Filter är nu globalt inaktiverat", @@ -857,6 +864,7 @@ "Image Compression": "Bildkomprimering", "Image Compression Height": "Bildkomprimeringshöjd", "Image Compression Width": "Bildkomprimeringsbredd", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "Bildgenerering", "Image Generation Engine": "Bildgenereringsmotor", @@ -941,6 +949,7 @@ "Knowledge Name": "Kunskapsbasens namn", "Knowledge Public Sharing": "Offentlig delning av kunskapsbaser", "Knowledge reset successfully.": "Kunskapen har återställts.", + "Knowledge Sharing": "", "Knowledge updated successfully": "Kunskapen har uppdaterats", "Kokoro.js (Browser)": "Kokoro.js (webbläsare)", "Kokoro.js Dtype": "Kokoro.js Dtype", @@ -1006,6 +1015,7 @@ "Max Upload Size": "Max uppladdningsstorlek", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Högst 3 modeller kan laddas ner samtidigt. Vänligen försök igen senare.", "May": "maj", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "Medium", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "Modellkonfigurationen sparades", "Models imported successfully": "", "Models Public Sharing": "Offentlig delning av modeller", + "Models Sharing": "", "Mojeek Search API Key": "Mojeek Sök API-nyckel", "More": "Mer", "More Concise": "Mer kortfattat", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Obs: Om du anger en tröskel kommer sökningen endast att returnera dokument med ett betyg som är större än eller lika med tröskeln.", "Notes": "Anteckningar", "Notes Public Sharing": "Offentlig delning av anteckningar", + "Notes Sharing": "", "Notification Sound": "Aviseringsljud", "Notification Webhook": "Aviserings-Webhook", "Notifications": "Notifikationer", @@ -1274,6 +1286,7 @@ "Prompts": "Instruktioner", "Prompts Access": "Promptåtkomst", "Prompts Public Sharing": "Offentlig delning av prompter", + "Prompts Sharing": "", "Provider Type": "", "Public": "Offentlig", "Pull \"{{searchValue}}\" from Ollama.com": "Ladda ner \"{{searchValue}}\" från Ollama.com", @@ -1457,6 +1470,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "Anger det slumpmässiga numret som ska användas för generering. Om du ställer in detta på ett specifikt nummer kommer modellen att generera samma text för samma uppmaning.", "Sets the size of the context window used to generate the next token.": "Anger storleken på kontextfönstret som används för att generera nästa token.", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "Anger de stoppsekvenser som ska användas. När detta mönster påträffas kommer LLM att sluta generera text och returnera. Flera stoppsekvenser kan ställas in genom att ange flera separata stoppparametrar i en modelfil.", + "Setting": "", "Settings": "Inställningar", "Settings saved successfully!": "Inställningar sparades framgångsrikt!", "Share": "Dela", @@ -1637,6 +1651,7 @@ "Tools Function Calling Prompt": "Prompt för anrop av verktygsfunktion:", "Tools have a function calling system that allows arbitrary code execution.": "Verktyg har ett funktionsanropssystem som tillåter godtycklig kodkörning", "Tools Public Sharing": "Offentlig delning av verktyg", + "Tools Sharing": "", "Top K": "Topp K", "Top K Reranker": "Topp K Reranker", "Transformers": "Transformatorer", @@ -1684,6 +1699,7 @@ "Upload Pipeline": "Ladda upp rörledning", "Upload Progress": "Uppladdningsframsteg", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Uppladdningsstatus: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", + "Uploading file...": "", "URL": "URL", "URL is required": "URL krävs", "URL Mode": "URL-läge", diff --git a/src/lib/i18n/locales/th-TH/translation.json b/src/lib/i18n/locales/th-TH/translation.json index d0700d1891..937809a480 100644 --- a/src/lib/i18n/locales/th-TH/translation.json +++ b/src/lib/i18n/locales/th-TH/translation.json @@ -1,1773 +1,1806 @@ { - "-1 for no limit, or a positive integer for a specific limit": "-1 สำหรับไม่จำกัด หรือจำนวนเต็มบวกสำหรับจำกัดค่าเฉพาะ", - "'s', 'm', 'h', 'd', 'w' or '-1' for no expiration.": "'s', 'm', 'h', 'd', 'w' หรือ '-1' เพื่อไม่ให้หมดอายุ", - "(e.g. `sh webui.sh --api --api-auth username_password`)": "(เช่น `sh webui.sh --api --api-auth username_password`)", - "(e.g. `sh webui.sh --api`)": "(เช่น `sh webui.sh --api`)", - "(latest)": "(ล่าสุด)", - "(leave blank for to use commercial endpoint)": "(เว้นว่างไว้เพื่อใช้ endpoint เชิงพาณิชย์)", - "[Last] dddd [at] h:mm A": "[Last] dddd [เวลา] h:mm A", - "[Today at] h:mm A": "[วันนี้ เวลา] h:mm A", - "[Yesterday at] h:mm A": "[เมื่อวานเวลา] h:mm A", - "{{ models }}": "{{ models }}", - "{{COUNT}} Available Tools": "เครื่องมือที่ใช้ได้ {{COUNT}} รายการ", - "{{COUNT}} characters": "{{COUNT}} ตัวอักษร", - "{{COUNT}} extracted lines": "{{COUNT}} บรรทัดที่ดึงออกมา", - "{{COUNT}} hidden lines": "{{COUNT}} บรรทัดที่ซ่อนอยู่", - "{{COUNT}} Replies": "{{COUNT}} คำตอบ", - "{{COUNT}} Sources": "{{COUNT}} แหล่งที่มา", - "{{COUNT}} words": "{{COUNT}} คำ", - "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} เมื่อ {{LOCALIZED_TIME}}", - "{{model}} download has been canceled": "การดาวน์โหลด {{model}} ถูกยกเลิกแล้ว", - "{{user}}'s Chats": "การแชทของ {{user}}", - "{{webUIName}} Backend Required": "ต้องใช้ Backend ของ {{webUIName}}", - "*Prompt node ID(s) are required for image generation": "*ต้องระบุ ID ของ prompt node สำหรับการสร้างภาพ", - "1 Source": "1 แหล่งที่มา", - "A new version (v{{LATEST_VERSION}}) is now available.": "เวอร์ชันใหม่ (v{{LATEST_VERSION}}) พร้อมให้ใช้งานแล้ว", - "A task model is used when performing tasks such as generating titles for chats and web search queries": "Task Model จะถูกใช้เมื่อทำภารกิจต่างๆ เช่น การสร้างหัวข้อแชทและการค้นหาเว็บ", - "a user": "ผู้ใช้", - "About": "เกี่ยวกับ", - "Accept Autocomplete Generation\nJump to Prompt Variable": "ยอมรับการสร้างอัตโนมัติ\nข้ามไปยังตัวแปรพรอมต์", - "Access": "การเข้าถึง", - "Access Control": "การควบคุมการเข้าถึง", - "Accessible to all users": "เข้าถึงได้สำหรับผู้ใช้ทั้งหมด", - "Account": "บัญชี", - "Account Activation Pending": "การเปิดใช้งานบัญชีกำลังดำเนินการ", - "accurate": "ถูกต้อง", - "Accurate information": "ข้อมูลที่ถูกต้อง", - "Action": "การดำเนินการ", - "Action not found": "ไม่พบการดำเนินการ", - "Action Required for Chat Log Storage": "ต้องดำเนินการเพื่อจัดเก็บบันทึกการแชท", - "Actions": "การดำเนินการ", - "Activate": "เปิดใช้งาน", - "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "เปิดใช้งานคำสั่งนี้โดยพิมพ์ \"/{{COMMAND}}\" ในช่องแชท", - "Active": "กำลังใช้งาน", - "Active Users": "ผู้ใช้ที่ใช้งานอยู่", - "Add": "เพิ่ม", - "Add a model ID": "เพิ่ม ID โมเดล", - "Add a short description about what this model does": "เพิ่มคำอธิบายสั้นๆ เกี่ยวกับสิ่งที่โมเดลนี้ทำ", - "Add a tag": "เพิ่มแท็ก", - "Add Arena Model": "เพิ่มโมเดล Arena", - "Add Connection": "เพิ่มการเชื่อมต่อ", - "Add Content": "เพิ่มเนื้อหา", - "Add content here": "เพิ่มเนื้อหาตรงนี้", - "Add Custom Parameter": "เพิ่มพารามิเตอร์ที่กำหนดเอง", - "Add Custom Prompt": "เพิ่มพรอมต์ที่กำหนดเอง", - "Add Details": "เพิ่มรายละเอียด", - "Add Files": "เพิ่มไฟล์", - "Add Group": "เพิ่มกลุ่ม", - "Add Memory": "เพิ่มความจำ", - "Add Model": "เพิ่มโมเดล", - "Add Reaction": "เพิ่มรีแอคชัน", - "Add Tag": "เพิ่มแท็ก", - "Add Tags": "เพิ่มแท็ก", - "Add text content": "เพิ่มเนื้อหาข้อความ", - "Add User": "เพิ่มผู้ใช้", - "Add User Group": "เพิ่มกลุ่มผู้ใช้", - "Additional Config": "การกำหนดค่าเพิ่มเติม", - "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "ตัวเลือกการกำหนดค่าเพิ่มเติมสำหรับ marker ควรเป็นสตริง JSON ที่มีคู่ key-value เช่น '{\"key\": \"value\"}' คีย์ที่รองรับได้แก่: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level", - "Additional Parameters": "พารามิเตอร์เพิ่มเติม", - "Adjusting these settings will apply changes universally to all users.": "การปรับการตั้งค่าเหล่านี้จะมีผลกับผู้ใช้ทุกคนทั่วทั้งระบบ", - "admin": "ผู้ดูแลระบบ", - "Admin": "ผู้ดูแลระบบ", - "Admin Panel": "แผงผู้ดูแลระบบ", - "Admin Settings": "การตั้งค่าผู้ดูแลระบบ", - "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "ผู้ดูแลระบบสามารถเข้าถึงเครื่องมือทั้งหมดได้ตลอดเวลา ส่วนผู้ใช้ต้องได้รับการกำหนดเครื่องมือต่อโมเดลในแต่ละพื้นที่ทำงาน", - "Advanced Parameters": "พารามิเตอร์ขั้นสูง", - "Advanced parameters for MinerU parsing (enable_ocr, enable_formula, enable_table, language, model_version, page_ranges)": "พารามิเตอร์ขั้นสูงสำหรับการแยกวิเคราะห์ MinerU (enable_ocr, enable_formula, enable_table, language, model_version, page_ranges)", - "Advanced Params": "พารามิเตอร์ขั้นสูง", - "After updating or changing the embedding model, you must reindex the knowledge base for the changes to take effect. You can do this using the \"Reindex\" button below.": "หลังจากอัปเดตหรือเปลี่ยนโมเดล Embedding คุณต้องสร้างดัชนีฐานความรู้ใหม่เพื่อให้การเปลี่ยนแปลงมีผล คุณสามารถทำได้โดยใช้ปุ่ม \"สร้างดัชนีใหม่\" ด้านล่าง", - "AI": "AI", - "All": "ทั้งหมด", - "All chats have been unarchived.": "ยกเลิกการเก็บถาวรการแชททั้งหมดแล้ว", - "All Documents": "เอกสารทั้งหมด", - "All models deleted successfully": "ลบโมเดลทั้งหมดเรียบร้อยแล้ว", - "Allow Call": "อนุญาตให้โทร", - "Allow Chat Controls": "อนุญาตการควบคุมแชท", - "Allow Chat Delete": "อนุญาตให้ลบแชท", - "Allow Chat Deletion": "อนุญาตให้ลบการสนทนา", - "Allow Chat Edit": "อนุญาตให้แก้ไขแชท", - "Allow Chat Export": "อนุญาตให้ส่งออกแชท", - "Allow Chat Params": "อนุญาตพารามิเตอร์แชท", - "Allow Chat Share": "อนุญาตให้แชร์แชท", - "Allow Chat System Prompt": "อนุญาต System Prompt สำหรับแชท", - "Allow Chat Valves": "อนุญาต Chat Valves", - "Allow Continue Response": "อนุญาตให้ตอบกลับต่อเนื่อง", - "Allow Delete Messages": "อนุญาตให้ลบข้อความ", - "Allow File Upload": "อนุญาตให้อัปโหลดไฟล์", - "Allow Multiple Models in Chat": "อนุญาตการใช้หลายโมเดลในการแชท", - "Allow non-local voices": "อนุญาตเสียงที่ไม่ใช่แบบ Local", - "Allow Rate Response": "อนุญาตให้ให้คะแนนคำตอบ", - "Allow Regenerate Response": "อนุญาตให้สร้างคำตอบใหม่", - "Allow Speech to Text": "อนุญาตให้แปลงเสียงเป็นข้อความ", - "Allow Temporary Chat": "อนุญาตการแชทชั่วคราว", - "Allow Text to Speech": "อนุญาตการแปลงข้อความเป็นเสียง", - "Allow User Location": "อนุญาตให้เข้าถึงตำแหน่งที่อยู่ของผู้ใช้", - "Allow Voice Interruption in Call": "อนุญาตให้ขัดจังหวะด้วยเสียงระหว่างสาย", - "Allowed Endpoints": "Endpoints ที่อนุญาต", - "Allowed File Extensions": "นามสกุลไฟล์ที่อนุญาต", - "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "นามสกุลไฟล์ที่อนุญาตให้อัปโหลด คั่นแต่ละนามสกุลด้วยเครื่องหมายจุลภาค เว้นว่างเพื่ออนุญาตไฟล์ทุกประเภท", - "Already have an account?": "มีบัญชีอยู่แล้ว?", - "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "ทางเลือกแทน top_p และมุ่งเน้นการสร้างสมดุลระหว่างคุณภาพและความหลากหลาย พารามิเตอร์ p แทนค่าความน่าจะเป็นต่ำสุดสำหรับโทเค็นที่จะถูกพิจารณา โดยอ้างอิงกับความน่าจะเป็นของโทเค็นที่มีโอกาสสูงที่สุด ตัวอย่างเช่น เมื่อ p=0.05 และโทเค็นที่มีโอกาสสูงที่สุดมีความน่าจะเป็น 0.9 logits ที่มีค่าน้อยกว่า 0.045 จะถูกกรองออก", - "Always": "เสมอ", - "Always Collapse Code Blocks": "ย่อบล็อกโค้ดเสมอ", - "Always Expand Details": "ขยายรายละเอียดเสมอ", - "Always Play Notification Sound": "เล่นเสียงแจ้งเตือนเสมอ", - "Amazing": "ยอดเยี่ยม", - "an assistant": "ผู้ช่วย", - "An error occurred while fetching the explanation": "เกิดข้อผิดพลาดขณะดึงคำอธิบาย", - "Analytics": "การวิเคราะห์", - "Analyzed": "วิเคราะห์แล้ว", - "Analyzing...": "กำลังวิเคราะห์...", - "and": "และ", - "and {{COUNT}} more": "และอีก {{COUNT}} รายการ", - "and create a new shared link.": "และสร้างลิงก์ที่แชร์ใหม่", - "Android": "Android", - "API": "API", - "API Base URL": "URL พื้นฐานของ API", - "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "URL พื้นฐานของ API สำหรับบริการ Datalab Marker ค่าเริ่มต้น: https://www.datalab.to/api/v1/marker", - "API details for using a vision-language model in the picture description. This parameter is mutually exclusive with picture_description_local.": "รายละเอียด API สำหรับใช้โมเดล Vision-language ในการอธิบายภาพ พารามิเตอร์นี้ไม่สามารถใช้พร้อมกับ picture_description_local ได้", - "API Key": "คีย์ API", - "API Key created.": "สร้างคีย์ API แล้ว", - "API Key Endpoint Restrictions": "ข้อจำกัด Endpoint ของ API Key", - "API keys": "คีย์ API", - "API Mode": "โหมด API", - "API Version": "เวอร์ชัน API", - "API Version is required": "ต้องระบุเวอร์ชัน API", - "Application DN": "DN ของแอปพลิเคชัน", - "Application DN Password": "รหัสผ่าน DN ของแอปพลิเคชัน", - "applies to all users with the \"user\" role": "ใช้กับผู้ใช้ทั้งหมดที่มีบทบาท \"user\"", - "April": "เมษายน", - "Archive": "เก็บถาวร", - "Archive All Chats": "เก็บถาวรการแชททั้งหมด", - "Archived Chats": "แชทที่เก็บถาวร", - "archived-chat-export": "ส่งออกการแชทที่เก็บถาวร", - "Are you sure you want to clear all memories? This action cannot be undone.": "คุณแน่ใจหรือว่าต้องการล้างความจำทั้งหมด? การดำเนินการนี้ไม่สามารถยกเลิกได้", - "Are you sure you want to delete this channel?": "คุณแน่ใจหรือว่าต้องการลบช่องนี้?", - "Are you sure you want to delete this message?": "คุณแน่ใจหรือว่าต้องการลบข้อความนี้?", - "Are you sure you want to unarchive all archived chats?": "คุณแน่ใจหรือว่าต้องการยกเลิกการเก็บถาวรแชททั้งหมด?", - "Are you sure?": "คุณแน่ใจหรือไม่?", - "Arena Models": "โมเดลใน Arena", - "Artifacts": "Artifacts", - "Ask": "ถาม", - "Ask a question": "ถามคำถาม", - "Assistant": "ผู้ช่วย", - "Attach File From Knowledge": "แนบไฟล์จากฐานความรู้", - "Attach Knowledge": "แนบฐานความรู้", - "Attach Notes": "แนบบันทึก", - "Attach Webpage": "แนบหน้าเว็บ", - "Attention to detail": "ใส่ใจในรายละเอียด", - "Attribute for Mail": "แอตทริบิวต์สำหรับอีเมล", - "Attribute for Username": "แอตทริบิวต์สำหรับชื่อผู้ใช้", - "Audio": "เสียง", - "August": "สิงหาคม", - "Auth": "การยืนยันตัวตน", - "Authenticate": "ยืนยันตัวตน", - "Authentication": "การยืนยันตัวตน", - "Auto": "อัตโนมัติ", - "Auto-Copy Response to Clipboard": "คัดลอกคำตอบไปยังคลิปบอร์ดโดยอัตโนมัติ", - "Auto-playback response": "การเล่นคำตอบอัตโนมัติ", - "Autocomplete Generation": "การเติมข้อความอัตโนมัติ", - "Autocomplete Generation Input Max Length": "ความยาวสูงสุดของอินพุตการสร้างข้อความอัตโนมัติ", - "Automatic1111": "Automatic1111", - "AUTOMATIC1111 Api Auth String": "สตริงการตรวจสอบสิทธิ์ API ของ AUTOMATIC1111", - "AUTOMATIC1111 Base URL": "URL พื้นฐานของ AUTOMATIC1111", - "AUTOMATIC1111 Base URL is required.": "จำเป็นต้องระบุ Base URL ของ AUTOMATIC1111", - "Available list": "รายการที่มีอยู่", - "Available Tools": "เครื่องมือที่มีให้ใช้", - "available users": "ผู้ใช้ที่มีอยู่", - "available!": "พร้อมใช้งาน!", - "Away": "ไม่อยู่", - "Awful": "แย่", - "Azure AI Speech": "Azure AI Speech", - "Azure OpenAI": "Azure OpenAI", - "Azure Region": "ภูมิภาค Azure", - "Back": "กลับ", - "Bad Response": "การตอบกลับไม่ถูกต้อง", - "Banners": "แบนเนอร์", - "Base Model (From)": "โมเดลพื้นฐาน (จาก)", - "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "การแคชรายการ Base Model ช่วยเร่งการเข้าถึงโดยดึงข้อมูลโมเดลเฉพาะตอนเริ่มต้นระบบหรือเมื่อบันทึกการตั้งค่า ซึ่งทำให้เร็วขึ้น แต่อาจไม่แสดงการเปลี่ยนแปลงโมเดลล่าสุด", - "Bearer": "Bearer", - "before": "ก่อน", - "Being lazy": "ขี้เกียจ", - "Beta": "เบต้า", - "Bing Search V7 Endpoint": "Endpoint ของ Bing Search V7", - "Bing Search V7 Subscription Key": "Subscription Key ของ Bing Search V7", - "Bio": "ประวัติส่วนตัว", - "Birth Date": "วันเกิด", - "BM25 Weight": "น้ำหนัก BM25", - "Bocha Search API Key": "API Key ของ Bocha Search", - "Bold": "ตัวหนา", - "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "เพิ่มหรือลดน้ำหนักโทเค็นเฉพาะสำหรับการตอบกลับที่มีข้อจำกัด ค่าไบแอสจะถูกจำกัดระหว่าง -100 ถึง 100 (รวม) (ค่าเริ่มต้น: ไม่มี)", - "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "ต้องระบุทั้ง Docling OCR Engine และภาษา หรือเว้นว่างทั้งสองอย่าง", - "Brave Search API Key": "คีย์ API ของ Brave Search", - "Bullet List": "รายการหัวข้อย่อย", - "Button ID": "ID ของปุ่ม", - "Button Label": "ป้ายชื่อปุ่ม", - "Button Prompt": "พรอมต์ของปุ่ม", - "By {{name}}": "โดย {{name}}", - "Bypass Embedding and Retrieval": "ข้าม Embedding และการค้นคืน", - "Bypass Web Loader": "ข้ามตัวโหลดเว็บไซต์", - "Cache Base Model List": "แคชรายการโมเดลพื้นฐาน", - "Calendar": "ปฏิทิน", - "Call": "โทร", - "Call feature is not supported when using Web STT engine": "ไม่รองรับฟีเจอร์การโทรเมื่อใช้เอนจิน Web STT", - "Camera": "กล้อง", - "Cancel": "ยกเลิก", - "Capabilities": "ความสามารถ", - "Capture": "จับภาพ", - "Capture Audio": "จับเสียง", - "Certificate Path": "เส้นทางใบรับรอง", - "Change Password": "เปลี่ยนรหัสผ่าน", - "Channel": "ช่องทาง", - "Channel deleted successfully": "ลบช่องสำเร็จแล้ว", - "Channel Name": "ชื่อช่องทาง", - "Channel name cannot be empty.": "ชื่อช่องไม่สามารถเว้นว่างได้", - "Channel updated successfully": "อัปเดตช่องสำเร็จแล้ว", - "Channels": "ช่องทาง", - "Character": "ตัวละคร", - "Character limit for autocomplete generation input": "ขีดจำกัดจำนวนอักขระสำหรับอินพุตการสร้างคำอัตโนมัติ", - "Chart new frontiers": "สำรวจพรมแดนใหม่", - "Chat": "แชท", - "Chat Background Image": "ภาพพื้นหลังแชท", - "Chat Bubble UI": "ส่วนติดต่อผู้ใช้แบบฟองแชท", - "Chat Controls": "การควบคุมแชท", - "Chat Conversation": "การสนทนาแชท", - "Chat direction": "ทิศทางแชท", - "Chat ID": "ID การแชท", - "Chat moved successfully": "ย้ายแชทสำเร็จแล้ว", - "Chat Overview": "ภาพรวมการแชท", - "Chat Permissions": "สิทธิ์การแชท", - "Chat Tags Auto-Generation": "การสร้างแท็กแชทอัตโนมัติ", - "Chats": "แชท", - "Check Again": "ตรวจสอบอีกครั้ง", - "Check for updates": "ตรวจสอบการอัปเดต", - "Checking for updates...": "กำลังตรวจสอบการอัปเดต...", - "Choose a model before saving...": "เลือกโมเดลก่อนบันทึก...", - "Chunk Overlap": "ส่วนซ้อนทับของ Chunk", - "Chunk Size": "ขนาด Chunk", - "Ciphers": "รหัสลับ", - "Citation": "การอ้างอิง", - "Citations": "การอ้างอิง", - "Clear memory": "ล้างความจำ", - "Clear Memory": "ล้างความจำ", - "click here": "คลิกที่นี่", - "Click here for filter guides.": "คลิกที่นี่เพื่อดูคู่มือการใช้ตัวกรอง", - "Click here for help.": "คลิกที่นี่เพื่อขอความช่วยเหลือ", - "Click here to": "คลิกที่นี่เพื่อ", - "Click here to download user import template file.": "คลิกที่นี่เพื่อดาวน์โหลดไฟล์แม่แบบนำเข้าผู้ใช้", - "Click here to learn more about faster-whisper and see the available models.": "คลิกที่นี่เพื่อเรียนรู้เพิ่มเติมเกี่ยวกับ faster-whisper และดูโมเดลที่มีให้ใช้", - "Click here to see available models.": "คลิกที่นี่เพื่อดูโมเดลที่มีให้ใช้", - "Click here to select": "คลิกที่นี่เพื่อเลือก", - "Click here to select a csv file.": "คลิกที่นี่เพื่อเลือกไฟล์ csv", - "Click here to select a py file.": "คลิกที่นี่เพื่อเลือกไฟล์ .py", - "Click here to upload a workflow.json file.": "คลิกที่นี่เพื่ออัปโหลดไฟล์ workflow.json", - "click here.": "คลิกที่นี่", - "Click on the user role button to change a user's role.": "คลิกที่ปุ่มสิทธิ์ผู้ใช้เพื่อเปลี่ยนสิทธิ์ของผู้ใช้", - "Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "การอนุญาตให้เขียนคลิปบอร์ดถูกปฏิเสธ โปรดตรวจสอบการตั้งค่าเบราว์เซอร์ของคุณเพื่อให้สิทธิ์ที่จำเป็น", - "Clone": "โคลน", - "Clone Chat": "โคลนแชท", - "Clone of {{TITLE}}": "โคลนของ {{TITLE}}", - "Close": "ปิด", - "Close Banner": "ปิดแบนเนอร์", - "Close Configure Connection Modal": "ปิดหน้าต่างตั้งค่าการเชื่อมต่อ", - "Close modal": "ปิดหน้าต่างโมดอล", - "Close Modal": "ปิดหน้าต่างโมดัล", - "Close settings modal": "ปิดหน้าต่างการตั้งค่า", - "Close Sidebar": "ปิดแถบด้านข้าง", - "cloud": "คลาวด์", - "CMU ARCTIC speaker embedding name": "ชื่อ Embedding ผู้พูด CMU ARCTIC", - "Code Block": "บล็อกโค้ด", - "Code Editor": "ตัวแก้ไขโค้ด", - "Code execution": "รันโค้ด", - "Code Execution": "การรันโค้ด", - "Code Execution Engine": "เอนจินรันโค้ด", - "Code Execution Timeout": "หมดเวลาในการรันโค้ด", - "Code formatted successfully": "จัดรูปแบบโค้ดสำเร็จแล้ว", - "Code Interpreter": "ตัวแปลโค้ด", - "Code Interpreter Engine": "เอนจิน Code Interpreter", - "Code Interpreter Prompt Template": "เทมเพลตพรอมต์สำหรับ Code Interpreter", - "Collapse": "ยุบ", - "Collection": "คอลเลกชัน", - "Color": "สี", - "ComfyUI": "ComfyUI", - "ComfyUI API Key": "API Key ของ ComfyUI", - "ComfyUI Base URL": "URL ฐานของ ComfyUI", - "ComfyUI Base URL is required.": "จำเป็นต้องระบุ Base URL ของ ComfyUI", - "ComfyUI Workflow": "เวิร์กโฟลว์ ComfyUI", - "ComfyUI Workflow Nodes": "โหนดเวิร์กโฟลว์ ComfyUI", - "Comma separated Node Ids (e.g. 1 or 1,2)": "ID โหนดคั่นด้วยจุลภาค (เช่น 1 หรือ 1,2)", - "Command": "คำสั่ง", - "Comment": "ความคิดเห็น", - "Completions": "การเติมข้อความ", - "Compress Images in Channels": "บีบอัดรูปภาพในช่อง", - "Concurrent Requests": "คำขอพร้อมกัน", - "Config imported successfully": "นำเข้าไฟล์กำหนดค่าสำเร็จแล้ว", - "Configure": "กำหนดค่า", - "Confirm": "ยืนยัน", - "Confirm Password": "ยืนยันรหัสผ่าน", - "Confirm your action": "ยืนยันการดำเนินการของคุณ", - "Confirm your new password": "ยืนยันรหัสผ่านใหม่ของคุณ", - "Confirm Your Password": "ยืนยันรหัสผ่านของคุณ", - "Connect to your own OpenAI compatible API endpoints.": "เชื่อมต่อกับ API Endpoint ที่เข้ากันได้กับ OpenAI ของคุณเอง", - "Connect to your own OpenAPI compatible external tool servers.": "เชื่อมต่อกับเซิร์ฟเวอร์เครื่องมือภายนอกของคุณที่รองรับ OpenAPI", - "Connection failed": "การเชื่อมต่อล้มเหลว", - "Connection successful": "เชื่อมต่อสำเร็จ", - "Connection Type": "ประเภทการเชื่อมต่อ", - "Connections": "การเชื่อมต่อ", - "Connections saved successfully": "บันทึกการเชื่อมต่อสำเร็จแล้ว", - "Connections settings updated": "อัปเดตการตั้งค่าการเชื่อมต่อแล้ว", - "Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "จำกัดระดับความพยายามในการให้เหตุผลสำหรับโมเดลที่ใช้การให้เหตุผล ใช้ได้เฉพาะกับโมเดลให้เหตุผลจากผู้ให้บริการบางรายที่รองรับการกำหนดระดับความพยายามในการให้เหตุผล", - "Contact Admin for WebUI Access": "ติดต่อผู้ดูแลระบบเพื่อขอสิทธิ์เข้าใช้ WebUI", - "Content": "เนื้อหา", - "Content Extraction Engine": "เอนจินดึงเนื้อหา", - "Continue Response": "ตอบต่อ", - "Continue with {{provider}}": "ดำเนินการต่อด้วย {{provider}}", - "Continue with Email": "ดำเนินการต่อด้วยอีเมล", - "Continue with LDAP": "ดำเนินการต่อด้วย LDAP", - "Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "ควบคุมวิธีการแบ่งข้อความสำหรับคำขอ TTS โดย 'เครื่องหมายวรรคตอน' จะแบ่งเป็นประโยค 'ย่อหน้า' จะแบ่งเป็นย่อหน้า และ 'ไม่แบ่ง' จะเก็บข้อความไว้เป็นสตริงเดียว", - "Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "ควบคุมการซ้ำของลำดับโทเค็นในข้อความที่สร้างขึ้น ค่ายิ่งสูง (เช่น 1.5) จะลงโทษการซ้ำหนักขึ้น ในขณะที่ค่ายิ่งต่ำ (เช่น 1.1) จะผ่อนปรนมากกว่า ที่ค่า 1 จะปิดการทำงาน", - "Controls": "การควบคุม", - "Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "ควบคุมสมดุลระหว่างความสอดคล้องและความหลากหลายของผลลัพธ์ ค่าในระดับต่ำจะทำให้ข้อความมีจุดเน้นชัดเจนและเชื่อมโยงกันมากขึ้น", - "Conversation saved successfully": "บันทึกการสนทนาสำเร็จแล้ว", - "Copied": "คัดลอกแล้ว", - "Copied link to clipboard": "คัดลอกลิงก์ไปยังคลิปบอร์ดแล้ว", - "Copied shared chat URL to clipboard!": "คัดลอก URL แชทที่แชร์ไปยังคลิปบอร์ดแล้ว!", - "Copied to clipboard": "คัดลอกไปยังคลิปบอร์ดแล้ว", - "Copy": "คัดลอก", - "Copy Formatted Text": "คัดลอกข้อความที่จัดรูปแบบแล้ว", - "Copy Last Code Block": "คัดลอกโค้ดบล็อกสุดท้าย", - "Copy Last Response": "คัดลอกคำตอบล่าสุด", - "Copy link": "คัดลอกลิงก์", - "Copy Link": "คัดลอกลิงก์", - "Copy to clipboard": "คัดลอกไปยังคลิปบอร์ด", - "Copying to clipboard was successful!": "คัดลอกไปยังคลิปบอร์ดสำเร็จแล้ว!", - "CORS must be properly configured by the provider to allow requests from Open WebUI.": "ผู้ให้บริการต้องกำหนดค่า CORS ให้ถูกต้องเพื่ออนุญาตคำขอจาก Open WebUI", - "Create": "สร้าง", - "Create a knowledge base": "สร้างฐานความรู้", - "Create a model": "สร้างโมเดล", - "Create a new note": "สร้างบันทึกใหม่", - "Create Account": "สร้างบัญชี", - "Create Admin Account": "สร้างบัญชีผู้ดูแลระบบ", - "Create Channel": "สร้างช่องทาง", - "Create Folder": "สร้างโฟลเดอร์", - "Create Group": "สร้างกลุ่ม", - "Create Image": "สร้างรูปภาพ", - "Create Knowledge": "สร้างฐานความรู้", - "Create Model": "สร้างโมเดล", - "Create new key": "สร้างคีย์ใหม่", - "Create new secret key": "สร้างคีย์ลับใหม่", - "Create Note": "สร้างบันทึก", - "Create your first note by clicking on the plus button below.": "สร้างบันทึกแรกของคุณโดยคลิกที่ปุ่มบวกด้านล่าง", - "Created at": "สร้างเมื่อ", - "Created At": "สร้างเมื่อ", - "Created by": "สร้างโดย", - "Created by you": "สร้างโดยคุณ", - "CSV Import": "นำเข้า CSV", - "Ctrl+Enter to Send": "Ctrl+Enter เพื่อส่ง", - "Current Model": "โมเดลปัจจุบัน", - "Current Password": "รหัสผ่านปัจจุบัน", - "Custom": "กำหนดเอง", - "Custom description enabled": "เปิดใช้งานคำอธิบายแบบกำหนดเอง", - "Custom Parameter Name": "ชื่อพารามิเตอร์แบบกำหนดเอง", - "Custom Parameter Value": "ค่าพารามิเตอร์กำหนดเอง", - "Danger Zone": "เขตอันตราย", - "Dark": "มืด", - "Data Controls": "การควบคุมข้อมูล", - "Database": "ฐานข้อมูล", - "Datalab Marker API": "Datalab Marker API", - "DD/MM/YYYY": "DD/MM/YYYY", - "December": "ธันวาคม", - "Deepgram": "Deepgram", - "Default": "ค่าเริ่มต้น", - "Default (Open AI)": "ค่าเริ่มต้น (OpenAI)", - "Default (SentenceTransformers)": "ค่าเริ่มต้น (SentenceTransformers)", - "Default action buttons will be used.": "จะใช้ปุ่มการทำงานเริ่มต้น", - "Default description enabled": "เปิดใช้งานคำอธิบายเริ่มต้น", - "Default Features": "ฟีเจอร์เริ่มต้น", - "Default Filters": "ตัวกรองเริ่มต้น", - "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "โหมดเริ่มต้นทำงานร่วมกับโมเดลได้หลากหลายกว่า โดยเรียกใช้เครื่องมือหนึ่งครั้งก่อนการรันคำสั่ง ส่วนโหมด Native จะใช้ความสามารถในการเรียกใช้เครื่องมือที่มีอยู่ในตัวโมเดล แต่ต้องอาศัยว่าโมเดลรองรับฟีเจอร์นี้ในตัวอยู่แล้ว", - "Default Model": "โมเดลค่าเริ่มต้น", - "Default model updated": "อัปเดตโมเดลค่าเริ่มต้นแล้ว", - "Default Models": "โมเดลเริ่มต้น", - "Default permissions": "สิทธิ์เริ่มต้น", - "Default permissions updated successfully": "อัปเดตการอนุญาตเริ่มต้นสำเร็จแล้ว", - "Default Prompt Suggestions": "คำแนะนำพรอมต์เริ่มต้น", - "Default to 389 or 636 if TLS is enabled": "ค่าเริ่มต้นเป็น 389 หรือ 636 หากเปิดใช้งาน TLS", - "Default to ALL": "ค่าเริ่มต้นเป็นทั้งหมด", - "Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "กำหนดค่าเริ่มต้นให้ใช้การดึงข้อมูลแบบแบ่งส่วนเพื่อการดึงเนื้อหาที่มีโฟกัสและเกี่ยวข้อง แนะนำให้ใช้ตัวเลือกนี้ในกรณีส่วนใหญ่", - "Default User Role": "บทบาทผู้ใช้เริ่มต้น", - "Delete": "ลบ", - "Delete a model": "ลบโมเดล", - "Delete All Chats": "ลบการแชททั้งหมด", - "Delete All Models": "ลบโมเดลทั้งหมด", - "Delete Chat": "ลบแชท", - "Delete chat?": "ลบแชท?", - "Delete folder?": "ลบโฟลเดอร์ใช่หรือไม่?", - "Delete function?": "ลบฟังก์ชัน?", - "Delete Message": "ลบข้อความ", - "Delete message?": "ลบข้อความใช่หรือไม่?", - "Delete Model": "ลบโมเดล", - "Delete note?": "ลบบันทึกหรือไม่?", - "Delete prompt?": "ลบพรอมต์?", - "delete this link": "ลบลิงก์นี้", - "Delete tool?": "ลบเครื่องมือ?", - "Delete User": "ลบผู้ใช้", - "Deleted {{deleteModelTag}}": "ลบ {{deleteModelTag}}", - "Deleted {{name}}": "ลบแล้ว {{name}}", - "Deleted User": "ผู้ใช้ที่ถูกลบ", - "Deployment names are required for Azure OpenAI": "ต้องระบุชื่อการปรับใช้สำหรับ Azure OpenAI", - "Describe Pictures in Documents": "อธิบายรูปภาพในเอกสาร", - "Describe your knowledge base and objectives": "อธิบายฐานความรู้และวัตถุประสงค์ของคุณ", - "Description": "คำอธิบาย", - "Detect Artifacts Automatically": "ตรวจจับ Artifacts โดยอัตโนมัติ", - "Dictate": "การเขียนตามคำบอก", - "Didn't fully follow instructions": "ไม่ได้ทำตามคำแนะนำทั้งหมด", - "Direct": "โดยตรง", - "Direct Connections": "การเชื่อมต่อโดยตรง", - "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Direct Connections อนุญาตให้ผู้ใช้เชื่อมต่อกับปลายทาง API ที่เข้ากันได้กับ OpenAI ของตนเอง", - "Direct Tool Servers": "เซิร์ฟเวอร์เครื่องมือโดยตรง", - "Directory selection was cancelled": "การเลือกไดเรกทอรีถูกยกเลิก", - "Disable Code Interpreter": "ปิดใช้งาน Code Interpreter", - "Disable Image Extraction": "ปิดใช้งานการแยกรูปภาพ", - "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "ปิดใช้งานการดึงรูปภาพจากไฟล์ PDF หากเปิดใช้ Use LLM รูปภาพจะถูกสร้างคำบรรยายให้โดยอัตโนมัติ ค่าเริ่มต้นคือ False", - "Disabled": "ปิดใช้งาน", - "Discover a function": "ค้นพบฟังก์ชัน", - "Discover a model": "ค้นพบโมเดล", - "Discover a prompt": "ค้นพบพรอมต์", - "Discover a tool": "ค้นพบเครื่องมือ", - "Discover how to use Open WebUI and seek support from the community.": "เรียนรู้วิธีใช้ Open WebUI และขอความช่วยเหลือจากชุมชน", - "Discover wonders": "ค้นพบสิ่งมหัศจรรย์", - "Discover, download, and explore custom functions": "ค้นหา ดาวน์โหลด และสำรวจฟังก์ชันที่กำหนดเอง", - "Discover, download, and explore custom prompts": "ค้นหา ดาวน์โหลด และสำรวจพรอมต์ที่กำหนดเอง", - "Discover, download, and explore custom tools": "ค้นหา ดาวน์โหลด และสำรวจเครื่องมือที่กำหนดเอง", - "Discover, download, and explore model presets": "ค้นหา ดาวน์โหลด และสำรวจพรีเซ็ตโมเดล", - "Display": "การแสดงผล", - "Display chat title in tab": "แสดงชื่อแชทในแท็บ", - "Display Emoji in Call": "แสดงอิโมจิระหว่างการโทร", - "Display Multi-model Responses in Tabs": "แสดงคำตอบหลายโมเดลแบบแท็บ", - "Display the username instead of You in the Chat": "แสดงชื่อผู้ใช้แทนคำว่า \"คุณ\" ในการแชท", - "Displays citations in the response": "แสดงการอ้างอิงในคำตอบ", - "Displays status updates (e.g., web search progress) in the response": "แสดงการอัปเดตสถานะ (เช่น ความคืบหน้าการค้นเว็บ) ภายในคำตอบ", - "Dive into knowledge": "เจาะลึกสู่ความรู้", - "dlparse_v1": "dlparse_v1", - "dlparse_v2": "dlparse_v2", - "dlparse_v4": "dlparse_v4", - "Do not install functions from sources you do not fully trust.": "อย่าติดตั้งฟังก์ชันจากแหล่งที่คุณไม่ไว้วางใจอย่างเต็มที่", - "Do not install tools from sources you do not fully trust.": "อย่าติดตั้งเครื่องมือจากแหล่งที่คุณไม่ไว้วางใจอย่างเต็มที่", - "Docling": "Docling", - "Docling Server URL required.": "ต้องระบุ Docling Server URL", - "Document": "เอกสาร", - "Document Intelligence": "เอกสารอัจฉริยะ", - "Document Intelligence endpoint required.": "ต้องระบุ Endpoint ของ Document Intelligence", - "Documentation": "เอกสารประกอบ", - "Documents": "เอกสาร", - "does not make any external connections, and your data stays securely on your locally hosted server.": "ไม่เชื่อมต่อกับภายนอกใดๆ และข้อมูลของคุณจะถูกเก็บไว้อย่างปลอดภัยบนเซิร์ฟเวอร์ภายในเครื่องของคุณ", - "Domain Filter List": "รายการตัวกรองโดเมน", - "don't fetch random pipelines from sources you don't trust.": "อย่าดึง Pipeline แบบสุ่มจากแหล่งที่ไม่น่าเชื่อถือ", - "Don't have an account?": "ยังไม่มีบัญชี?", - "don't install random functions from sources you don't trust.": "อย่าติดตั้งฟังก์ชันจากแหล่งที่คุณไม่ไว้วางใจ", - "don't install random tools from sources you don't trust.": "อย่าติดตั้งเครื่องมือจากแหล่งที่คุณไม่ไว้วางใจ", - "Don't like the style": "ไม่ชอบสไตล์นี้", - "Done": "เสร็จสิ้น", - "Download": "ดาวน์โหลด", - "Download & Delete": "ดาวน์โหลดและลบ", - "Download as SVG": "ดาวน์โหลดเป็น SVG", - "Download canceled": "ยกเลิกการดาวน์โหลด", - "Download Database": "ดาวน์โหลดฐานข้อมูล", - "Drag and drop a file to upload or select a file to view": "ลากและวางไฟล์เพื่ออัปโหลด หรือเลือกไฟล์เพื่อดู", - "Draw": "วาด", - "Drop any files here to upload": "วางไฟล์ที่นี่เพื่ออัปโหลด", - "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "เช่น '30s', '10m' หน่วยเวลาที่ใช้ได้คือ 's', 'm', 'h'", - "e.g. \"json\" or a JSON schema": "เช่น \"json\" หรือสคีมา JSON", - "e.g. 60": "เช่น 60", - "e.g. A filter to remove profanity from text": "เช่น ตัวกรองเพื่อลบคำหยาบออกจากข้อความ", - "e.g. en": "เช่น en", - "e.g. My Filter": "เช่น My Filter", - "e.g. My Tools": "เช่น My Tools", - "e.g. my_filter": "เช่น my_filter", - "e.g. my_tools": "เช่น my_tools", - "e.g. pdf, docx, txt": "เช่น pdf, docx, txt", - "e.g. Tools for performing various operations": "เช่น เครื่องมือสำหรับดำเนินการปฏิบัติการต่างๆ", - "e.g., 3, 4, 5 (leave blank for default)": "เช่น 3, 4, 5 (เว้นว่างเพื่อใช้ค่าเริ่มต้น)", - "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "เช่น audio/wav,audio/mpeg,video/* (เว้นว่างไว้เพื่อใช้ค่าเริ่มต้น)", - "e.g., en-US,ja-JP (leave blank for auto-detect)": "เช่น en-US,ja-JP (เว้นว่างเพื่อให้ตรวจจับอัตโนมัติ)", - "e.g., westus (leave blank for eastus)": "เช่น westus (เว้นว่างไว้สำหรับ eastus)", - "Edit": "แก้ไข", - "Edit Arena Model": "แก้ไขโมเดล Arena", - "Edit Channel": "แก้ไขช่องทาง", - "Edit Connection": "แก้ไขการเชื่อมต่อ", - "Edit Default Permissions": "แก้ไขสิทธิ์เริ่มต้น", - "Edit Folder": "แก้ไขโฟลเดอร์", - "Edit Image": "แก้ไขรูปภาพ", - "Edit Last Message": "แก้ไขข้อความล่าสุด", - "Edit Memory": "แก้ไขความจำ", - "Edit User": "แก้ไขผู้ใช้", - "Edit User Group": "แก้ไขกลุ่มผู้ใช้", - "Edit workflow.json content": "แก้ไขเนื้อหา workflow.json", - "edited": "แก้ไขแล้ว", - "Edited": "แก้ไขแล้ว", - "Editing": "กำลังแก้ไข", - "Eject": "เอาออก", - "ElevenLabs": "ElevenLabs", - "Email": "อีเมล", - "Embark on adventures": "ออกผจญภัย", - "Embedding": "Embedding", - "Embedding Batch Size": "ขนาดชุดของ Embedding", - "Embedding Model": "โมเดล Embedding", - "Embedding Model Engine": "เอ็นจินโมเดล Embedding", - "Embedding model set to \"{{embedding_model}}\"": "ตั้งค่าโมเดล Embedding เป็น \"{{embedding_model}}\"", - "Enable API Key": "เปิดใช้งาน API Key", - "Enable autocomplete generation for chat messages": "เปิดใช้งานการเติมข้อความอัตโนมัติสำหรับข้อความแชท", - "Enable Code Execution": "เปิดใช้งานการรันโค้ด", - "Enable Code Interpreter": "เปิดใช้งาน Code Interpreter", - "Enable Community Sharing": "เปิดใช้งานการแชร์ในชุมชน", - "Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "เปิดใช้ Memory Locking (mlock) เพื่อป้องกันไม่ให้ข้อมูลโมเดลถูก Swap ออกจาก RAM ตัวเลือกนี้จะล็อกชุด Pages ที่โมเดลกำลังใช้งานให้อยู่ใน RAM ทำให้ไม่ถูก Swap ออกไปยังดิสก์ ซึ่งช่วยรักษาประสิทธิภาพด้วยการหลีกเลี่ยง Page Fault และทำให้เข้าถึงข้อมูลได้อย่างรวดเร็ว", - "Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "เปิดใช้ Memory Mapping (mmap) เพื่อโหลดข้อมูลโมเดล ตัวเลือกนี้จะทำให้ระบบสามารถใช้พื้นที่ดิสก์เป็นส่วนขยายของ RAM โดยมองไฟล์บนดิสก์เสมือนว่าอยู่ใน RAM ซึ่งอาจช่วยเพิ่มประสิทธิภาพของโมเดลโดยทำให้เข้าถึงข้อมูลได้เร็วขึ้น อย่างไรก็ตาม อาจทำงานไม่ถูกต้องกับทุกระบบและอาจใช้พื้นที่ดิสก์ในปริมาณมาก", - "Enable Message Rating": "เปิดใช้งานการให้คะแนนข้อความ", - "Enable Mirostat sampling for controlling perplexity.": "เปิดใช้การสุ่มตัวอย่างแบบ Mirostat เพื่อควบคุม Perplexity", - "Enable New Sign Ups": "เปิดใช้งานการสมัครใหม่", - "Enable, disable, or customize the reasoning tags used by the model. \"Enabled\" uses default tags, \"Disabled\" turns off reasoning tags, and \"Custom\" lets you specify your own start and end tags.": "เปิดใช้งาน ปิดใช้งาน หรือปรับแต่ง Reasoning Tag ที่โมเดลใช้ได้ \"เปิดใช้งาน\" จะใช้แท็กเริ่มต้น \"ปิดใช้งาน\" จะปิด Reasoning Tag และ \"กำหนดเอง\" จะให้คุณระบุแท็กเริ่มต้นและสิ้นสุดของคุณเอง", - "Enabled": "เปิดใช้งาน", - "End Tag": "แท็กปิด", - "Endpoint URL": "Endpoint URL", - "Enforce Temporary Chat": "บังคับใช้แชทชั่วคราว", - "Enhance": "เพิ่มประสิทธิภาพ", - "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ตรวจสอบว่าไฟล์ CSV ของคุณมี 4 คอลัมน์ในลำดับนี้: ชื่อ, อีเมล, รหัสผ่าน, บทบาท", - "Enter {{role}} message here": "ระบุข้อความของ {{role}} ที่นี่", - "Enter a detail about yourself for your LLMs to recall": "ระบุรายละเอียดเกี่ยวกับตัวคุณเพื่อให้ LLM ของคุณจดจำ", - "Enter a title for the pending user info overlay. Leave empty for default.": "ป้อนชื่อสำหรับหน้าซ้อนข้อมูลผู้ใช้ที่กำลังรออยู่ เว้นว่างไว้เพื่อใช้ค่าเริ่มต้น", - "Enter a watermark for the response. Leave empty for none.": "ป้อนลายน้ำสำหรับคำตอบ เว้นว่างหากไม่ต้องการ", - "Enter additional headers in JSON format": "ป้อน Headers เพิ่มเติมในรูปแบบ JSON", - "Enter additional headers in JSON format (e.g. {{'{{\"X-Custom-Header\": \"value\"}}'}})": "ป้อน Header เพิ่มเติมในรูปแบบ JSON (เช่น {{'{{\"X-Custom-Header\": \"value\"}}'}})", - "Enter additional parameters in JSON format": "ป้อนพารามิเตอร์เพิ่มเติมในรูปแบบ JSON", - "Enter api auth string (e.g. username:password)": "ใส่สตริงการยืนยันตัวตน API (เช่น username:password)", - "Enter Application DN": "ป้อน DN ของแอปพลิเคชัน", - "Enter Application DN Password": "ป้อนรหัสผ่าน DN ของแอปพลิเคชัน", - "Enter Bing Search V7 Endpoint": "ป้อน Bing Search V7 Endpoint", - "Enter Bing Search V7 Subscription Key": "ป้อน Subscription Key ของ Bing Search V7", - "Enter Bocha Search API Key": "ใส่คีย์ Bocha Search API", - "Enter Brave Search API Key": "ใส่ API Key ของ Brave Search", - "Enter certificate path": "ป้อนพาธใบรับรอง", - "Enter Chunk Overlap": "ป้อนค่า Chunk Overlap", - "Enter Chunk Size": "ใส่ขนาด Chunk", - "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "ป้อนคู่ \"token:bias_value\" ที่คั่นด้วยจุลภาค (ตัวอย่าง: 5432:100, 413:-100)", - "Enter Config in JSON format": "ป้อนค่า Config ในรูปแบบ JSON", - "Enter content for the pending user info overlay. Leave empty for default.": "ป้อนเนื้อหาสำหรับ Overlay ข้อมูลผู้ใช้ที่กำลังรออยู่ เว้นว่างไว้เพื่อใช้ค่าเริ่มต้น", - "Enter coordinates (e.g. 51.505, -0.09)": "ป้อนพิกัด (เช่น 51.505, -0.09)", - "Enter Datalab Marker API Base URL": "ใส่ API Base URL ของ Datalab Marker", - "Enter Datalab Marker API Key": "ใส่ Datalab Marker API Key", - "Enter description": "ป้อนคำอธิบาย", - "Enter Docling OCR Engine": "ระบุเอนจิน Docling OCR", - "Enter Docling OCR Language(s)": "ป้อนภาษาสำหรับ Docling OCR", - "Enter Docling Server URL": "ป้อน URL ของเซิร์ฟเวอร์ Docling", - "Enter Document Intelligence Endpoint": "ป้อน Endpoint ของ Document Intelligence", - "Enter Document Intelligence Key": "ป้อนคีย์ Document Intelligence", - "Enter domains separated by commas (e.g., example.com,site.org)": "ป้อนโดเมนโดยคั่นด้วยเครื่องหมายจุลภาค (เช่น example.com,site.org)", - "Enter Exa API Key": "ใส่ Exa API Key", - "Enter External Document Loader API Key": "ป้อน API Key ของ External Document Loader", - "Enter External Document Loader URL": "ใส่ URL ของ External Document Loader", - "Enter External Web Loader API Key": "ใส่ API Key ของ External Web Loader", - "Enter External Web Loader URL": "ใส่ URL ของ External Web Loader", - "Enter External Web Search API Key": "ใส่คีย์ API การค้นหาเว็บภายนอก", - "Enter External Web Search URL": "ป้อน URL สำหรับค้นเว็บภายนอก", - "Enter Firecrawl API Base URL": "ใส่ Firecrawl API Base URL", - "Enter Firecrawl API Key": "ใส่ Firecrawl API Key", - "Enter folder name": "ป้อนชื่อโฟลเดอร์", - "Enter Github Raw URL": "ป้อน URL Raw ของ GitHub", - "Enter Google PSE API Key": "ใส่ API Key ของ Google PSE", - "Enter Google PSE Engine Id": "ป้อน Google PSE Engine ID", - "Enter hex color (e.g. #FF0000)": "ป้อนสีในรูปแบบ Hex (เช่น #FF0000)", - "Enter ID": "ใส่ ID", - "Enter Image Size (e.g. 512x512)": "ใส่ขนาดภาพ (เช่น 512x512)", - "Enter Jina API Key": "ป้อน Jina API Key", - "Enter JSON config (e.g., {\"disable_links\": true})": "ป้อนการตั้งค่า JSON (เช่น {\"disable_links\": true})", - "Enter Jupyter Password": "ป้อนรหัสผ่าน Jupyter", - "Enter Jupyter Token": "ป้อน Jupyter Token", - "Enter Jupyter URL": "ป้อน Jupyter URL", - "Enter Kagi Search API Key": "ใส่ Kagi Search API Key", - "Enter Key Behavior": "การทำงานของปุ่ม Enter", - "Enter language codes": "ใส่รหัสภาษา", - "Enter MinerU API Key": "ใส่ MinerU API Key", - "Enter Mistral API Base URL": "ป้อน URL ฐานของ Mistral API", - "Enter Mistral API Key": "กรอก API Key ของ Mistral", - "Enter Model ID": "ป้อน ID โมเดล", - "Enter model tag (e.g. {{modelTag}})": "ใส่แท็กโมเดล (เช่น {{modelTag}})", - "Enter Mojeek Search API Key": "กรอก Mojeek Search API Key", - "Enter name": "ป้อนชื่อ", - "Enter New Password": "ป้อนรหัสผ่านใหม่", - "Enter Number of Steps (e.g. 50)": "ใส่จำนวนขั้นตอน (เช่น 50)", - "Enter Ollama Cloud API Key": "ใส่ Ollama Cloud API Key", - "Enter Perplexity API Key": "ใส่ Perplexity API Key", - "Enter Playwright Timeout": "ป้อนเวลา Timeout ของ Playwright", - "Enter Playwright WebSocket URL": "ใส่ URL WebSocket ของ Playwright", - "Enter proxy URL (e.g. https://user:password@host:port)": "ป้อน URL พร็อกซี (เช่น https://user:password@host:port)", - "Enter reasoning effort": "ป้อนระดับการใช้เหตุผล", - "Enter Score": "ใส่คะแนน", - "Enter SearchApi API Key": "ป้อน API Key ของ SearchApi", - "Enter SearchApi Engine": "ป้อน SearchApi Engine", - "Enter Searxng Query URL": "ใส่ URL คำค้นหาของ Searxng", - "Enter Seed": "ป้อนค่า Seed", - "Enter SerpApi API Key": "กรอก SerpApi API Key", - "Enter SerpApi Engine": "ป้อนเอนจิน SerpApi", - "Enter Serper API Key": "ใส่ API Key ของ Serper", - "Enter Serply API Key": "ใส่ API Key ของ Serply", - "Enter Serpstack API Key": "ใส่ API Key ของ Serpstack", - "Enter server host": "ป้อนโฮสต์ของเซิร์ฟเวอร์", - "Enter server label": "ป้อนป้ายชื่อเซิร์ฟเวอร์", - "Enter server port": "ป้อนพอร์ตเซิร์ฟเวอร์", - "Enter Sougou Search API sID": "ป้อน Sougou Search API sID", - "Enter Sougou Search API SK": "ป้อนคีย์ Sougou Search API SK", - "Enter stop sequence": "ป้อนลำดับการหยุด", - "Enter system prompt": "ใส่ System Prompt", - "Enter system prompt here": "ป้อน System Prompt ที่นี่", - "Enter Tavily API Key": "ใส่ API Key ของ Tavily", - "Enter Tavily Extract Depth": "ป้อนระดับความลึกของ Tavily Extract", - "Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "ป้อน URL สาธารณะของ WebUI ของคุณ URL นี้จะใช้ในการสร้างลิงก์ในการแจ้งเตือน", - "Enter the URL of the function to import": "ป้อน URL ของฟังก์ชันที่จะนำเข้า", - "Enter the URL to import": "ป้อน URL ที่ต้องการนำเข้า", - "Enter Tika Server URL": "ใส่ URL เซิร์ฟเวอร์ของ Tika", - "Enter timeout in seconds": "ป้อนเวลา Timeout เป็นวินาที", - "Enter to Send": "กด Enter เพื่อส่ง", - "Enter Top K": "ใส่ค่า Top K", - "Enter Top K Reranker": "ป้อนค่า Top K ของ Reranker", - "Enter URL (e.g. http://127.0.0.1:7860/)": "ใส่ URL (เช่น http://127.0.0.1:7860/)", - "Enter URL (e.g. http://localhost:11434)": "ใส่ URL (เช่น http://localhost:11434)", - "Enter value": "ป้อนค่า", - "Enter value (true/false)": "ป้อนค่า (true/false)", - "Enter Yacy Password": "ป้อนรหัสผ่าน Yacy", - "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "ป้อน URL ของ Yacy (เช่น http://yacy.example.com:8090)", - "Enter Yacy Username": "ป้อนชื่อผู้ใช้ Yacy", - "Enter your code here...": "พิมพ์โค้ดของคุณที่นี่...", - "Enter your current password": "ป้อนรหัสผ่านปัจจุบันของคุณ", - "Enter Your Email": "ใส่อีเมลของคุณ", - "Enter Your Full Name": "ใส่ชื่อ-นามสกุลของคุณ", - "Enter your gender": "ป้อนเพศของคุณ", - "Enter your message": "ใส่ข้อความของคุณ", - "Enter your name": "กรอกชื่อของคุณ", - "Enter Your Name": "ป้อนชื่อของคุณ", - "Enter your new password": "กรอกรหัสผ่านใหม่ของคุณ", - "Enter Your Password": "ใส่รหัสผ่านของคุณ", - "Enter Your Role": "ใส่บทบาทของคุณ", - "Enter Your Username": "กรอกชื่อผู้ใช้ของคุณ", - "Enter your webhook URL": "ใส่ URL ของ Webhook ของคุณ", - "Entra ID": "Entra ID", - "Error": "ข้อผิดพลาด", - "ERROR": "ข้อผิดพลาด", - "Error accessing directory": "ข้อผิดพลาดในการเข้าถึงไดเรกทอรี", - "Error accessing Google Drive: {{error}}": "เกิดข้อผิดพลาดขณะเข้าถึง Google Drive: {{error}}", - "Error accessing media devices.": "เกิดข้อผิดพลาดขณะเข้าถึงอุปกรณ์สื่อ", - "Error starting recording.": "เกิดข้อผิดพลาดขณะเริ่มการบันทึก", - "Error unloading model: {{error}}": "ข้อผิดพลาดขณะยกเลิกโหลดโมเดล: {{error}}", - "Error uploading file: {{error}}": "เกิดข้อผิดพลาดระหว่างอัปโหลดไฟล์: {{error}}", - "Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "ข้อผิดพลาด: มีโมเดลที่ใช้ ID '{{modelId}}' อยู่แล้ว โปรดเลือก ID อื่นเพื่อดำเนินการต่อ", - "Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "ข้อผิดพลาด: ห้ามปล่อย ID โมเดลว่างไว้ กรุณากรอก ID ที่ถูกต้องเพื่อดำเนินการต่อ", - "Evaluations": "การประเมิน", - "Everyone": "ทุกคน", - "Exa API Key": "API Key ของ Exa", - "Example: (&(objectClass=inetOrgPerson)(uid=%s))": "ตัวอย่าง: (&(objectClass=inetOrgPerson)(uid=%s))", - "Example: ALL": "ตัวอย่าง: ทั้งหมด", - "Example: mail": "ตัวอย่าง: mail", - "Example: ou=users,dc=foo,dc=example": "ตัวอย่าง: ou=users,dc=foo,dc=example", - "Example: sAMAccountName or uid or userPrincipalName": "ตัวอย่าง: sAMAccountName หรือ uid หรือ userPrincipalName", - "Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "จำนวนที่นั่งในไลเซนส์ของคุณเกินขีดจำกัดแล้ว โปรดติดต่อฝ่ายสนับสนุนเพื่อขอเพิ่มจำนวนที่นั่ง", - "Exclude": "ยกเว้น", - "Execute code for analysis": "รันโค้ดเพื่อการวิเคราะห์", - "Executing **{{NAME}}**...": "กำลังรัน **{{NAME}}**...", - "Expand": "ขยาย", - "Experimental": "การทดลอง", - "Explain": "อธิบาย", - "Explore the cosmos": "สำรวจห้วงอวกาศ", - "Export": "ส่งออก", - "Export All Archived Chats": "ส่งออกแชทที่เก็บถาวรทั้งหมด", - "Export All Chats (All Users)": "ส่งออกการแชททั้งหมด (ผู้ใช้ทั้งหมด)", - "Export chat (.json)": "ส่งออกการสนทนา (.json)", - "Export Chats": "ส่งออกการสนทนา", - "Export Config to JSON File": "ส่งออกการตั้งค่าเป็นไฟล์ JSON", - "Export Presets": "ส่งออกพรีเซ็ต", - "Export Prompt Suggestions": "ส่งออกคำแนะนำพรอมต์", - "Export to CSV": "ส่งออกเป็น CSV", - "Export Users": "ส่งออกผู้ใช้", - "External": "ภายนอก", - "External Document Loader URL required.": "จำเป็นต้องระบุ External Document Loader URL", - "External Task Model": "โมเดลงานภายนอก", - "External Tools": "เครื่องมือภายนอก", - "External Web Loader API Key": "คีย์ API ของ External Web Loader", - "External Web Loader URL": "URL ตัวโหลดเว็บภายนอก", - "External Web Search API Key": "API Key สำหรับ External Web Search", - "External Web Search URL": "URL สำหรับค้นเว็บภายนอก", - "Fade Effect for Streaming Text": "เอฟเฟ็กต์เฟดสำหรับข้อความสตรีมมิ่ง", - "Failed to add file.": "ไม่สามารถเพิ่มไฟล์ได้", - "Failed to connect to {{URL}} OpenAPI tool server": "เชื่อมต่อกับเซิร์ฟเวอร์เครื่องมือ OpenAPI ที่ {{URL}} ไม่สำเร็จ", - "Failed to copy link": "คัดลอกลิงก์ไม่สำเร็จ", - "Failed to create API Key.": "สร้าง API Key ล้มเหลว", - "Failed to delete note": "ลบบันทึกไม่สำเร็จ", - "Failed to extract content from the file: {{error}}": "ไม่สามารถดึงเนื้อหาจากไฟล์ได้: {{error}}", - "Failed to extract content from the file.": "ไม่สามารถดึงเนื้อหาจากไฟล์ได้", - "Failed to fetch models": "ดึงโมเดลไม่สำเร็จ", - "Failed to generate title": "สร้างชื่อไม่สำเร็จ", - "Failed to import models": "นำเข้าโมเดลไม่สำเร็จ", - "Failed to load chat preview": "ไม่สามารถโหลดตัวอย่างแชทได้", - "Failed to load file content.": "โหลดเนื้อหาไฟล์ไม่สำเร็จ", - "Failed to move chat": "ย้ายแชทไม่สำเร็จ", - "Failed to read clipboard contents": "อ่านเนื้อหาคลิปบอร์ดไม่สำเร็จ", - "Failed to render diagram": "ไม่สามารถเรนเดอร์ไดอะแกรมได้", - "Failed to render visualization": "ไม่สามารถเรนเดอร์ภาพข้อมูลได้", - "Failed to save connections": "บันทึกการเชื่อมต่อล้มเหลว", - "Failed to save conversation": "บันทึกการสนทนาล้มเหลว", - "Failed to save models configuration": "บันทึกการตั้งค่าโมเดลล้มเหลว", - "Failed to update settings": "อัปเดตการตั้งค่าล้มเหลว", - "Failed to upload file.": "อัปโหลดไฟล์ไม่สำเร็จ", - "fast": "เร็ว", - "Features": "ฟีเจอร์", - "Features Permissions": "สิทธิ์การใช้งานฟีเจอร์", - "February": "กุมภาพันธ์", - "Feedback Details": "รายละเอียดคำติชม", - "Feedback History": "ประวัติข้อเสนอแนะ", - "Feedbacks": "ข้อเสนอแนะ", - "Feel free to add specific details": "สามารถเพิ่มรายละเอียดเฉพาะได้", - "Female": "หญิง", - "File": "ไฟล์", - "File added successfully.": "เพิ่มไฟล์สำเร็จแล้ว", - "File content updated successfully.": "อัปเดตเนื้อหาไฟล์สำเร็จแล้ว", - "File Mode": "โหมดไฟล์", - "File not found.": "ไม่พบไฟล์", - "File removed successfully.": "ลบไฟล์สำเร็จแล้ว", - "File size should not exceed {{maxSize}} MB.": "ขนาดไฟล์ไม่ควรเกิน {{maxSize}} MB", - "File Upload": "อัปโหลดไฟล์", - "File uploaded successfully": "อัปโหลดไฟล์สำเร็จแล้ว", - "Files": "ไฟล์", - "Filter": "กรอง", - "Filter is now globally disabled": "การกรองถูกปิดใช้งานทั่วทั้งระบบแล้ว", - "Filter is now globally enabled": "เปิดใช้งานตัวกรองในทุกส่วนแล้ว", - "Filters": "ตัวกรอง", - "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "ตรวจพบการปลอมแปลงลายนิ้วมือ: ไม่สามารถใช้ชื่อย่อเป็นอวตาร์ได้ กำลังใช้รูปโปรไฟล์เริ่มต้น", - "Firecrawl API Base URL": "URL ฐาน Firecrawl API", - "Firecrawl API Key": "API Key ของ Firecrawl", - "Floating Quick Actions": "การดำเนินการด่วนแบบลอยตัว", - "Focus Chat Input": "โฟกัสช่องป้อนแชท", - "Folder": "โฟลเดอร์", - "Folder Background Image": "รูปภาพพื้นหลังโฟลเดอร์", - "Folder deleted successfully": "ลบโฟลเดอร์สำเร็จแล้ว", - "Folder Name": "ชื่อโฟลเดอร์", - "Folder name cannot be empty.": "ชื่อโฟลเดอร์ต้องไม่เว้นว่าง", - "Folder name updated successfully": "อัปเดตชื่อโฟลเดอร์สำเร็จแล้ว", - "Folder updated successfully": "อัปเดตโฟลเดอร์สำเร็จแล้ว", - "Folders": "โฟลเดอร์", - "Follow up": "ติดตามต่อ", - "Follow Up Generation": "การสร้างคำถามติดตาม", - "Follow Up Generation Prompt": "พรอมต์สร้างคำถามติดตามผล", - "Follow-Up Auto-Generation": "การสร้างคำถามติดตามอัตโนมัติ", - "Followed instructions perfectly": "ปฏิบัติตามคำแนะนำอย่างสมบูรณ์แบบ", - "Force OCR": "บังคับใช้ OCR", - "Force OCR on all pages of the PDF. This can lead to worse results if you have good text in your PDFs. Defaults to False.": "บังคับใช้ OCR กับทุกหน้าของไฟล์ PDF อาจทำให้ผลลัพธ์แย่ลงได้หากไฟล์ PDF ของคุณมีข้อความที่ดีอยู่แล้ว ค่าเริ่มต้นคือ False", - "Forge new paths": "สร้างเส้นทางใหม่", - "Form": "แบบฟอร์ม", - "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 และสไตล์ได้", - "Format your variables using brackets like this:": "จัดรูปแบบตัวแปรของคุณโดยใช้วงเล็บเช่นนี้:", - "Formatting may be inconsistent from source.": "รูปแบบอาจไม่สอดคล้องกันกับต้นฉบับ", - "Forwards system user OAuth access token to authenticate": "ส่งต่อโทเค็นการเข้าถึง OAuth ของผู้ใช้ระบบเพื่อยืนยันตัวตน", - "Forwards system user session credentials to authenticate": "ส่งต่อข้อมูลรับรอง Session ของผู้ใช้ระบบเพื่อใช้ยืนยันตัวตน", - "Full Context Mode": "โหมดบริบทเต็ม", - "Function": "ฟังก์ชัน", - "Function Calling": "การเรียกใช้ฟังก์ชัน", - "Function created successfully": "สร้างฟังก์ชันสำเร็จแล้ว", - "Function deleted successfully": "ลบฟังก์ชันสำเร็จแล้ว", - "Function Description": "คำอธิบายฟังก์ชัน", - "Function ID": "ID ฟังก์ชัน", - "Function imported successfully": "นำเข้า Function สำเร็จแล้ว", - "Function is now globally disabled": "ฟังก์ชันถูกปิดใช้งานในระบบทั้งหมดแล้ว", - "Function is now globally enabled": "ฟังก์ชันถูกเปิดใช้งานในทุกส่วนแล้ว", - "Function Name": "ชื่อฟังก์ชัน", - "Function updated successfully": "อัปเดตฟังก์ชันสำเร็จ", - "Functions": "ฟังก์ชัน", - "Functions allow arbitrary code execution.": "ฟังก์ชันอนุญาตให้รันโค้ดได้อย่างอิสระ", - "Functions imported successfully": "นำเข้าฟังก์ชันสำเร็จแล้ว", - "Gemini": "Gemini", - "Gemini API Key": "API Key ของ Gemini", - "Gemini API Key is required.": "ต้องระบุคีย์ Gemini API", - "Gemini Base URL": "URL ฐานของ Gemini", - "Gemini Endpoint Method": "วิธีการเรียกใช้ Endpoint Gemini", - "Gender": "เพศ", - "General": "ทั่วไป", - "Generate": "สร้าง", - "Generate an image": "สร้างรูปภาพ", - "Generate Image": "สร้างภาพ", - "Generate Message Pair": "สร้างคู่ข้อความ", - "Generated Image": "รูปภาพที่ถูกสร้าง", - "Generating search query": "สร้างคำค้นหา", - "Generating...": "กำลังสร้าง...", - "Get information on {{name}} in the UI": "ดูข้อมูลเกี่ยวกับ {{name}} ใน UI", - "Get started": "เริ่มต้น", - "Get started with {{WEBUI_NAME}}": "เริ่มต้นใช้งาน {{WEBUI_NAME}}", - "Global": "ทั้งหมด", - "Good Response": "การตอบกลับที่ดี", - "Google Drive": "Google Drive", - "Google PSE API Key": "คีย์ API ของ Google PSE", - "Google PSE Engine Id": "รหัสเอนจินของ Google PSE", - "Gravatar": "Gravatar", - "Group": "กลุ่ม", - "Group created successfully": "สร้างกลุ่มสำเร็จแล้ว", - "Group deleted successfully": "ลบกลุ่มสำเร็จแล้ว", - "Group Description": "คำอธิบายกลุ่ม", - "Group Name": "ชื่อกลุ่ม", - "Group updated successfully": "อัปเดตกลุ่มสำเร็จแล้ว", - "Groups": "กลุ่ม", - "H1": "H1", - "H2": "H2", - "H3": "H3", - "Haptic Feedback": "การตอบสนองแบบสั่น", - "Headers": "Headers", - "Headers must be a valid JSON object": "Headers ต้องเป็นอ็อบเจ็กต์ JSON ที่ถูกต้อง", - "Height": "ความสูง", - "Hello, {{name}}": "สวัสดี {{name}}", - "Help": "ช่วยเหลือ", - "Help us create the best community leaderboard by sharing your feedback history!": "ช่วยเราสร้างกระดานจัดอันดับชุมชนที่ดีที่สุดด้วยการแชร์ประวัติคำติชมของคุณ!", - "Hex Color": "ค่าสี Hex", - "Hex Color - Leave empty for default color": "สี Hex - เว้นว่างไว้เพื่อใช้ค่าสีเริ่มต้น", - "Hide": "ซ่อน", - "Hide from Sidebar": "ซ่อนจากแถบด้านข้าง", - "Hide Model": "ซ่อนโมเดล", - "High": "สูง", - "High Contrast Mode": "โหมดความ Contrast สูง", - "Home": "หน้าแรก", - "Host": "โฮสต์", - "How can I help you today?": "วันนี้ฉันจะช่วยคุณได้อย่างไร?", - "How would you rate this response?": "คุณจะให้คะแนนคำตอบนี้อย่างไร?", - "HTML": "HTML", - "http://localhost:8000": "http://localhost:8000", - "https://mineru.net/api/v4": "https://mineru.net/api/v4", - "Hybrid Search": "การค้นหาแบบ Hybrid", - "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "ฉันรับทราบว่าฉันได้อ่านและเข้าใจผลกระทบของการกระทำของฉัน ฉันทราบถึงความเสี่ยงที่เกี่ยวข้องกับการเรียกใช้โค้ดโดยพลการและฉันได้ตรวจสอบความน่าเชื่อถือของแหล่งที่มาแล้ว", - "ID": "ID", - "ID cannot contain \":\" or \"|\" characters": "ID ต้องไม่มีอักขระ \":\" หรือ \"|\"", - "iframe Sandbox Allow Forms": "อนุญาตฟอร์มใน Sandbox ของ iframe", - "iframe Sandbox Allow Same Origin": "ให้ iframe Sandbox ใช้แหล่งที่มาเดียวกันได้", - "Ignite curiosity": "จุดประกายความอยากรู้อยากเห็น", - "Image": "รูปภาพ", - "Image Compression": "การบีบอัดรูปภาพ", - "Image Compression Height": "ความสูงการบีบอัดภาพ", - "Image Compression Width": "ความกว้างการบีบอัดรูปภาพ", - "Image Edit Engine": "เอนจินแก้ไขภาพ", - "Image Generation": "การสร้างภาพ", - "Image Generation Engine": "เอนจินสร้างภาพ", - "Image Max Compression Size": "ขนาดบีบอัดรูปภาพสูงสุด", - "Image Max Compression Size height": "ความสูงสูงสุดของภาพหลังบีบอัด", - "Image Max Compression Size width": "ความกว้างสูงสุดของการบีบอัดรูปภาพ", - "Image Prompt Generation": "การสร้างพรอมต์รูปภาพ", - "Image Prompt Generation Prompt": "พรอมต์สำหรับสร้างคำสั่งภาพ", - "Image Size": "ขนาดรูปภาพ", - "Images": "ภาพ", - "Import": "นำเข้า", - "Import Chats": "นำเข้าการสนทนา", - "Import Config from JSON File": "นำเข้า Config จากไฟล์ JSON", - "Import From Link": "นำเข้าโดยใช้ลิงก์", - "Import Notes": "นำเข้าบันทึก", - "Import Presets": "นำเข้าพรีเซ็ต", - "Import Prompt Suggestions": "นำเข้าคำแนะนำพรอมต์", - "Import successful": "นำเข้าเรียบร้อยแล้ว", - "Important Update": "อัปเดตสำคัญ", - "In order to force OCR, performing OCR must be enabled.": "หากต้องการบังคับให้ใช้ OCR ต้องเปิดใช้งานการประมวลผล OCR ก่อน", - "Include": "รวม", - "Include `--api-auth` flag when running stable-diffusion-webui": "ระบุแฟล็ก `--api-auth` เมื่อรัน stable-diffusion-webui", - "Include `--api` flag when running stable-diffusion-webui": "ระบุแฟล็ก `--api` เมื่อเรียกใช้ stable-diffusion-webui", - "Includes SharePoint": "รวม SharePoint", - "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "มีผลต่อความเร็วที่อัลกอริทึมตอบสนองต่อข้อเสนอแนะจากข้อความที่สร้างขึ้น ค่า Learning Rate ที่ต่ำจะทำให้การปรับเปลี่ยนช้าลง ในขณะที่ค่า Learning Rate ที่สูงจะทำให้อัลกอริทึมตอบสนองได้รวดเร็วขึ้น", - "Info": "ข้อมูล", - "Initials": "อักษรย่อ", - "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "เพิ่มเนื้อหาทั้งหมดเป็นบริบทสำหรับการประมวลผลอย่างครอบคลุม แนะนำให้ใช้สำหรับคำถามที่ซับซ้อน", - "Input": "อินพุต", - "Input Key (e.g. text, unet_name, steps)": "คีย์อินพุต (เช่น text, unet_name, steps)", - "Input Variables": "ตัวแปรอินพุต", - "Insert": "แทรก", - "Insert Follow-Up Prompt to Input": "แทรกพรอมต์ติดตามผลลงในช่องป้อนข้อมูล", - "Insert Prompt as Rich Text": "แทรกพรอมต์เป็น Rich Text", - "Insert Suggestion Prompt to Input": "แทรกพรอมต์คำแนะนำไปยังช่องป้อนข้อมูล", - "Install from Github URL": "ติดตั้งจาก URL ของ GitHub", - "Instant Auto-Send After Voice Transcription": "ส่งอัตโนมัติทันทีหลังถอดเสียง", - "Integration": "การเชื่อมต่อระบบ", - "Integrations": "การเชื่อมต่อระบบ", - "Interface": "อินเทอร์เฟซ", - "Invalid file content": "เนื้อหาไฟล์ไม่ถูกต้อง", - "Invalid file format.": "รูปแบบไฟล์ไม่ถูกต้อง", - "Invalid JSON file": "ไฟล์ JSON ไม่ถูกต้อง", - "Invalid JSON format for ComfyUI Edit Workflow.": "รูปแบบ JSON ไม่ถูกต้องสำหรับการแก้ไข Workflow ของ ComfyUI", - "Invalid JSON format for ComfyUI Workflow.": "รูปแบบ JSON ของ ComfyUI Workflow ไม่ถูกต้อง", - "Invalid JSON format for Parameters": "รูปแบบ JSON ของพารามิเตอร์ไม่ถูกต้อง", - "Invalid JSON format in Additional Config": "รูปแบบ JSON ในการตั้งค่าเพิ่มเติมไม่ถูกต้อง", - "Invalid JSON format in MinerU Parameters": "รูปแบบ JSON ไม่ถูกต้องใน MinerU Parameters", - "Invalid Tag": "แท็กไม่ถูกต้อง", - "is typing...": "กำลังพิมพ์...", - "Italic": "ตัวเอียง", - "January": "มกราคม", - "Jina API Key": "API Key ของ Jina", - "join our Discord for help.": "เข้าร่วม Discord ของเราเพื่อขอความช่วยเหลือ", - "JSON": "JSON", - "JSON Preview": "ดูตัวอย่าง JSON", - "JSON Spec": "สเปก JSON", - "July": "กรกฎาคม", - "June": "มิถุนายน", - "Jupyter Auth": "การยืนยันตัวตน Jupyter", - "Jupyter URL": "URL ของ Jupyter", - "JWT Expiration": "การหมดอายุของ JWT", - "JWT Token": "โทเค็น JWT", - "Kagi Search API Key": "API Key สำหรับ Kagi Search", - "Keep Follow-Up Prompts in Chat": "เก็บพรอมต์ติดตามไว้ในการแชท", - "Keep in Sidebar": "ปักหมุดไว้ที่แถบด้านข้าง", - "Key": "คีย์", - "Key is required": "ต้องระบุคีย์", - "Keyboard shortcuts": "ทางลัดแป้นพิมพ์", - "Keyboard Shortcuts": "ปุ่มลัดแป้นพิมพ์", - "Knowledge": "ความรู้", - "Knowledge Access": "การเข้าถึงความรู้", - "Knowledge Base": "ฐานความรู้", - "Knowledge created successfully.": "สร้างฐานความรู้สำเร็จ", - "Knowledge deleted successfully.": "ลบฐานความรู้สำเร็จแล้ว", - "Knowledge Description": "คำอธิบายฐานความรู้", - "Knowledge Name": "ชื่อฐานความรู้", - "Knowledge Public Sharing": "การแชร์ฐานความรู้สาธารณะ", - "Knowledge reset successfully.": "รีเซ็ตฐานความรู้สำเร็จแล้ว", - "Knowledge updated successfully": "อัปเดตฐานความรู้สำเร็จแล้ว", - "Kokoro.js (Browser)": "Kokoro.js (เบราว์เซอร์)", - "Kokoro.js Dtype": "ชนิดข้อมูล Kokoro.js", - "Label": "ป้ายกำกับ", - "Landing Page Mode": "โหมดหน้า Landing Page", - "Language": "ภาษา", - "Language Locales": "ภาษาที่รองรับ", - "Last Active": "ใช้งานล่าสุด", - "Last Modified": "แก้ไขล่าสุด", - "Last reply": "คำตอบล่าสุด", - "LDAP": "LDAP", - "LDAP server updated": "อัปเดตเซิร์ฟเวอร์ LDAP แล้ว", - "Leaderboard": "กระดานผู้นำ", - "Learn More": "เรียนรู้เพิ่มเติม", - "Learn more about OpenAPI tool servers.": "ดูข้อมูลเพิ่มเติมเกี่ยวกับเซิร์ฟเวอร์เครื่องมือ OpenAPI", - "Learn more about Voxtral transcription.": "เรียนรู้เพิ่มเติมเกี่ยวกับการถอดเสียง Voxtral", - "Leave empty for no compression": "เว้นว่างไว้หากไม่ต้องการบีบอัด", - "Leave empty for unlimited": "เว้นว่างไว้เพื่อไม่จำกัด", - "Leave empty to include all models from \"{{url}}\" endpoint": "ปล่อยว่างไว้เพื่อรวมโมเดลทั้งหมดจาก Endpoint \"{{url}}\"", - "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "เว้นว่างไว้เพื่อรวมโมเดลทั้งหมดจาก Endpoint \"{{url}}/api/tags\"", - "Leave empty to include all models from \"{{url}}/models\" endpoint": "เว้นว่างไว้เพื่อรวมโมเดลทั้งหมดจาก Endpoint \"{{url}}/models\"", - "Leave empty to include all models or select specific models": "เว้นว่างไว้เพื่อรวมโมเดลทั้งหมด หรือเลือกเฉพาะโมเดลที่ต้องการ", - "Leave empty to use the default model (voxtral-mini-latest).": "เว้นว่างไว้เพื่อใช้โมเดลเริ่มต้น (voxtral-mini-latest)", - "Leave empty to use the default prompt, or enter a custom prompt": "เว้นว่างไว้เพื่อใช้พรอมต์เริ่มต้น หรือป้อนพรอมต์ที่กำหนดเอง", - "Leave model field empty to use the default model.": "เว้นช่องโมเดลว่างไว้เพื่อใช้โมเดลเริ่มต้น", - "Legacy": "เวอร์ชันเก่า", - "lexical": "Lexical", - "License": "ใบอนุญาต", - "Lift List": "รายการลิฟต์", - "Light": "โหมดสว่าง", - "Listening...": "กำลังฟัง...", - "Llama.cpp": "Llama.cpp", - "LLMs can make mistakes. Verify important information.": "LLM อาจทำผิดพลาดได้ โปรดตรวจสอบข้อมูลสำคัญ", - "Loader": "ตัวโหลด", - "Loading Kokoro.js...": "กำลังโหลด Kokoro.js...", - "Loading...": "กำลังโหลด...", - "local": "ภายในเครื่อง", - "Local": "ในเครื่อง", - "Local Task Model": "โมเดลงานบนเครื่อง", - "Location access not allowed": "ไม่อนุญาตให้เข้าถึงตำแหน่งที่ตั้ง", - "Lost": "หาย", - "Low": "ต่ำ", - "LTR": "ซ้ายไปขวา", - "Made by Open WebUI Community": "สร้างโดยชุมชน Open WebUI", - "Make password visible in the user interface": "แสดงรหัสผ่านในส่วนติดต่อผู้ใช้", - "Make sure to enclose them with": "ตรวจสอบให้แน่ใจว่าใส่ไว้ภายในเครื่องหมายครอบ", - "Make sure to export a workflow.json file as API format from ComfyUI.": "ตรวจสอบให้แน่ใจว่าส่งออกไฟล์ workflow.json เป็นรูปแบบ API จาก ComfyUI", - "Male": "ชาย", - "Manage": "จัดการ", - "Manage Direct Connections": "จัดการการเชื่อมต่อโดยตรง", - "Manage Models": "จัดการโมเดล", - "Manage Ollama": "จัดการ Ollama", - "Manage Ollama API Connections": "จัดการการเชื่อมต่อ Ollama API", - "Manage OpenAI API Connections": "จัดการการเชื่อมต่อ OpenAI API", - "Manage Pipelines": "จัดการ Pipelines", - "Manage Tool Servers": "จัดการเซิร์ฟเวอร์เครื่องมือ", - "Manage your account information.": "จัดการข้อมูลบัญชีของคุณ", - "March": "มีนาคม", - "Markdown": "Markdown", - "Markdown (Header)": "Markdown (ส่วนหัว)", - "Max Speakers": "จำนวนผู้พูดสูงสุด", - "Max Upload Count": "จำนวนครั้งการอัปโหลดสูงสุด", - "Max Upload Size": "ขนาดอัปโหลดสูงสุด", - "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "สามารถดาวน์โหลดโมเดลได้สูงสุด 3 โมเดลในเวลาเดียวกัน โปรดลองอีกครั้งในภายหลัง", - "May": "พฤษภาคม", - "MCP": "MCP", - "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "การรองรับ MCP ยังเป็นแบบทดลองและมีการเปลี่ยนแปลงสเปกบ่อยครั้ง ซึ่งอาจทำให้เกิดปัญหาความไม่เข้ากันได้ การรองรับสเปก OpenAPI นั้นดูแลโดยทีม Open WebUI โดยตรง จึงเป็นตัวเลือกที่เชื่อถือได้มากกว่าในด้านความเข้ากันได้", - "Medium": "ปานกลาง", - "Memories accessible by LLMs will be shown here.": "ความจำที่ LLM เข้าถึงได้จะแสดงที่นี่", - "Memory": "ความจำ", - "Memory added successfully": "เพิ่มความจำสำเร็จ", - "Memory cleared successfully": "ล้างความจำสำเร็จแล้ว", - "Memory deleted successfully": "ลบความจำสำเร็จ", - "Memory updated successfully": "อัปเดตความจำสำเร็จแล้ว", - "Merge Responses": "รวมคำตอบ", - "Merged Response": "การตอบกลับที่รวมกัน", - "Message": "ข้อความ", - "Message rating should be enabled to use this feature": "ต้องเปิดใช้การให้คะแนนข้อความก่อนจึงจะใช้ฟีเจอร์นี้ได้", - "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "ข้อความที่คุณส่งหลังจากสร้างลิงก์แล้วจะไม่ถูกแชร์ ผู้ใช้ที่มี URL จะสามารถดูแชทที่แชร์ได้", - "Microsoft OneDrive": "Microsoft OneDrive", - "Microsoft OneDrive (personal)": "Microsoft OneDrive (ส่วนบุคคล)", - "Microsoft OneDrive (work/school)": "Microsoft OneDrive (ที่ทำงาน/โรงเรียน)", - "MinerU": "MinerU", - "MinerU API Key required for Cloud API mode.": "ต้องใช้ MinerU API Key สำหรับโหมด Cloud API", - "Mistral OCR": "Mistral OCR", - "Mistral OCR API Key required.": "จำเป็นต้องมี Mistral OCR API Key", - "MistralAI": "MistralAI", - "Model": "โมเดล", - "Model '{{modelName}}' has been successfully downloaded.": "โมเดล '{{modelName}}' ถูกดาวน์โหลดเรียบร้อยแล้ว", - "Model '{{modelTag}}' is already in queue for downloading.": "โมเดล '{{modelTag}}' อยู่ในคิวสำหรับการดาวน์โหลดแล้ว", - "Model {{modelId}} not found": "ไม่พบโมเดล {{modelId}}", - "Model {{modelName}} is not vision capable": "โมเดล {{modelName}} ไม่รองรับฟีเจอร์ Vision", - "Model {{name}} is now {{status}}": "โมเดล {{name}} ขณะนี้ {{status}}", - "Model {{name}} is now hidden": "โมเดล {{name}} ถูกซ่อนแล้ว", - "Model {{name}} is now visible": "โมเดล {{name}} มองเห็นได้แล้ว", - "Model accepts file inputs": "โมเดลรองรับการป้อนข้อมูลจากไฟล์", - "Model accepts image inputs": "โมเดลรองรับอินพุตรูปภาพ", - "Model can execute code and perform calculations": "โมเดลสามารถรันโค้ดและคำนวณได้", - "Model can generate images based on text prompts": "โมเดลสามารถสร้างภาพจากพรอมต์ข้อความได้", - "Model can search the web for information": "โมเดลสามารถค้นหาข้อมูลจากเว็บได้", - "Model created successfully!": "สร้างโมเดลสำเร็จ!", - "Model filesystem path detected. Model shortname is required for update, cannot continue.": "ตรวจพบเส้นทางระบบไฟล์ของโมเดล ต้องระบุชื่อย่อของโมเดลสำหรับการอัปเดต ไม่สามารถดำเนินการต่อได้", - "Model Filtering": "การกรองโมเดล", - "Model ID": "รหัสโมเดล", - "Model ID is required.": "จำเป็นต้องระบุ Model ID", - "Model IDs": "รหัสโมเดล", - "Model Name": "ชื่อโมเดล", - "Model name already exists, please choose a different one": "มีชื่อโมเดลนี้อยู่แล้ว โปรดเลือกชื่ออื่น", - "Model Name is required.": "จำเป็นต้องระบุชื่อโมเดล", - "Model not selected": "ยังไม่ได้เลือกโมเดล", - "Model Params": "พารามิเตอร์ของโมเดล", - "Model Permissions": "สิทธิ์ของโมเดล", - "Model unloaded successfully": "ยกเลิกการโหลดโมเดลสำเร็จแล้ว", - "Model updated successfully": "อัปเดตโมเดลเรียบร้อยแล้ว", - "Model(s) do not support file upload": "โมเดลไม่รองรับการอัปโหลดไฟล์", - "Modelfile Content": "เนื้อหา Modelfile", - "Models": "โมเดล", - "Models Access": "การเข้าถึงโมเดล", - "Models configuration saved successfully": "บันทึกการตั้งค่าโมเดลสำเร็จแล้ว", - "Models imported successfully": "นำเข้าโมเดลสำเร็จแล้ว", - "Models Public Sharing": "การแชร์โมเดลสาธารณะ", - "Mojeek Search API Key": "API Key สำหรับ Mojeek Search", - "More": "เพิ่มเติม", - "More Concise": "กระชับมากขึ้น", - "More Options": "ตัวเลือกเพิ่มเติม", - "Move": "ย้าย", - "Name": "ชื่อ", - "Name and ID are required, please fill them out": "จำเป็นต้องกรอกชื่อและ ID โปรดกรอกข้อมูลให้ครบ", - "Name your knowledge base": "ตั้งชื่อฐานความรู้ของคุณ", - "Native": "Native", - "New Button": "ปุ่มใหม่", - "New Chat": "แชทใหม่", - "New Folder": "โฟลเดอร์ใหม่", - "New Function": "ฟังก์ชันใหม่", - "New Knowledge": "ฐานความรู้ใหม่", - "New Model": "โมเดลใหม่", - "New Note": "บันทึกใหม่", - "New Password": "รหัสผ่านใหม่", - "New Prompt": "พรอมต์ใหม่", - "New Temporary Chat": "แชทชั่วคราวใหม่", - "New Tool": "เครื่องมือใหม่", - "new-channel": "ช่องใหม่", - "Next message": "ข้อความถัดไป", - "No authentication": "ไม่ต้องยืนยันตัวตน", - "No chats found": "ไม่พบแชท", - "No chats found for this user.": "ไม่พบการแชทสำหรับผู้ใช้นี้", - "No chats found.": "ไม่พบแชท", - "No content": "ไม่มีเนื้อหา", - "No content found": "ไม่พบเนื้อหา", - "No content found in file.": "ไม่พบเนื้อหาในไฟล์", - "No content to speak": "ไม่มีเนื้อหาสำหรับอ่านออกเสียง", - "No conversation to save": "ไม่มีการสนทนาที่จะบันทึก", - "No distance available": "ไม่มีข้อมูลระยะทาง", - "No expiration can pose security risks.": "ไม่มีวันหมดอายุอาจทำให้เกิดความเสี่ยงด้านความปลอดภัย", - "No feedbacks found": "ไม่พบความคิดเห็น", - "No file selected": "ไม่ได้เลือกไฟล์", - "No functions found": "ไม่พบฟังก์ชัน", - "No groups with access, add a group to grant access": "ยังไม่มีกลุ่มที่มีสิทธิ์เข้าถึง เพิ่มกลุ่มเพื่อให้สิทธิ์เข้าถึง", - "No HTML, CSS, or JavaScript content found.": "ไม่พบเนื้อหา HTML, CSS หรือ JavaScript", - "No inference engine with management support found": "ไม่พบเอนจินอนุมานที่รองรับการจัดการ", - "No knowledge found": "ไม่พบฐานความรู้", - "No memories to clear": "ไม่มีความจำให้ลบ", - "No model IDs": "ไม่มีรหัสโมเดล", - "No models found": "ไม่พบโมเดล", - "No models selected": "ไม่ได้เลือกโมเดล", - "No Notes": "ไม่มีบันทึก", - "No notes found": "ไม่พบบันทึก", - "No prompts found": "ไม่พบพรอมต์", - "No results": "ไม่มีผลลัพธ์", - "No results found": "ไม่มีผลลัพธ์", - "No search query generated": "ไม่มีการสร้างคำค้นหา", - "No source available": "ไม่มีแหล่งที่มา", - "No sources found": "ไม่พบแหล่งข้อมูล", - "No suggestion prompts": "ไม่มีพรอมต์แนะนำ", - "No tools found": "ไม่พบเครื่องมือ", - "No users were found.": "ไม่พบผู้ใช้", - "No valves": "ไม่มีวาล์ว", - "No valves to update": "ไม่มีวาล์วให้อัปเดต", - "Node Ids": "รหัสโหนด", - "None": "ไม่มี", - "Not factually correct": "ไม่ถูกต้องตามข้อเท็จจริง", - "Not helpful": "ไม่เป็นประโยชน์", - "Not Registered": "ยังไม่ได้ลงทะเบียน", - "Note": "บันทึก", - "Note deleted successfully": "ลบบันทึกสำเร็จแล้ว", - "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "หมายเหตุ: หากคุณตั้งค่าคะแนนขั้นต่ำ การค้นหาจะคืนเฉพาะเอกสารที่มีคะแนนมากกว่าหรือเท่ากับคะแนนขั้นต่ำ", - "Notes": "บันทึก", - "Notes Public Sharing": "การแชร์บันทึกสาธารณะ", - "Notification Sound": "เสียงการแจ้งเตือน", - "Notification Webhook": "Webhook การแจ้งเตือน", - "Notifications": "การแจ้งเตือน", - "November": "พฤศจิกายน", - "OAuth": "OAuth", - "OAuth 2.1": "OAuth 2.1", - "OAuth ID": "OAuth ID", - "October": "ตุลาคม", - "Off": "ปิด", - "Okay, Let's Go!": "ตกลง ไปกันเลย!", - "OLED Dark": "โหมดมืด OLED", - "Ollama": "Ollama", - "Ollama API": "Ollama API", - "Ollama API settings updated": "อัปเดตการตั้งค่า Ollama API แล้ว", - "Ollama Cloud API Key": "API Key ของ Ollama Cloud", - "Ollama Version": "เวอร์ชัน Ollama", - "On": "เปิด", - "OneDrive": "OneDrive", - "Only active when \"Paste Large Text as File\" setting is toggled on.": "จะทำงานเฉพาะเมื่อเปิดการตั้งค่า \"วางข้อความขนาดใหญ่เป็นไฟล์\"", - "Only active when the chat input is in focus and an LLM is generating a response.": "ทำงานเฉพาะเมื่อช่องป้อนข้อความแชทถูกโฟกัสอยู่ และ LLM กำลังสร้างคำตอบ", - "Only active when the chat input is in focus.": "จะใช้งานได้เฉพาะเมื่อช่องป้อนข้อความแชทถูกโฟกัสอยู่เท่านั้น", - "Only alphanumeric characters and hyphens are allowed": "อนุญาตเฉพาะตัวอักษร ตัวเลข และขีดกลาง", - "Only alphanumeric characters and hyphens are allowed in the command string.": "อนุญาตให้ใช้เฉพาะตัวอักษร ตัวเลข และขีดกลางในสตริงคำสั่งเท่านั้น", - "Only can be triggered when the chat input is in focus.": "สามารถทริกเกอร์ได้เฉพาะเมื่อช่องป้อนข้อความแชทอยู่ในโฟกัสเท่านั้น", - "Only collections can be edited, create a new knowledge base to edit/add documents.": "สามารถแก้ไขได้เฉพาะคอลเลกชันเท่านั้น โปรดสร้างฐานความรู้ใหม่เพื่อแก้ไข/เพิ่มเอกสาร", - "Only markdown files are allowed": "อนุญาตเฉพาะไฟล์ Markdown เท่านั้น", - "Only select users and groups with permission can access": "มีเฉพาะผู้ใช้และกลุ่มที่ได้รับสิทธิ์เท่านั้นที่เข้าถึงได้", - "Oops! Looks like the URL is invalid. Please double-check and try again.": "ขออภัย! ดูเหมือนว่า URL ไม่ถูกต้อง กรุณาตรวจสอบและลองใหม่อีกครั้ง", - "Oops! There are files still uploading. Please wait for the upload to complete.": "โอ๊ะ! ยังมีไฟล์กำลังอัปโหลดอยู่ กรุณารอจนกว่าอัปโหลดจะเสร็จสมบูรณ์", - "Oops! There was an error in the previous response.": "ขออภัย! เกิดข้อผิดพลาดในคำตอบก่อนหน้า", - "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 link": "เปิดลิงก์", - "Open modal to configure connection": "เปิดหน้าต่างเพื่อกำหนดค่าการเชื่อมต่อ", - "Open Modal To Manage Floating Quick Actions": "เปิดหน้าต่างเพื่อจัดการทางลัดด่วนแบบลอย", - "Open Modal To Manage Image Compression": "เปิดหน้าต่างจัดการการบีบอัดรูปภาพ", - "Open Settings": "เปิดการตั้งค่า", - "Open Sidebar": "เปิดแถบด้านข้าง", - "Open User Profile Menu": "เปิดเมนูโปรไฟล์ผู้ใช้", - "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI สามารถใช้เครื่องมือที่มีให้จากเซิร์ฟเวอร์ OpenAPI ใดก็ได้", - "Open WebUI uses faster-whisper internally.": "Open WebUI ใช้ faster-whisper อยู่ภายใน", - "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI ใช้ SpeechT5 และ Embedding เสียงผู้พูด CMU Arctic", - "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "เวอร์ชัน Open WebUI (v{{OPEN_WEBUI_VERSION}}) ต่ำกว่าเวอร์ชันที่ต้องการ (v{{REQUIRED_VERSION}})", - "OpenAI": "OpenAI", - "OpenAI API": "OpenAI API", - "OpenAI API Base URL": "Base URL ของ OpenAI API", - "OpenAI API Key": "API Key ของ OpenAI", - "OpenAI API Key is required.": "จำเป็นต้องใช้ OpenAI API Key", - "OpenAI API settings updated": "อัปเดตการตั้งค่า OpenAI API แล้ว", - "OpenAI API Version": "เวอร์ชัน OpenAI API", - "OpenAI URL/Key required.": "จำเป็นต้องระบุ URL/คีย์ OpenAI", - "OpenAPI": "OpenAPI", - "OpenAPI Spec": "สเปก OpenAPI", - "openapi.json URL or Path": "URL หรือพาธของ openapi.json", - "Optional": "ไม่บังคับ", - "Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "ตัวเลือกสำหรับรันโมเดล Vision-language แบบโลคอลสำหรับคำอธิบายรูปภาพ โดยพารามิเตอร์จะอ้างถึงโมเดลที่โฮสต์บน Hugging Face พารามิเตอร์นี้จะใช้ร่วมกับ picture_description_api ไม่ได้", - "or": "หรือ", - "Ordered List": "รายการมีลำดับ", - "Organize your users": "จัดการผู้ใช้ของคุณ", - "Other": "อื่น ๆ", - "OUTPUT": "เอาต์พุต", - "Output format": "รูปแบบผลลัพธ์", - "Output Format": "รูปแบบผลลัพธ์", - "Overview": "ภาพรวม", - "page": "หน้า", - "Paginate": "แบ่งหน้า", - "Parameters": "พารามิเตอร์", - "Password": "รหัสผ่าน", - "Passwords do not match.": "รหัสผ่านไม่ตรงกัน", - "Paste Large Text as File": "วางข้อความขนาดใหญ่เป็นไฟล์", - "PDF Backend": "ระบบเบื้องหลัง PDF", - "PDF document (.pdf)": "เอกสาร PDF (.pdf)", - "PDF Extract Images (OCR)": "การดึงรูปภาพจาก PDF (OCR)", - "pending": "รอดำเนินการ", - "Pending": "กำลังรอ", - "Pending User Overlay Content": "เนื้อหาซ้อนทับผู้ใช้ที่รอดำเนินการ", - "Pending User Overlay Title": "ชื่อหน้าซ้อนผู้ใช้ที่รอดำเนินการ", - "Perform OCR": "ทำ OCR", - "Permission denied when accessing media devices": "ไม่ได้รับอนุญาตให้เข้าถึงอุปกรณ์สื่อ", - "Permission denied when accessing microphone": "ถูกปฏิเสธสิทธิ์ในการเข้าถึงไมโครโฟน", - "Permission denied when accessing microphone: {{error}}": "ไม่ได้รับอนุญาตให้เข้าถึงไมโครโฟน: {{error}}", - "Permissions": "สิทธิ์", - "Perplexity API Key": "API Key ของ Perplexity", - "Perplexity Model": "โมเดล Perplexity", - "Perplexity Search Context Usage": "การใช้บริบทการค้นหา Perplexity", - "Personalization": "การปรับแต่ง", - "Picture Description API Config": "การตั้งค่า Picture Description API", - "Picture Description Local Config": "การตั้งค่าภาพคำอธิบายในเครื่อง", - "Picture Description Mode": "โหมดบรรยายภาพ", - "Pin": "ปักหมุด", - "Pinned": "ปักหมุดแล้ว", - "Pioneer insights": "ข้อมูลเชิงลึกผู้บุกเบิก", - "Pipe": "ท่อ", - "Pipeline": "Pipeline", - "Pipeline deleted successfully": "ลบ Pipeline สำเร็จแล้ว", - "Pipeline downloaded successfully": "ดาวน์โหลด Pipeline สำเร็จแล้ว", - "Pipelines": "Pipelines", - "Pipelines are a plugin system with arbitrary code execution —": "Pipelines เป็นระบบปลั๊กอินที่สามารถรันโค้ดได้อย่างอิสระ —", - "Pipelines Not Detected": "ไม่พบ Pipelines", - "Pipelines Valves": "วาล์วของ Pipelines", - "Plain text (.md)": "ข้อความธรรมดา (.md)", - "Plain text (.txt)": "ไฟล์ข้อความธรรมดา (.txt)", - "Playground": "สนามทดสอบ", - "Playwright Timeout (ms)": "Playwright Timeout (มิลลิวินาที)", - "Playwright WebSocket URL": "URL WebSocket ของ Playwright", - "Please carefully review the following warnings:": "โปรดตรวจสอบคำเตือนต่อไปนี้อย่างละเอียด", - "Please do not close the settings page while loading the model.": "โปรดอย่าปิดหน้าการตั้งค่าขณะกำลังโหลดโมเดล", - "Please enter a message or attach a file.": "กรุณากรอกข้อความหรือแนบไฟล์", - "Please enter a prompt": "โปรดป้อนพรอมต์", - "Please enter a valid ID": "กรุณากรอก ID ที่ถูกต้อง", - "Please enter a valid JSON spec": "โปรดป้อนสเปก JSON ที่ถูกต้อง", - "Please enter a valid path": "โปรดป้อนพาธที่ถูกต้อง", - "Please enter a valid URL": "กรุณากรอก URL ที่ถูกต้อง", - "Please enter a valid URL.": "โปรดป้อน URL ที่ถูกต้อง", - "Please fill in all fields.": "โปรดกรอกข้อมูลให้ครบทุกช่อง", - "Please register the OAuth client": "โปรดลงทะเบียน OAuth Client", - "Please save the connection to persist the OAuth client information and do not change the ID": "โปรดบันทึกการเชื่อมต่อเพื่อคงข้อมูล OAuth Client และอย่าเปลี่ยนแปลง ID", - "Please select a model first.": "โปรดเลือกโมเดลก่อน", - "Please select a model.": "โปรดเลือกโมเดล", - "Please select a reason": "โปรดเลือกเหตุผล", - "Please select a valid JSON file": "โปรดเลือกไฟล์ JSON ที่ถูกต้อง", - "Please wait until all files are uploaded.": "โปรดรอจนกว่าไฟล์ทั้งหมดจะอัปโหลดเสร็จสิ้น", - "Port": "พอร์ต", - "Positive attitude": "ทัศนคติเชิงบวก", - "Prefer not to say": "ไม่ต้องการระบุ", - "Prefix ID": "รหัสคำนำหน้า", - "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix ID ใช้เพื่อหลีกเลี่ยงความขัดแย้งกับการเชื่อมต่ออื่น โดยการเพิ่มคำนำหน้าให้กับ ID ของโมเดล หากต้องการปิดให้เว้นว่างไว้", - "Prevent File Creation": "ป้องกันการสร้างไฟล์", - "Preview": "ดูตัวอย่าง", - "Previous 30 days": "30 วันที่ผ่านมา", - "Previous 7 days": "7 วันที่ผ่านมา", - "Previous message": "ข้อความก่อนหน้า", - "Private": "ส่วนตัว", - "Profile": "โปรไฟล์", - "Prompt": "พรอมต์", - "Prompt (e.g. Tell me a fun fact about the Roman Empire)": "พรอมต์ (เช่น บอกข้อเท็จจริงที่สนุกเกี่ยวกับจักรวรรดิโรมัน)", - "Prompt Autocompletion": "การเติมพรอมต์อัตโนมัติ", - "Prompt Content": "เนื้อหาพรอมต์", - "Prompt created successfully": "สร้างพรอมต์สำเร็จแล้ว", - "Prompt suggestions": "คำแนะนำพรอมต์", - "Prompt updated successfully": "อัปเดตพรอมต์สำเร็จแล้ว", - "Prompts": "พรอมต์", - "Prompts Access": "การเข้าถึงพรอมต์", - "Prompts Public Sharing": "การแชร์พรอมต์สาธารณะ", - "Provider Type": "ประเภทผู้ให้บริการ", - "Public": "สาธารณะ", - "Pull \"{{searchValue}}\" from Ollama.com": "ดึง \"{{searchValue}}\" จาก Ollama.com", - "Pull a model from Ollama.com": "ดึงโมเดลจาก Ollama.com", - "Pull Model": "ดึงโมเดล", - "pypdfium2": "pypdfium2", - "Query Generation Prompt": "พรอมต์สร้างคิวรี", - "Querying": "กำลังค้นหา", - "Quick Actions": "การกระทำด่วน", - "RAG Template": "แม่แบบ RAG", - "Rating": "การให้คะแนน", - "Re-rank models by topic similarity": "จัดเรียงลำดับโมเดลใหม่ตามความคล้ายคลึงของหัวข้อ", - "Read": "อ่าน", - "Read Aloud": "อ่านออกเสียง", - "Read more →": "อ่านเพิ่มเติม →", - "Reason": "เหตุผล", - "Reasoning Effort": "ระดับการใช้เหตุผล", - "Reasoning Tags": "ป้ายกำกับการให้เหตุผล", - "Record": "บันทึก", - "Record voice": "บันทึกเสียง", - "Redirecting you to Open WebUI Community": "กำลังเปลี่ยนเส้นทางคุณไปยังชุมชน Open WebUI", - "Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "ลดโอกาสในการสร้างข้อความที่ไม่มีความหมาย ค่าให้สูงขึ้น (เช่น 100) จะทำให้ได้คำตอบที่หลากหลายมากขึ้น ในขณะที่ค่าให้ต่ำลง (เช่น 10) จะทำให้คำตอบระมัดระวังมากขึ้น", - "Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "เรียกตัวเองว่า \"User\" (เช่น \"User กำลังเรียนภาษาสเปน\")", - "Reference Chats": "การแชทอ้างอิง", - "Refused when it shouldn't have": "ปฏิเสธเมื่อไม่ควรปฏิเสธ", - "Regenerate": "สร้างใหม่", - "Regenerate Menu": "สร้างเมนูใหม่", - "Regenerate Response": "สร้างคำตอบใหม่", - "Register Again": "ลงทะเบียนอีกครั้ง", - "Register Client": "ลงทะเบียน Client", - "Registered": "ลงทะเบียนแล้ว", - "Registration failed": "การลงทะเบียนล้มเหลว", - "Registration successful": "ลงทะเบียนสำเร็จ", - "Reindex": "สร้างดัชนีใหม่", - "Reindex Knowledge Base Vectors": "จัดทำดัชนีเวกเตอร์ฐานความรู้ใหม่", - "Release Notes": "บันทึกประจำรุ่น", - "Releases": "รุ่นเผยแพร่", - "Relevance": "ความเกี่ยวข้อง", - "Relevance Threshold": "เกณฑ์ความเกี่ยวข้อง", - "Remember Dismissal": "จำการปิดข้อความ", - "Remove": "ลบ", - "Remove {{MODELID}} from list.": "ลบ {{MODELID}} ออกจากรายการ", - "Remove file": "ลบไฟล์", - "Remove File": "ลบไฟล์", - "Remove image": "ลบรูปภาพ", - "Remove Model": "ลบโมเดล", - "Remove this tag from list": "ลบแท็กนี้ออกจากรายการ", - "Rename": "เปลี่ยนชื่อ", - "Reorder Models": "จัดลำดับโมเดลใหม่", - "Reply": "ตอบกลับ", - "Reply in Thread": "ตอบกลับในเธรด", - "Reply to thread...": "ตอบกลับเธรด...", - "Replying to {{NAME}}": "กำลังตอบกลับ {{NAME}}", - "required": "จำเป็น", - "Reranking Engine": "เอนจิน Reranking", - "Reranking Model": "โมเดล Reranking", - "Reset": "รีเซ็ต", - "Reset All Models": "รีเซ็ตโมเดลทั้งหมด", - "Reset Image": "รีเซ็ตภาพ", - "Reset Upload Directory": "รีเซ็ตไดเรกทอรีการอัปโหลด", - "Reset Vector Storage/Knowledge": "รีเซ็ตที่เก็บเวกเตอร์/ฐานความรู้", - "Reset view": "รีเซ็ตมุมมอง", - "Response": "การตอบกลับ", - "Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "ไม่สามารถเปิดใช้งานการแจ้งเตือนการตอบกลับได้ เนื่องจากสิทธิ์ของเว็บไซต์ถูกปฏิเสธ กรุณาไปที่การตั้งค่าเบราว์เซอร์ของคุณเพื่อให้สิทธิ์การเข้าถึงที่จำเป็น", - "Response splitting": "การแยกข้อความตอบกลับ", - "Response Watermark": "ลายน้ำของคำตอบ", - "Result": "ผลลัพธ์", - "RESULT": "ผลลัพธ์", - "Retrieval": "การดึงข้อมูล", - "Retrieval Query Generation": "การสร้างคำค้นสำหรับการดึงข้อมูล", - "Retrieved {{count}} sources": "ดึงข้อมูลจาก {{count}} แหล่งข้อมูลแล้ว", - "Retrieved {{count}} sources_other": "เรียกดูที่มา {{count}} รายการ (อื่นๆ)", - "Retrieved 1 source": "ดึงมาแล้ว 1 แหล่งข้อมูล", - "Rich Text Input for Chat": "ช่องป้อนข้อความแบบ Rich Text สำหรับแชท", - "RK": "RK", - "Role": "บทบาท", - "Rosé Pine": "Rosé Pine", - "Rosé Pine Dawn": "Rosé Pine Dawn", - "RTL": "ขวาไปซ้าย", - "Run": "เรียกใช้", - "Running": "กำลังทำงาน", - "Running...": "กำลังทำงาน...", - "Save": "บันทึก", - "Save & Create": "บันทึกและสร้าง", - "Save & Update": "บันทึกและอัปเดต", - "Save As Copy": "บันทึกเป็นสำเนา", - "Save Chat": "บันทึกการแชท", - "Save Tag": "บันทึกแท็ก", - "Saved": "บันทึกแล้ว", - "Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "การบันทึก Log การแชทโดยตรงไปยังที่จัดเก็บของเบราว์เซอร์ไม่รองรับอีกต่อไป โปรดสละเวลาสักครู่เพื่อดาวน์โหลดและลบบันทึกการแชทของคุณโดยคลิกปุ่มด้านล่าง ไม่ต้องกังวล คุณสามารถนำเข้าบันทึกการแชทของคุณกลับไปยัง Backend ได้อย่างง่ายดายผ่าน", - "Scroll On Branch Change": "เลื่อนเมื่อเปลี่ยนสาขา", - "Search": "ค้นหา", - "Search a model": "ค้นหาโมเดล", - "Search all emojis": "ค้นหาอีโมจิทั้งหมด", - "Search Base": "ฐานการค้นหา", - "Search Chats": "ค้นหาแชท", - "Search Collection": "ค้นหาคอลเลกชัน", - "Search Filters": "ตัวกรองการค้นหา", - "search for archived chats": "ค้นหาการแชทที่เก็บถาวร", - "search for folders": "ค้นหาโฟลเดอร์", - "search for pinned chats": "ค้นหาแชทที่ปักหมุด", - "search for shared chats": "ค้นหาการแชทที่แชร์ร่วมกัน", - "search for tags": "ค้นหาแท็ก", - "Search Functions": "ค้นหาฟังก์ชัน", - "Search In Models": "ค้นหาในโมเดล", - "Search Knowledge": "ค้นหาฐานความรู้", - "Search Models": "ค้นหาโมเดล", - "Search Notes": "ค้นหาบันทึก", - "Search options": "ตัวเลือกการค้นหา", - "Search Prompts": "ค้นหาพรอมต์", - "Search Result Count": "จำนวนผลลัพธ์การค้นหา", - "Search the internet": "ค้นหาบนอินเทอร์เน็ต", - "Search Tools": "เครื่องมือค้นหา", - "SearchApi API Key": "API Key ของ SearchApi", - "SearchApi Engine": "เอนจินของ SearchApi", - "Searched {{count}} sites": "ค้นหา {{count}} เว็บไซต์", - "Searching": "กำลังค้นหา", - "Searching \"{{searchQuery}}\"": "กำลังค้นหา \"{{searchQuery}}\"", - "Searching Knowledge for \"{{searchQuery}}\"": "กำลังค้นหาความรู้สำหรับ \"{{searchQuery}}\"", - "Searching the web": "กำลังค้นหาบนเว็บ", - "Searxng Query URL": "URL การค้นหา Searxng", - "See readme.md for instructions": "ดู readme.md สำหรับคำแนะนำ", - "See what's new": "ดูมีอะไรใหม่", - "Seed": "Seed", - "Select": "เลือก", - "Select a base model": "เลือกโมเดลฐาน", - "Select a base model (e.g. llama3, gpt-4o)": "เลือกโมเดลพื้นฐาน (เช่น llama3, gpt-4o)", - "Select a conversation to preview": "เลือกการสนทนาเพื่อดูตัวอย่าง", - "Select a engine": "เลือกเอนจิน", - "Select a function": "เลือกฟังก์ชัน", - "Select a group": "เลือกกลุ่ม", - "Select a language": "เลือกรูปแบบภาษา", - "Select a mode": "เลือกโหมด", - "Select a model": "เลือกโมเดล", - "Select a model (optional)": "เลือกโมเดล (ไม่บังคับ)", - "Select a pipeline": "เลือก Pipeline", - "Select a pipeline url": "เลือก URL ของ Pipeline", - "Select a reranking model engine": "เลือกเอนจินโมเดล Reranking", - "Select a role": "เลือกบทบาท", - "Select a theme": "เลือกธีม", - "Select a tool": "เลือกเครื่องมือ", - "Select a voice": "เลือกเสียง", - "Select an auth method": "เลือกวิธีการยืนยันตัวตน", - "Select an embedding model engine": "เลือกเอนจินโมเดลสำหรับสร้าง Embedding", - "Select an engine": "เลือกเอนจิน", - "Select an Ollama instance": "เลือกอินสแตนซ์ของ Ollama", - "Select an output format": "เลือกรูปแบบผลลัพธ์", - "Select dtype": "เลือก dtype", - "Select Engine": "เลือกเอนจิน", - "Select how to split message text for TTS requests": "เลือกวิธีแบ่งข้อความสำหรับคำขอ TTS", - "Select Knowledge": "เลือกฐานความรู้", - "Select Method": "เลือกวิธี", - "Select only one model to call": "เลือกเพียงโมเดลเดียวที่จะเรียกใช้", - "Select view": "เลือกมุมมอง", - "Selected model(s) do not support image inputs": "โมเดลที่เลือกไม่รองรับการป้อนภาพ", - "semantic": "Semantic", - "Send": "ส่ง", - "Send a Message": "ส่งข้อความ", - "Send message": "ส่งข้อความ", - "Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "ส่ง `stream_options: { include_usage: true }` ในคำขอ\nผู้ให้บริการที่รองรับจะส่งคืนข้อมูลการใช้โทเค็นในข้อมูลตอบกลับเมื่อมีการตั้งค่านี้", - "September": "กันยายน", - "SerpApi API Key": "API Key ของ SerpApi", - "SerpApi Engine": "เอนจิน SerpApi", - "Serper API Key": "คีย์ API ของ Serper", - "Serply API Key": "คีย์ API ของ Serply", - "Serpstack API Key": "คีย์ API ของ Serpstack", - "Server connection verified": "ยืนยันการเชื่อมต่อเซิร์ฟเวอร์แล้ว", - "Session": "Session", - "Set as default": "ตั้งเป็นค่าเริ่มต้น", - "Set embedding model": "ตั้งค่าโมเดล Embedding", - "Set embedding model (e.g. {{model}})": "ตั้งค่าโมเดลสำหรับ Embedding (เช่น {{model}})", - "Set reranking model (e.g. {{model}})": "ตั้งค่าโมเดล Reranking (เช่น {{model}})", - "Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "ตั้งค่าจำนวนเลเยอร์ที่จะ Offload ไปยัง GPU การเพิ่มค่านี้สามารถช่วยเพิ่มประสิทธิภาพได้มากสำหรับโมเดลที่ปรับแต่งมาสำหรับการเร่งความเร็วด้วย GPU แต่ก็อาจใช้พลังงานและทรัพยากร GPU มากขึ้นด้วย", - "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "กำหนดจำนวนเธรดของ Worker ที่ใช้สำหรับการคำนวณ ตัวเลือกนี้ใช้กำหนดว่าใช้เธรดจำนวนเท่าใดในการประมวลผลคำขอที่เข้ามาพร้อมกัน การเพิ่มค่านี้สามารถช่วยเพิ่มประสิทธิภาพภายใต้ปริมาณงานที่มีความพร้อมกันสูง แต่อาจใช้ทรัพยากร CPU มากขึ้น", - "Set Voice": "ตั้งค่าเสียง", - "Set whisper model": "ตั้งค่าโมเดล Whisper", - "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "ตั้งค่า Bias แบบ Flat ต่อโทเค็นที่เคยปรากฏอย่างน้อยหนึ่งครั้ง ค่าให้สูงขึ้น (เช่น 1.5) จะลงโทษการซ้ำมากขึ้น ในขณะที่ค่าให้ต่ำลง (เช่น 0.9) จะผ่อนปรนมากขึ้น หากตั้งเป็น 0 จะปิดการทำงาน", - "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "ตั้งค่า Bias แบบ Scaling ต่อโทเค็นเพื่อลงโทษการซ้ำ ขึ้นอยู่กับจำนวนครั้งที่โทเค็นนั้นปรากฏ ค่าให้สูงขึ้น (เช่น 1.5) จะลงโทษการซ้ำอย่างรุนแรงมากขึ้น ขณะที่ค่าให้ต่ำลง (เช่น 0.9) จะผ่อนปรนมากกว่า ที่ค่า 0 จะปิดการทำงานฟีเจอร์นี้", - "Sets how far back for the model to look back to prevent repetition.": "ตั้งค่าระยะย้อนหลังที่โมเดลจะใช้พิจารณาเพื่อป้องกันการซ้ำคำ", - "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "ตั้งค่า Seed ของตัวเลขสุ่มที่ใช้ในการสร้างข้อความ การตั้งค่าเป็นหมายเลขเฉพาะจะทำให้โมเดลสร้างข้อความเดิมสำหรับพรอมต์เดิม", - "Sets the size of the context window used to generate the next token.": "ตั้งค่าขนาดของ Context Window ที่ใช้ในการสร้างโทเค็นถัดไป", - "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "ตั้งค่าลำดับตัวหยุดที่จะใช้ เมื่อตรวจพบรูปแบบนี้ LLM จะหยุดสร้างข้อความและส่งค่ากลับ สามารถตั้งค่ารูปแบบตัวหยุดหลายแบบได้โดยระบุพารามิเตอร์ Stop แยกกันหลายตัวใน Modelfile", - "Settings": "การตั้งค่า", - "Settings saved successfully!": "บันทึกการตั้งค่าสำเร็จแล้ว!", - "Share": "แชร์", - "Share Chat": "แชร์แชท", - "Share to Open WebUI Community": "แชร์ไปยังชุมชน Open WebUI", - "Share your background and interests": "เล่าพื้นเพและความสนใจของคุณ", - "Shared with you": "แชร์กับคุณ", - "Sharing Permissions": "สิทธิ์การแชร์", - "Show": "แสดง", - "Show \"What's New\" modal on login": "แสดงหน้าต่าง \"มีอะไรใหม่\" เมื่อเข้าสู่ระบบ", - "Show Admin Details in Account Pending Overlay": "แสดงรายละเอียดผู้ดูแลระบบในหน้าต่างซ้อนรอการอนุมัติบัญชี", - "Show Formatting Toolbar": "แสดงแถบเครื่องมือการจัดรูปแบบ", - "Show image preview": "แสดงตัวอย่างรูปภาพ", - "Show Model": "แสดงโมเดล", - "Show Shortcuts": "แสดงทางลัด", - "Show your support!": "แสดงการสนับสนุนของคุณ!", - "Showcased creativity": "แสดงความคิดสร้างสรรค์", - "Sign in": "ลงชื่อเข้าใช้", - "Sign in to {{WEBUI_NAME}}": "ลงชื่อเข้าใช้ {{WEBUI_NAME}}", - "Sign in to {{WEBUI_NAME}} with LDAP": "ลงชื่อเข้าใช้ {{WEBUI_NAME}} ด้วย LDAP", - "Sign Out": "ลงชื่อออก", - "Sign up": "สมัครสมาชิก", - "Sign up to {{WEBUI_NAME}}": "สมัครสมาชิกกับ {{WEBUI_NAME}}", - "Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to False.": "ช่วยเพิ่มความแม่นยำอย่างมากด้วยการใช้ LLM เพื่อเพิ่มประสิทธิภาพการตรวจจับตาราง ฟอร์ม สมการในบรรทัด และโครงร่างหน้าเอกสาร แต่จะทำให้หน่วงเวลามากขึ้น ค่าเริ่มต้นคือ False", - "Signing in to {{WEBUI_NAME}}": "กำลังลงชื่อเข้าใช้ {{WEBUI_NAME}}", - "Sink List": "รายการซิงก์", - "sk-1234": "sk-1234", - "Skip Cache": "ข้ามแคช", - "Skip the cache and re-run the inference. Defaults to False.": "ข้ามแคชและรันการอนุมานใหม่อีกครั้ง ค่าเริ่มต้นคือ False", - "Something went wrong :/": "มีบางอย่างผิดพลาด :/", - "Sonar": "Sonar", - "Sonar Deep Research": "Sonar การวิจัยเชิงลึก", - "Sonar Pro": "Sonar Pro", - "Sonar Reasoning": "การให้เหตุผลของ Sonar", - "Sonar Reasoning Pro": "Sonar Reasoning Pro", - "Sougou Search API sID": "sID ของ Sougou Search API", - "Sougou Search API SK": "Sougou Search API SK", - "Source": "แหล่งที่มา", - "Speech Playback Speed": "ความเร็วการเล่นเสียงพูด", - "Speech recognition error: {{error}}": "ข้อผิดพลาดในการรู้จำเสียง: {{error}}", - "Speech-to-Text": "แปลงเสียงเป็นข้อความ", - "Speech-to-Text Engine": "เครื่องมือแปลงเสียงเป็นข้อความ", - "standard": "มาตรฐาน", - "Start a new conversation": "เริ่มการสนทนาใหม่", - "Start of the channel": "จุดเริ่มต้นของช่อง", - "Start Tag": "แท็กเริ่มต้น", - "Status Updates": "อัปเดตสถานะ", - "STDOUT/STDERR": "STDOUT/STDERR", - "Steps": "ขั้นตอน", - "Stop": "หยุด", - "Stop Generating": "หยุดการสร้าง", - "Stop Sequence": "ลำดับการหยุด", - "Stream Chat Response": "สตรีมการตอบกลับแชท", - "Stream Delta Chunk Size": "ขนาดชังก์สตรีม Delta", - "Streamable HTTP": "HTTP แบบสตรีมได้", - "Strikethrough": "ขีดฆ่า", - "Strip Existing OCR": "ลบ OCR เดิมออก", - "Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "ลบข้อความ OCR เดิมออกจาก PDF แล้วรัน OCR ใหม่ จะถูกละเว้นหากเปิดใช้ Force OCR ค่าเริ่มต้นคือ False", - "STT Model": "โมเดลแปลงเสียงเป็นข้อความ", - "STT Settings": "การตั้งค่าแปลงเสียงเป็นข้อความ", - "Stylized PDF Export": "ส่งออก PDF แบบมีสไตล์", - "Subtitle (e.g. about the Roman Empire)": "คำบรรยายย่อย (เช่น เกี่ยวกับจักรวรรดิโรมัน)", - "Success": "สำเร็จ", - "Successfully imported {{userCount}} users.": "นำเข้า {{userCount}} ผู้ใช้สำเร็จแล้ว", - "Successfully updated.": "อัปเดตเรียบร้อยแล้ว", - "Suggest a change": "เสนอการเปลี่ยนแปลง", - "Suggested": "แนะนำ", - "Support": "สนับสนุน", - "Support this plugin:": "สนับสนุนปลั๊กอินนี้:", - "Supported MIME Types": "ชนิด MIME ที่รองรับ", - "Sync directory": "ซิงค์ไดเรกทอรี", - "System": "ระบบ", - "System Instructions": "คำสั่งของระบบ", - "System Prompt": "System Prompt", - "Table Mode": "โหมดตาราง", - "Tag": "แท็ก", - "Tags": "แท็ก", - "Tags Generation": "การสร้างแท็ก", - "Tags Generation Prompt": "พรอมต์สำหรับสร้างแท็ก", - "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Tail free sampling ใช้เพื่อลดผลกระทบของโทเค็นที่มีความน่าจะเป็นต่ำจากผลลัพธ์ ค่าเท่าที่สูงกว่า (เช่น 2.0) จะลดผลกระทบได้มากกว่า ในขณะที่ค่า 1.0 จะปิดการตั้งค่านี้", - "Talk to Model": "คุยกับโมเดล", - "Tap to interrupt": "แตะเพื่อขัดจังหวะ", - "Task List": "รายการงาน", - "Task Model": "Task Model", - "Tasks": "งาน", - "Tavily API Key": "คีย์ API ของ Tavily", - "Tavily Extract Depth": "ความลึกการดึงข้อมูล Tavily", - "Tell us more:": "เล่าให้เราฟังเพิ่มเติม:", - "Temperature": "Temperature", - "Temporary Chat": "การแชทชั่วคราว", - "Temporary Chat by Default": "ใช้แชทชั่วคราวเป็นค่าเริ่มต้น", - "Text Splitter": "ตัวแบ่งข้อความ", - "Text-to-Speech": "แปลงข้อความเป็นเสียง", - "Text-to-Speech Engine": "เครื่องมือแปลงข้อความเป็นเสียง", - "Thanks for your feedback!": "ขอบคุณสำหรับคำติชมของคุณ!", - "The Application Account DN you bind with for search": "DN ของบัญชีแอปพลิเคชันที่คุณใช้ bind เพื่อค้นหา", - "The base to search for users": "ฐานสำหรับค้นหาผู้ใช้", - "The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.": "ขนาด Batch กำหนดว่ามีคำขอข้อความกี่รายการที่ถูกประมวลผลพร้อมกันในครั้งเดียว ขนาด Batch ที่สูงขึ้นสามารถเพิ่มประสิทธิภาพและความเร็วของโมเดลได้ แต่ก็ต้องใช้หน่วยความจำมากขึ้น", - "The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "นักพัฒนาที่อยู่เบื้องหลังปลั๊กอินนี้เป็นอาสาสมัครจากชุมชนที่มีความมุ่งมั่น หากคุณพบว่าปลั๊กอินนี้มีประโยชน์ โปรดพิจารณามีส่วนร่วมในการพัฒนาปลั๊กอินนี้", - "The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "กระดานจัดอันดับการประเมินอิงตามระบบเรตติ้ง Elo และอัปเดตแบบเรียลไทม์", - "The format to return a response in. Format can be json or a JSON schema.": "รูปแบบในการส่งคืนคำตอบ โดยรูปแบบสามารถเป็น json หรือ JSON Schema ได้", - "The height in pixels to compress images to. Leave empty for no compression.": "ความสูงของภาพเป็นพิกเซลที่จะใช้ในการบีบอัด ปล่อยว่างไว้หากไม่ต้องการบีบอัด", - "The language of the input audio. Supplying the input language in ISO-639-1 (e.g. en) format will improve accuracy and latency. Leave blank to automatically detect the language.": "ภาษาของเสียงอินพุต การระบุภาษาของอินพุตในรูปแบบ ISO-639-1 (เช่น en) จะช่วยเพิ่มความแม่นยำและลดเวลาแฝง เว้นว่างไว้เพื่อให้ตรวจจับภาษาโดยอัตโนมัติ", - "The LDAP attribute that maps to the mail that users use to sign in.": "แอตทริบิวต์ LDAP ที่แมปกับอีเมลที่ผู้ใช้ใช้เพื่อลงชื่อเข้าใช้", - "The LDAP attribute that maps to the username that users use to sign in.": "แอตทริบิวต์ LDAP ที่แมปกับชื่อผู้ใช้ที่ผู้ใช้ใช้สำหรับลงชื่อเข้าใช้", - "The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "กระดานจัดอันดับขณะนี้ยังเป็นเวอร์ชันทดสอบ (เบต้า) และเราอาจปรับวิธีคำนวณคะแนนจัดอันดับได้เมื่อปรับปรุงอัลกอริทึม", - "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "ขนาดไฟล์สูงสุดเป็นหน่วย MB หากขนาดไฟล์เกินค่าที่กำหนดนี้ ไฟล์จะไม่ถูกอัปโหลด", - "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "จำนวนไฟล์สูงสุดที่สามารถใช้ในการแชทได้พร้อมกัน หากจำนวนไฟล์เกินขีดจำกัดนี้ ไฟล์จะไม่ถูกอัปโหลด", - "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "รูปแบบผลลัพธ์สำหรับข้อความ อาจเป็น 'json', 'markdown' หรือ 'html' ค่าเริ่มต้นคือ 'markdown'", - "The passwords you entered don't quite match. Please double-check and try again.": "รหัสผ่านที่คุณป้อนไม่ตรงกัน โปรดตรวจสอบอีกครั้งแล้วลองใหม่", - "The score should be a value between 0.0 (0%) and 1.0 (100%).": "คะแนนควรเป็นค่าระหว่าง 0.0 (0%) ถึง 1.0 (100%)", - "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "ขนาด Stream Delta Chunk สำหรับโมเดล การเพิ่มขนาด Chunk จะทำให้โมเดลตอบกลับเป็นข้อความชิ้นใหญ่ขึ้นในแต่ละครั้ง", - "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Temperature ของโมเดล การเพิ่มค่า Temperature จะทำให้โมเดลตอบอย่างสร้างสรรค์มากขึ้น", - "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "ค่าน้ำหนักของการค้นหาแบบผสม BM25 ค่า 0 เน้นความหมาย (Semantic) ค่า 1 เน้นคำตรงตัว (Lexical) ค่าเริ่มต้น 0.5", - "The width in pixels to compress images to. Leave empty for no compression.": "ความกว้างของภาพเป็นพิกเซลที่จะบีบอัด หากเว้นว่างไว้จะไม่บีบอัด", - "Theme": "ธีม", - "Thinking...": "กำลังคิด...", - "This action cannot be undone. Do you wish to continue?": "การกระทำนี้ไม่สามารถย้อนกลับได้ คุณต้องการดำเนินการต่อหรือไม่?", - "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "สร้างช่องนี้เมื่อ {{createdAt}} นี่คือจุดเริ่มต้นของช่อง {{channelName}}", - "This chat won't appear in history and your messages will not be saved.": "การแชทนี้จะไม่ปรากฏในประวัติ และข้อความของคุณจะไม่ถูกบันทึก", - "This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "สิ่งนี้ช่วยให้มั่นใจได้ว่าบทสนทนาที่สำคัญของคุณจะถูกบันทึกอย่างปลอดภัยในฐานข้อมูล Backend ของคุณ ขอบคุณ!", - "This feature is experimental and may be modified or discontinued without notice.": "ฟีเจอร์นี้เป็นแบบทดลอง และอาจถูกแก้ไขหรือยกเลิกได้โดยไม่ต้องแจ้งให้ทราบล่วงหน้า", - "This is a default user permission and will remain enabled.": "นี่คือสิทธิ์ของผู้ใช้เริ่มต้นและจะถูกเปิดใช้งานไว้เสมอ", - "This is an experimental feature, it may not function as expected and is subject to change at any time.": "นี่เป็นฟีเจอร์ทดลอง อาจไม่ทำงานตามที่คาดไว้และอาจมีการเปลี่ยนแปลงได้ตลอดเวลา", - "This model is not publicly available. Please select another model.": "โมเดลนี้ไม่เปิดให้ใช้งานสาธารณะ โปรดเลือกโมเดลอื่น", - "This option controls how long the model will stay loaded into memory following the request (default: 5m)": "ตัวเลือกนี้ควบคุมระยะเวลาที่โมเดลจะถูกโหลดค้างอยู่ในหน่วยความจำหลังจากคำขอ (ค่าเริ่มต้น: 5 นาที)", - "This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics.": "ตัวเลือกนี้ใช้กำหนดจำนวนโทเค็นที่จะถูกเก็บไว้เมื่อมีการรีเฟรชบริบท ยกตัวอย่างเช่น หากตั้งค่าเป็น 2 โทเค็น 2 ตัวสุดท้ายของบริบทการสนทนาจะถูกเก็บไว้ การเก็บรักษาบริบทสามารถช่วยให้การสนทนาต่อเนื่องมากขึ้น แต่อาจทำให้ความสามารถในการตอบสนองต่อหัวข้อใหม่ลดลง", - "This option enables or disables the use of the reasoning feature in Ollama, which allows the model to think before generating a response. When enabled, the model can take a moment to process the conversation context and generate a more thoughtful response.": "ตัวเลือกนี้ใช้เปิดหรือปิดฟีเจอร์การให้เหตุผลใน Ollama ซึ่งช่วยให้โมเดลสามารถคิดก่อนสร้างคำตอบได้ เมื่อเปิดใช้งาน โมเดลจะใช้เวลาสักครู่เพื่อประมวลผลบริบทของการสนทนาและสร้างคำตอบที่รอบคอบมากขึ้น", - "This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.": "ตัวเลือกนี้ใช้กำหนดจำนวนโทเค็นสูงสุดที่โมเดลสามารถสร้างได้ในคำตอบของตน การเพิ่มขีดจำกัดนี้จะช่วยให้โมเดลตอบได้ยาวขึ้น แต่ก็อาจเพิ่มโอกาสในการสร้างเนื้อหาที่ไม่เป็นประโยชน์หรือไม่เกี่ยวข้องด้วย", - "This option will delete all existing files in the collection and replace them with newly uploaded files.": "ตัวเลือกนี้จะลบไฟล์ทั้งหมดที่มีอยู่ในคอลเลกชันและแทนที่ด้วยไฟล์ที่อัปโหลดใหม่", - "This response was generated by \"{{model}}\"": "การตอบกลับนี้สร้างโดย \"{{model}}\"", - "This will delete": "การดำเนินการนี้จะลบ", - "This will delete {{NAME}} and all its contents.": "การดำเนินการนี้จะลบ {{NAME}} และเนื้อหาทั้งหมด", - "This will delete all models including custom models": "การดำเนินการนี้จะลบโมเดลทั้งหมด รวมถึงโมเดลแบบกำหนดเอง", - "This will delete all models including custom models and cannot be undone.": "การดำเนินการนี้จะลบโมเดลทั้งหมดรวมถึงโมเดลที่กำหนดเอง และไม่สามารถยกเลิกได้", - "This will reset the knowledge base and sync all files. Do you wish to continue?": "การดำเนินการนี้จะรีเซ็ตฐานความรู้และซิงค์ไฟล์ทั้งหมด คุณต้องการดำเนินการต่อหรือไม่?", - "Thorough explanation": "คำอธิบายอย่างละเอียด", - "Thought for {{DURATION}}": "คิดเป็นเวลา {{DURATION}}", - "Thought for {{DURATION}} seconds": "ใช้เวลาคิด {{DURATION}} วินาที", - "Thought for less than a second": "คิดเป็นเวลาน้อยกว่าหนึ่งวินาที", - "Thread": "เธรด", - "Tika": "Tika", - "Tika Server URL required.": "จำเป็นต้องมี URL ของเซิร์ฟเวอร์ Tika", - "Tiktoken": "Tiktoken", - "Title": "ชื่อเรื่อง", - "Title (e.g. Tell me a fun fact)": "ชื่อเรื่อง (เช่น บอกข้อมูลสนุกๆ ให้ฉันฟัง)", - "Title Auto-Generation": "การสร้างชื่ออัตโนมัติ", - "Title cannot be an empty string.": "ชื่อเรื่องต้องไม่เป็นสตริงว่าง", - "Title Generation": "การสร้างชื่อเรื่อง", - "Title Generation Prompt": "พรอมต์สำหรับสร้างชื่อเรื่อง", - "TLS": "TLS", - "To access the available model names for downloading,": "ในการเข้าถึงชื่อโมเดลที่มีให้ดาวน์โหลดนั้น", - "To access the GGUF models available for downloading,": "ในการเข้าถึงโมเดล GGUF ที่มีให้ดาวน์โหลดได้", - "To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "ในการเข้าถึง WebUI โปรดติดต่อผู้ดูแลระบบ ผู้ดูแลระบบสามารถจัดการสถานะผู้ใช้จากแผงควบคุมผู้ดูแลระบบ", - "To attach knowledge base here, add them to the \"Knowledge\" workspace first.": "หากต้องการแนบฐานความรู้ที่นี่ โปรดเพิ่มไปที่ Workspace \"Knowledge\" ก่อน", - "To learn more about available endpoints, visit our documentation.": "หากต้องการเรียนรู้เพิ่มเติมเกี่ยวกับ Endpoints ที่มีอยู่ โปรดดูที่เอกสารของเรา", - "To learn more about powerful prompt variables, click here": "หากต้องการเรียนรู้เพิ่มเติมเกี่ยวกับตัวแปรพรอมต์ที่ทรงพลัง คลิกที่นี่", - "To protect your privacy, only ratings, model IDs, tags, and metadata are shared from your feedback—your chat logs remain private and are not included.": "เพื่อปกป้องความเป็นส่วนตัวของคุณ จะมีการส่งต่อเฉพาะคะแนน ID โมเดล แท็ก และเมทาดาทาจากความคิดเห็นของคุณเท่านั้น โดยบันทึกการแชทของคุณจะยังเป็นความลับและจะไม่ถูกรวมไปด้วย", - "To select toolkits here, add them to the \"Tools\" workspace first.": "ในการเลือกชุดเครื่องมือที่นี่ ให้เพิ่มไปยังพื้นที่ทำงาน \"Tools\" ก่อน", - "Toast notifications for new updates": "การแจ้งเตือนแบบ Toast สำหรับอัปเดตใหม่", - "Today": "วันนี้", - "Today at {{LOCALIZED_TIME}}": "วันนี้เวลา {{LOCALIZED_TIME}}", - "Toggle Sidebar": "สลับแถบด้านข้าง", - "Toggle whether current connection is active.": "สลับการเปิดใช้งานการเชื่อมต่อปัจจุบัน", - "Token": "โทเค็น", - "Too verbose": "ละเอียดเกินไป", - "Tool created successfully": "สร้างเครื่องมือเรียบร้อยแล้ว", - "Tool deleted successfully": "ลบเครื่องมือเรียบร้อยแล้ว", - "Tool Description": "คำอธิบายเครื่องมือ", - "Tool ID": "ID เครื่องมือ", - "Tool imported successfully": "นำเข้าเครื่องมือเรียบร้อยแล้ว", - "Tool Name": "ชื่อเครื่องมือ", - "Tool Servers": "เซิร์ฟเวอร์เครื่องมือ", - "Tool updated successfully": "อัปเดตเครื่องมือสำเร็จแล้ว", - "Tools": "เครื่องมือ", - "Tools Access": "การเข้าถึงเครื่องมือ", - "Tools are a function calling system with arbitrary code execution": "เครื่องมือคือระบบเรียกใช้ฟังก์ชันที่สามารถรันโค้ดใดๆ ก็ได้", - "Tools Function Calling Prompt": "พรอมต์การเรียกใช้ฟังก์ชันของเครื่องมือ", - "Tools have a function calling system that allows arbitrary code execution.": "เครื่องมือมีระบบเรียกใช้ฟังก์ชันที่สามารถรันโค้ดใดๆ ได้", - "Tools Public Sharing": "การแชร์เครื่องมือสาธารณะ", - "Top K": "Top K", - "Top K Reranker": "ตัวจัดเรียงใหม่ตามค่า Top K", - "Transformers": "Transformers", - "Trouble accessing Ollama?": "มีปัญหาในการเข้าถึง Ollama?", - "Trust Proxy Environment": "เชื่อถือสภาพแวดล้อมพร็อกซี", - "Try adjusting your search or filter to find what you are looking for.": "ลองปรับการค้นหาหรือตัวกรองเพื่อค้นหาสิ่งที่คุณต้องการ", - "Try Again": "ลองอีกครั้ง", - "TTS Model": "โมเดล TTS", - "TTS Settings": "การตั้งค่า TTS", - "TTS Voice": "เสียง TTS", - "Type": "ประเภท", - "Type here...": "พิมพ์ที่นี่...", - "Type Hugging Face Resolve (Download) URL": "พิมพ์ URL Hugging Face Resolve (ดาวน์โหลด)", - "Uh-oh! There was an issue with the response.": "โอ๊ะ! มีปัญหากับการตอบกลับ", - "UI": "ส่วนติดต่อผู้ใช้", - "Unarchive All": "ยกเลิกการเก็บถาวรทั้งหมด", - "Unarchive All Archived Chats": "ยกเลิกการเก็บถาวรแชทที่เก็บถาวรทั้งหมด", - "Unarchive Chat": "ยกเลิกการเก็บถาวรแชท", - "Underline": "ขีดเส้นใต้", - "Unknown": "ไม่ทราบ", - "Unknown User": "ผู้ใช้ที่ไม่ทราบชื่อ", - "Unloads {{FROM_NOW}}": "ยกเลิกการใช้งาน {{FROM_NOW}}", - "Unlock mysteries": "ไขปริศนา", - "Unpin": "ยกเลิกการปักหมุด", - "Unravel secrets": "เปิดเผยความลับ", - "Unsupported file type.": "ไม่รองรับไฟล์ประเภทนี้", - "Untagged": "ไม่มีแท็ก", - "Untitled": "ไม่มีชื่อ", - "Update": "อัปเดต", - "Update and Copy Link": "อัปเดตและคัดลอกลิงก์", - "Update for the latest features and improvements.": "อัปเดตเพื่อรับฟีเจอร์และการปรับปรุงล่าสุด", - "Update password": "อัปเดตรหัสผ่าน", - "Updated": "อัปเดตแล้ว", - "Updated at": "อัปเดตเมื่อ", - "Updated At": "อัปเดตเมื่อ", - "Upgrade to a licensed plan for enhanced capabilities, including custom theming and branding, and dedicated support.": "อัปเกรดเป็นแผนที่มีไลเซนส์เพื่อความสามารถที่เพิ่มขึ้น รวมถึงการปรับธีมและแบรนด์ตามต้องการ และการสนับสนุนเฉพาะทาง", - "Upload": "อัปโหลด", - "Upload a GGUF model": "อัปโหลดโมเดล GGUF", - "Upload Audio": "อัปโหลดเสียง", - "Upload directory": "อัปโหลดไดเรกทอรี", - "Upload files": "อัปโหลดไฟล์", - "Upload Files": "อัปโหลดไฟล์", - "Upload Model": "อัปโหลดโมเดล", - "Upload Pipeline": "อัปโหลด Pipeline", - "Upload Progress": "ความคืบหน้าการอัปโหลด", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "ความคืบหน้าการอัปโหลด: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", - "URL": "URL", - "URL is required": "ต้องระบุ URL", - "URL Mode": "โหมด URL", - "Usage": "การใช้งาน", - "Use '#' in the prompt input to load and include your knowledge.": "ใช้ '#' ในการป้อน Prompt เพื่อโหลดและรวมความรู้ของคุณ", - "Use /v1/chat/completions endpoint instead of /v1/audio/transcriptions for potentially better accuracy.": "ใช้ Endpoint /v1/chat/completions แทน /v1/audio/transcriptions เพื่อความแม่นยำที่อาจดีขึ้น", - "Use Chat Completions API": "ใช้ API Chat Completions", - "Use groups to group your users and assign permissions.": "ใช้กลุ่มเพื่อจัดกลุ่มผู้ใช้และกำหนดสิทธิ์", - "Use LLM": "ใช้ LLM", - "Use no proxy to fetch page contents.": "ไม่ใช้พร็อกซีในการดึงเนื้อหาหน้าเว็บ", - "Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "ใช้พร็อกซีที่กำหนดโดยตัวแปรสภาพแวดล้อม http_proxy และ https_proxy เพื่อดึงเนื้อหาหน้าเว็บ", - "user": "ผู้ใช้", - "User": "ผู้ใช้", - "User Groups": "กลุ่มผู้ใช้", - "User location successfully retrieved.": "ดึงตำแหน่งที่ตั้งของผู้ใช้สำเร็จแล้ว", - "User menu": "เมนูผู้ใช้", - "User Webhooks": "Webhooks ของผู้ใช้", - "Username": "ชื่อผู้ใช้", - "Users": "ผู้ใช้", - "Uses DefaultAzureCredential to authenticate": "ใช้ DefaultAzureCredential เพื่อยืนยันตัวตน", - "Uses OAuth 2.1 Dynamic Client Registration": "ใช้ OAuth 2.1 การลงทะเบียนไคลเอนต์แบบไดนามิก", - "Using Entire Document": "ใช้เอกสารทั้งหมด", - "Using Focused Retrieval": "ใช้การดึงข้อมูลแบบโฟกัส", - "Using the default arena model with all models. Click the plus button to add custom models.": "ใช้โมเดล Arena ค่าเริ่มต้นกับโมเดลทั้งหมด คลิกปุ่มบวกเพื่อเพิ่มโมเดลที่กำหนดเอง", - "Valid time units:": "หน่วยเวลาที่ใช้ได้:", - "Validate certificate": "ตรวจสอบใบรับรอง", - "Valves": "วาล์ว", - "Valves updated": "วาล์วถูกอัปเดตแล้ว", - "Valves updated successfully": "อัปเดตวาล์วเรียบร้อยแล้ว", - "variable": "ตัวแปร", - "Verify Connection": "ตรวจสอบการเชื่อมต่อ", - "Verify SSL Certificate": "ตรวจสอบใบรับรอง SSL", - "Version": "เวอร์ชัน", - "Version {{selectedVersion}} of {{totalVersions}}": "เวอร์ชัน {{selectedVersion}} จาก {{totalVersions}}", - "View Replies": "ดูการตอบกลับ", - "View Result from **{{NAME}}**": "ดูผลลัพธ์จาก **{{NAME}}**", - "Visibility": "การมองเห็น", - "Vision": "Vision", - "vlm": "vlm", - "Voice": "เสียง", - "Voice Input": "การป้อนเสียง", - "Voice mode": "โหมดเสียง", - "Warning": "คำเตือน", - "Warning:": "คำเตือน:", - "Warning: Enabling this will allow users to upload arbitrary code on the server.": "คำเตือน: การเปิดใช้งานตัวเลือกนี้จะอนุญาตให้ผู้ใช้อัปโหลดโค้ดใดๆ บนเซิร์ฟเวอร์", - "Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "คำเตือน: การรัน Jupyter อนุญาตให้รันโค้ดใดๆ ก็ได้ ซึ่งก่อให้เกิดความเสี่ยงด้านความปลอดภัยอย่างร้ายแรง—โปรดดำเนินการด้วยความระมัดระวังอย่างยิ่ง", - "Web": "เว็บ", - "Web API": "เว็บ API", - "Web Loader Engine": "เอนจินโหลดเว็บ", - "Web Search": "การค้นหาเว็บ", - "Web Search Engine": "เครื่องมือค้นหาเว็บ", - "Web Search in Chat": "การค้นหาเว็บในการแชท", - "Web Search Query Generation": "การสร้างคำค้นหาเว็บ", - "Webhook URL": "URL ของ Webhook", - "Webpage URL": "URL หน้าเว็บ", - "WebUI Settings": "การตั้งค่า WebUI", - "WebUI URL": "URL ของ WebUI", - "WebUI will make requests to \"{{url}}\"": "WebUI จะส่งคำขอไปยัง \"{{url}}\"", - "WebUI will make requests to \"{{url}}/api/chat\"": "WebUI จะส่งคำขอไปที่ \"{{url}}/api/chat\"", - "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI จะส่งคำขอไปยัง \"{{url}}/chat/completions\"", - "What are you trying to achieve?": "คุณพยายามจะทำอะไร?", - "What are you working on?": "คุณกำลังทำอะไรอยู่?", - "What's New in": "มีอะไรใหม่ใน", - "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "เมื่อเปิดใช้งาน โมเดลจะตอบกลับแต่ละข้อความแชทแบบเรียลไทม์ โดยสร้างคำตอบทันทีที่ผู้ใช้ส่งข้อความ โหมดนี้มีประโยชน์สำหรับแอปแชทแบบสด แต่อาจส่งผลต่อประสิทธิภาพบนฮาร์ดแวร์ที่ทำงานช้า", - "wherever you are": "ไม่ว่าคุณจะอยู่ที่ไหน", - "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "ว่าจะแบ่งหน้าผลลัพธ์หรือไม่ แต่ละหน้าจะถูกแยกด้วยเส้นแบ่งแนวนอนและหมายเลขหน้า ค่าเริ่มต้นคือ False", - "Whisper (Local)": "Whisper (Local)", - "Why?": "ทำไม?", - "Widescreen Mode": "โหมดหน้าจอกว้าง", - "Width": "ความกว้าง", - "Won": "ชนะ", - "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "ทำงานร่วมกับ Top K ค่าที่สูงขึ้น (เช่น 0.95) จะนำไปสู่ข้อความที่หลากหลายมากขึ้น ในขณะที่ค่าที่ต่ำลง (เช่น 0.5) จะสร้างข้อความที่มุ่งเน้นและระมัดระวังมากขึ้น", - "Workspace": "พื้นที่ทำงาน", - "Workspace Permissions": "สิทธิ์ของพื้นที่ทำงาน", - "Write": "เขียน", - "Write a prompt suggestion (e.g. Who are you?)": "เขียนคำแนะนำพรอมต์ (เช่น คุณคือใคร?)", - "Write a summary in 50 words that summarizes {{topic}}.": "เขียนสรุป {{topic}} เป็นภาษาไทยให้ได้ 50 คำ", - "Write something...": "เขียนอะไรบางอย่าง...", - "Write your model system prompt content here\ne.g.) You are Mario from Super Mario Bros, acting as an assistant.": "เขียนเนื้อหา System Prompt ของโมเดลของคุณที่นี่\nเช่น: คุณคือมาริโอจาก Super Mario Bros และทำหน้าที่เป็นผู้ช่วย", - "Yacy Instance URL": "URL ของ Yacy Instance", - "Yacy Password": "รหัสผ่าน Yacy", - "Yacy Username": "ชื่อผู้ใช้ Yacy", - "Yesterday": "เมื่อวาน", - "Yesterday at {{LOCALIZED_TIME}}": "เมื่อวาน เวลา {{LOCALIZED_TIME}}", - "You": "คุณ", - "You are currently using a trial license. Please contact support to upgrade your license.": "คุณกำลังใช้สิทธิ์ใช้งานแบบทดลองอยู่ กรุณาติดต่อฝ่ายสนับสนุนเพื่ออัปเกรดสิทธิ์ใช้งานของคุณ", - "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "คุณสามารถแชทกับไฟล์ได้สูงสุด {{maxCount}} ไฟล์ในเวลาเดียวกัน", - "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "คุณสามารถปรับแต่งการโต้ตอบกับ LLM ของคุณได้โดยเพิ่มความจำผ่านปุ่ม ‘จัดการ’ ด้านล่าง เพื่อให้การใช้งานมีประโยชน์และเหมาะกับคุณมากยิ่งขึ้น", - "You cannot upload an empty file.": "คุณไม่สามารถอัปโหลดไฟล์เปล่าได้", - "You do not have permission to send messages in this channel.": "คุณไม่มีสิทธิ์ส่งข้อความในช่องทางนี้", - "You do not have permission to send messages in this thread.": "คุณไม่มีสิทธิ์ส่งข้อความในเธรดนี้", - "You do not have permission to upload files.": "คุณไม่มีสิทธิ์อัปโหลดไฟล์", - "You have no archived conversations.": "คุณไม่มีการสนทนาที่เก็บถาวร", - "You have shared this chat": "คุณได้แชร์แชทนี้แล้ว", - "You're a helpful assistant.": "คุณคือผู้ช่วยที่เป็นประโยชน์", - "You're now logged in.": "คุณเข้าสู่ระบบแล้ว", - "Your Account": "บัญชีของคุณ", - "Your account status is currently pending activation.": "สถานะบัญชีของคุณกำลังรอการเปิดใช้งาน", - "Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "การสนับสนุนทั้งหมดของคุณจะถูกส่งไปยังนักพัฒนาปลั๊กอินโดยตรง Open WebUI จะไม่หักส่วนแบ่งใดๆ อย่างไรก็ตาม แพลตฟอร์มการระดมทุนที่คุณเลือกอาจมีการเก็บค่าธรรมเนียมในส่วนของตนเอง", - "YouTube": "YouTube", - "Youtube Language": "ภาษาของ YouTube", - "Youtube Proxy URL": "URL พร็อกซี YouTube" + "-1 for no limit, or a positive integer for a specific limit": "-1 สำหรับไม่จำกัด หรือจำนวนเต็มบวกสำหรับจำกัดค่าเฉพาะ", + "'s', 'm', 'h', 'd', 'w' or '-1' for no expiration.": "'s', 'm', 'h', 'd', 'w' หรือ '-1' เพื่อไม่ให้หมดอายุ", + "(e.g. `sh webui.sh --api --api-auth username_password`)": "(เช่น `sh webui.sh --api --api-auth username_password`)", + "(e.g. `sh webui.sh --api`)": "(เช่น `sh webui.sh --api`)", + "(latest)": "(ล่าสุด)", + "(leave blank for to use commercial endpoint)": "(เว้นว่างไว้เพื่อใช้ endpoint เชิงพาณิชย์)", + "[Last] dddd [at] h:mm A": "[Last] dddd [เวลา] h:mm A", + "[Today at] h:mm A": "[วันนี้ เวลา] h:mm A", + "[Yesterday at] h:mm A": "[เมื่อวานเวลา] h:mm A", + "{{ models }}": "{{ models }}", + "{{COUNT}} Available Tools": "เครื่องมือที่ใช้ได้ {{COUNT}} รายการ", + "{{COUNT}} characters": "{{COUNT}} ตัวอักษร", + "{{COUNT}} extracted lines": "{{COUNT}} บรรทัดที่ดึงออกมา", + "{{COUNT}} hidden lines": "{{COUNT}} บรรทัดที่ซ่อนอยู่", + "{{COUNT}} Replies": "{{COUNT}} คำตอบ", + "{{COUNT}} Sources": "{{COUNT}} แหล่งที่มา", + "{{COUNT}} words": "{{COUNT}} คำ", + "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} เมื่อ {{LOCALIZED_TIME}}", + "{{model}} download has been canceled": "การดาวน์โหลด {{model}} ถูกยกเลิกแล้ว", + "{{user}}'s Chats": "การแชทของ {{user}}", + "{{webUIName}} Backend Required": "ต้องใช้ Backend ของ {{webUIName}}", + "*Prompt node ID(s) are required for image generation": "*ต้องระบุ ID ของ prompt node สำหรับการสร้างภาพ", + "1 Source": "1 แหล่งที่มา", + "A new version (v{{LATEST_VERSION}}) is now available.": "เวอร์ชันใหม่ (v{{LATEST_VERSION}}) พร้อมให้ใช้งานแล้ว", + "A task model is used when performing tasks such as generating titles for chats and web search queries": "Task Model จะถูกใช้เมื่อทำภารกิจต่างๆ เช่น การสร้างหัวข้อแชทและการค้นหาเว็บ", + "a user": "ผู้ใช้", + "About": "เกี่ยวกับ", + "Accept Autocomplete Generation\nJump to Prompt Variable": "ยอมรับการสร้างอัตโนมัติ\nข้ามไปยังตัวแปรพรอมต์", + "Access": "การเข้าถึง", + "Access Control": "การควบคุมการเข้าถึง", + "Accessible to all users": "เข้าถึงได้สำหรับผู้ใช้ทั้งหมด", + "Account": "บัญชี", + "Account Activation Pending": "การเปิดใช้งานบัญชีกำลังดำเนินการ", + "accurate": "ถูกต้อง", + "Accurate information": "ข้อมูลที่ถูกต้อง", + "Action": "การดำเนินการ", + "Action not found": "ไม่พบการดำเนินการ", + "Action Required for Chat Log Storage": "ต้องดำเนินการเพื่อจัดเก็บบันทึกการแชท", + "Actions": "การดำเนินการ", + "Activate": "เปิดใช้งาน", + "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "เปิดใช้งานคำสั่งนี้โดยพิมพ์ \"/{{COMMAND}}\" ในช่องแชท", + "Active": "กำลังใช้งาน", + "Active Users": "ผู้ใช้ที่ใช้งานอยู่", + "Add": "เพิ่ม", + "Add a model ID": "เพิ่ม ID โมเดล", + "Add a short description about what this model does": "เพิ่มคำอธิบายสั้นๆ เกี่ยวกับสิ่งที่โมเดลนี้ทำ", + "Add a tag": "เพิ่มแท็ก", + "Add Arena Model": "เพิ่มโมเดล Arena", + "Add Connection": "เพิ่มการเชื่อมต่อ", + "Add Content": "เพิ่มเนื้อหา", + "Add content here": "เพิ่มเนื้อหาตรงนี้", + "Add Custom Parameter": "เพิ่มพารามิเตอร์ที่กำหนดเอง", + "Add Custom Prompt": "เพิ่มพรอมต์ที่กำหนดเอง", + "Add Details": "เพิ่มรายละเอียด", + "Add Files": "เพิ่มไฟล์", + "Add Group": "เพิ่มกลุ่ม", + "Add Memory": "เพิ่มความจำ", + "Add Model": "เพิ่มโมเดล", + "Add Reaction": "เพิ่มรีแอคชัน", + "Add Tag": "เพิ่มแท็ก", + "Add Tags": "เพิ่มแท็ก", + "Add text content": "เพิ่มเนื้อหาข้อความ", + "Add User": "เพิ่มผู้ใช้", + "Add User Group": "เพิ่มกลุ่มผู้ใช้", + "Additional Config": "การกำหนดค่าเพิ่มเติม", + "Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "ตัวเลือกการกำหนดค่าเพิ่มเติมสำหรับ marker ควรเป็นสตริง JSON ที่มีคู่ key-value เช่น '{\"key\": \"value\"}' คีย์ที่รองรับได้แก่: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level", + "Additional Parameters": "พารามิเตอร์เพิ่มเติม", + "Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "", + "Adjusting these settings will apply changes universally to all users.": "การปรับการตั้งค่าเหล่านี้จะมีผลกับผู้ใช้ทุกคนทั่วทั้งระบบ", + "admin": "ผู้ดูแลระบบ", + "Admin": "ผู้ดูแลระบบ", + "Admin Panel": "แผงผู้ดูแลระบบ", + "Admin Settings": "การตั้งค่าผู้ดูแลระบบ", + "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "ผู้ดูแลระบบสามารถเข้าถึงเครื่องมือทั้งหมดได้ตลอดเวลา ส่วนผู้ใช้ต้องได้รับการกำหนดเครื่องมือต่อโมเดลในแต่ละพื้นที่ทำงาน", + "Advanced Parameters": "พารามิเตอร์ขั้นสูง", + "Advanced parameters for MinerU parsing (enable_ocr, enable_formula, enable_table, language, model_version, page_ranges)": "พารามิเตอร์ขั้นสูงสำหรับการแยกวิเคราะห์ MinerU (enable_ocr, enable_formula, enable_table, language, model_version, page_ranges)", + "Advanced Params": "พารามิเตอร์ขั้นสูง", + "After updating or changing the embedding model, you must reindex the knowledge base for the changes to take effect. You can do this using the \"Reindex\" button below.": "หลังจากอัปเดตหรือเปลี่ยนโมเดล Embedding คุณต้องสร้างดัชนีฐานความรู้ใหม่เพื่อให้การเปลี่ยนแปลงมีผล คุณสามารถทำได้โดยใช้ปุ่ม \"สร้างดัชนีใหม่\" ด้านล่าง", + "AI": "AI", + "All": "ทั้งหมด", + "All chats have been unarchived.": "ยกเลิกการเก็บถาวรการแชททั้งหมดแล้ว", + "All Documents": "เอกสารทั้งหมด", + "All models deleted successfully": "ลบโมเดลทั้งหมดเรียบร้อยแล้ว", + "Allow Call": "อนุญาตให้โทร", + "Allow Chat Controls": "อนุญาตการควบคุมแชท", + "Allow Chat Delete": "อนุญาตให้ลบแชท", + "Allow Chat Deletion": "อนุญาตให้ลบการสนทนา", + "Allow Chat Edit": "อนุญาตให้แก้ไขแชท", + "Allow Chat Export": "อนุญาตให้ส่งออกแชท", + "Allow Chat Params": "อนุญาตพารามิเตอร์แชท", + "Allow Chat Share": "อนุญาตให้แชร์แชท", + "Allow Chat System Prompt": "อนุญาต System Prompt สำหรับแชท", + "Allow Chat Valves": "อนุญาต Chat Valves", + "Allow Continue Response": "อนุญาตให้ตอบกลับต่อเนื่อง", + "Allow Delete Messages": "อนุญาตให้ลบข้อความ", + "Allow File Upload": "อนุญาตให้อัปโหลดไฟล์", + "Allow Group Sharing": "", + "Allow Multiple Models in Chat": "อนุญาตการใช้หลายโมเดลในการแชท", + "Allow non-local voices": "อนุญาตเสียงที่ไม่ใช่แบบ Local", + "Allow Rate Response": "อนุญาตให้ให้คะแนนคำตอบ", + "Allow Regenerate Response": "อนุญาตให้สร้างคำตอบใหม่", + "Allow Speech to Text": "อนุญาตให้แปลงเสียงเป็นข้อความ", + "Allow Temporary Chat": "อนุญาตการแชทชั่วคราว", + "Allow Text to Speech": "อนุญาตการแปลงข้อความเป็นเสียง", + "Allow User Location": "อนุญาตให้เข้าถึงตำแหน่งที่อยู่ของผู้ใช้", + "Allow Voice Interruption in Call": "อนุญาตให้ขัดจังหวะด้วยเสียงระหว่างสาย", + "Allowed Endpoints": "Endpoints ที่อนุญาต", + "Allowed File Extensions": "นามสกุลไฟล์ที่อนุญาต", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "นามสกุลไฟล์ที่อนุญาตให้อัปโหลด คั่นแต่ละนามสกุลด้วยเครื่องหมายจุลภาค เว้นว่างเพื่ออนุญาตไฟล์ทุกประเภท", + "Already have an account?": "มีบัญชีอยู่แล้ว?", + "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "ทางเลือกแทน top_p และมุ่งเน้นการสร้างสมดุลระหว่างคุณภาพและความหลากหลาย พารามิเตอร์ p แทนค่าความน่าจะเป็นต่ำสุดสำหรับโทเค็นที่จะถูกพิจารณา โดยอ้างอิงกับความน่าจะเป็นของโทเค็นที่มีโอกาสสูงที่สุด ตัวอย่างเช่น เมื่อ p=0.05 และโทเค็นที่มีโอกาสสูงที่สุดมีความน่าจะเป็น 0.9 logits ที่มีค่าน้อยกว่า 0.045 จะถูกกรองออก", + "Always": "เสมอ", + "Always Collapse Code Blocks": "ย่อบล็อกโค้ดเสมอ", + "Always Expand Details": "ขยายรายละเอียดเสมอ", + "Always Play Notification Sound": "เล่นเสียงแจ้งเตือนเสมอ", + "Amazing": "ยอดเยี่ยม", + "an assistant": "ผู้ช่วย", + "An error occurred while fetching the explanation": "เกิดข้อผิดพลาดขณะดึงคำอธิบาย", + "Analytics": "การวิเคราะห์", + "Analyzed": "วิเคราะห์แล้ว", + "Analyzing...": "กำลังวิเคราะห์...", + "and": "และ", + "and {{COUNT}} more": "และอีก {{COUNT}} รายการ", + "and create a new shared link.": "และสร้างลิงก์ที่แชร์ใหม่", + "Android": "Android", + "API": "API", + "API Base URL": "URL พื้นฐานของ API", + "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "URL พื้นฐานของ API สำหรับบริการ Datalab Marker ค่าเริ่มต้น: https://www.datalab.to/api/v1/marker", + "API details for using a vision-language model in the picture description. This parameter is mutually exclusive with picture_description_local.": "รายละเอียด API สำหรับใช้โมเดล Vision-language ในการอธิบายภาพ พารามิเตอร์นี้ไม่สามารถใช้พร้อมกับ picture_description_local ได้", + "API Key": "คีย์ API", + "API Key created.": "สร้างคีย์ API แล้ว", + "API Key Endpoint Restrictions": "ข้อจำกัด Endpoint ของ API Key", + "API keys": "คีย์ API", + "API Keys": "", + "API Mode": "โหมด API", + "API Version": "เวอร์ชัน API", + "API Version is required": "ต้องระบุเวอร์ชัน API", + "Application DN": "DN ของแอปพลิเคชัน", + "Application DN Password": "รหัสผ่าน DN ของแอปพลิเคชัน", + "applies to all users with the \"user\" role": "ใช้กับผู้ใช้ทั้งหมดที่มีบทบาท \"user\"", + "April": "เมษายน", + "Archive": "เก็บถาวร", + "Archive All Chats": "เก็บถาวรการแชททั้งหมด", + "Archived Chats": "แชทที่เก็บถาวร", + "archived-chat-export": "ส่งออกการแชทที่เก็บถาวร", + "Are you sure you want to clear all memories? This action cannot be undone.": "คุณแน่ใจหรือว่าต้องการล้างความจำทั้งหมด? การดำเนินการนี้ไม่สามารถยกเลิกได้", + "Are you sure you want to delete \"{{NAME}}\"?": "", + "Are you sure you want to delete this channel?": "คุณแน่ใจหรือว่าต้องการลบช่องนี้?", + "Are you sure you want to delete this message?": "คุณแน่ใจหรือว่าต้องการลบข้อความนี้?", + "Are you sure you want to unarchive all archived chats?": "คุณแน่ใจหรือว่าต้องการยกเลิกการเก็บถาวรแชททั้งหมด?", + "Are you sure?": "คุณแน่ใจหรือไม่?", + "Arena Models": "โมเดลใน Arena", + "Artifacts": "Artifacts", + "Ask": "ถาม", + "Ask a question": "ถามคำถาม", + "Assistant": "ผู้ช่วย", + "Attach File From Knowledge": "แนบไฟล์จากฐานความรู้", + "Attach Knowledge": "แนบฐานความรู้", + "Attach Notes": "แนบบันทึก", + "Attach Webpage": "แนบหน้าเว็บ", + "Attention to detail": "ใส่ใจในรายละเอียด", + "Attribute for Mail": "แอตทริบิวต์สำหรับอีเมล", + "Attribute for Username": "แอตทริบิวต์สำหรับชื่อผู้ใช้", + "Audio": "เสียง", + "August": "สิงหาคม", + "Auth": "การยืนยันตัวตน", + "Authenticate": "ยืนยันตัวตน", + "Authentication": "การยืนยันตัวตน", + "Auto": "อัตโนมัติ", + "Auto-Copy Response to Clipboard": "คัดลอกคำตอบไปยังคลิปบอร์ดโดยอัตโนมัติ", + "Auto-playback response": "การเล่นคำตอบอัตโนมัติ", + "Autocomplete Generation": "การเติมข้อความอัตโนมัติ", + "Autocomplete Generation Input Max Length": "ความยาวสูงสุดของอินพุตการสร้างข้อความอัตโนมัติ", + "Automatic1111": "Automatic1111", + "AUTOMATIC1111 Api Auth String": "สตริงการตรวจสอบสิทธิ์ API ของ AUTOMATIC1111", + "AUTOMATIC1111 Base URL": "URL พื้นฐานของ AUTOMATIC1111", + "AUTOMATIC1111 Base URL is required.": "จำเป็นต้องระบุ Base URL ของ AUTOMATIC1111", + "Available list": "รายการที่มีอยู่", + "Available Tools": "เครื่องมือที่มีให้ใช้", + "available users": "ผู้ใช้ที่มีอยู่", + "available!": "พร้อมใช้งาน!", + "Away": "ไม่อยู่", + "Awful": "แย่", + "Azure AI Speech": "Azure AI Speech", + "Azure OpenAI": "Azure OpenAI", + "Azure Region": "ภูมิภาค Azure", + "Back": "กลับ", + "Bad Response": "การตอบกลับไม่ถูกต้อง", + "Banners": "แบนเนอร์", + "Base Model (From)": "โมเดลพื้นฐาน (จาก)", + "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "การแคชรายการ Base Model ช่วยเร่งการเข้าถึงโดยดึงข้อมูลโมเดลเฉพาะตอนเริ่มต้นระบบหรือเมื่อบันทึกการตั้งค่า ซึ่งทำให้เร็วขึ้น แต่อาจไม่แสดงการเปลี่ยนแปลงโมเดลล่าสุด", + "Bearer": "Bearer", + "before": "ก่อน", + "Being lazy": "ขี้เกียจ", + "Beta": "เบต้า", + "Bing Search V7 Endpoint": "Endpoint ของ Bing Search V7", + "Bing Search V7 Subscription Key": "Subscription Key ของ Bing Search V7", + "Bio": "ประวัติส่วนตัว", + "Birth Date": "วันเกิด", + "BM25 Weight": "น้ำหนัก BM25", + "Bocha Search API Key": "API Key ของ Bocha Search", + "Bold": "ตัวหนา", + "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "เพิ่มหรือลดน้ำหนักโทเค็นเฉพาะสำหรับการตอบกลับที่มีข้อจำกัด ค่าไบแอสจะถูกจำกัดระหว่าง -100 ถึง 100 (รวม) (ค่าเริ่มต้น: ไม่มี)", + "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "ต้องระบุทั้ง Docling OCR Engine และภาษา หรือเว้นว่างทั้งสองอย่าง", + "Brave Search API Key": "คีย์ API ของ Brave Search", + "Bullet List": "รายการหัวข้อย่อย", + "Button ID": "ID ของปุ่ม", + "Button Label": "ป้ายชื่อปุ่ม", + "Button Prompt": "พรอมต์ของปุ่ม", + "By {{name}}": "โดย {{name}}", + "Bypass Embedding and Retrieval": "ข้าม Embedding และการค้นคืน", + "Bypass Web Loader": "ข้ามตัวโหลดเว็บไซต์", + "Cache Base Model List": "แคชรายการโมเดลพื้นฐาน", + "Calendar": "ปฏิทิน", + "Call": "โทร", + "Call feature is not supported when using Web STT engine": "ไม่รองรับฟีเจอร์การโทรเมื่อใช้เอนจิน Web STT", + "Camera": "กล้อง", + "Cancel": "ยกเลิก", + "Capabilities": "ความสามารถ", + "Capture": "จับภาพ", + "Capture Audio": "จับเสียง", + "Certificate Path": "เส้นทางใบรับรอง", + "Change Password": "เปลี่ยนรหัสผ่าน", + "Channel": "ช่องทาง", + "Channel deleted successfully": "ลบช่องสำเร็จแล้ว", + "Channel Name": "ชื่อช่องทาง", + "Channel name cannot be empty.": "ชื่อช่องไม่สามารถเว้นว่างได้", + "Channel updated successfully": "อัปเดตช่องสำเร็จแล้ว", + "Channels": "ช่องทาง", + "Character": "ตัวละคร", + "Character limit for autocomplete generation input": "ขีดจำกัดจำนวนอักขระสำหรับอินพุตการสร้างคำอัตโนมัติ", + "Chart new frontiers": "สำรวจพรมแดนใหม่", + "Chat": "แชท", + "Chat Background Image": "ภาพพื้นหลังแชท", + "Chat Bubble UI": "ส่วนติดต่อผู้ใช้แบบฟองแชท", + "Chat Controls": "การควบคุมแชท", + "Chat Conversation": "การสนทนาแชท", + "Chat direction": "ทิศทางแชท", + "Chat ID": "ID การแชท", + "Chat moved successfully": "ย้ายแชทสำเร็จแล้ว", + "Chat Overview": "ภาพรวมการแชท", + "Chat Permissions": "สิทธิ์การแชท", + "Chat Tags Auto-Generation": "การสร้างแท็กแชทอัตโนมัติ", + "Chats": "แชท", + "Check Again": "ตรวจสอบอีกครั้ง", + "Check for updates": "ตรวจสอบการอัปเดต", + "Checking for updates...": "กำลังตรวจสอบการอัปเดต...", + "Choose a model before saving...": "เลือกโมเดลก่อนบันทึก...", + "Chunk Overlap": "ส่วนซ้อนทับของ Chunk", + "Chunk Size": "ขนาด Chunk", + "Ciphers": "รหัสลับ", + "Citation": "การอ้างอิง", + "Citations": "การอ้างอิง", + "Clear memory": "ล้างความจำ", + "Clear Memory": "ล้างความจำ", + "click here": "คลิกที่นี่", + "Click here for filter guides.": "คลิกที่นี่เพื่อดูคู่มือการใช้ตัวกรอง", + "Click here for help.": "คลิกที่นี่เพื่อขอความช่วยเหลือ", + "Click here to": "คลิกที่นี่เพื่อ", + "Click here to download user import template file.": "คลิกที่นี่เพื่อดาวน์โหลดไฟล์แม่แบบนำเข้าผู้ใช้", + "Click here to learn more about faster-whisper and see the available models.": "คลิกที่นี่เพื่อเรียนรู้เพิ่มเติมเกี่ยวกับ faster-whisper และดูโมเดลที่มีให้ใช้", + "Click here to see available models.": "คลิกที่นี่เพื่อดูโมเดลที่มีให้ใช้", + "Click here to select": "คลิกที่นี่เพื่อเลือก", + "Click here to select a csv file.": "คลิกที่นี่เพื่อเลือกไฟล์ csv", + "Click here to select a py file.": "คลิกที่นี่เพื่อเลือกไฟล์ .py", + "Click here to upload a workflow.json file.": "คลิกที่นี่เพื่ออัปโหลดไฟล์ workflow.json", + "click here.": "คลิกที่นี่", + "Click on the user role button to change a user's role.": "คลิกที่ปุ่มสิทธิ์ผู้ใช้เพื่อเปลี่ยนสิทธิ์ของผู้ใช้", + "Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "การอนุญาตให้เขียนคลิปบอร์ดถูกปฏิเสธ โปรดตรวจสอบการตั้งค่าเบราว์เซอร์ของคุณเพื่อให้สิทธิ์ที่จำเป็น", + "Clone": "โคลน", + "Clone Chat": "โคลนแชท", + "Clone of {{TITLE}}": "โคลนของ {{TITLE}}", + "Close": "ปิด", + "Close Banner": "ปิดแบนเนอร์", + "Close Configure Connection Modal": "ปิดหน้าต่างตั้งค่าการเชื่อมต่อ", + "Close modal": "ปิดหน้าต่างโมดอล", + "Close Modal": "ปิดหน้าต่างโมดัล", + "Close settings modal": "ปิดหน้าต่างการตั้งค่า", + "Close Sidebar": "ปิดแถบด้านข้าง", + "cloud": "คลาวด์", + "CMU ARCTIC speaker embedding name": "ชื่อ Embedding ผู้พูด CMU ARCTIC", + "Code Block": "บล็อกโค้ด", + "Code Editor": "ตัวแก้ไขโค้ด", + "Code execution": "รันโค้ด", + "Code Execution": "การรันโค้ด", + "Code Execution Engine": "เอนจินรันโค้ด", + "Code Execution Timeout": "หมดเวลาในการรันโค้ด", + "Code formatted successfully": "จัดรูปแบบโค้ดสำเร็จแล้ว", + "Code Interpreter": "ตัวแปลโค้ด", + "Code Interpreter Engine": "เอนจิน Code Interpreter", + "Code Interpreter Prompt Template": "เทมเพลตพรอมต์สำหรับ Code Interpreter", + "Collapse": "ยุบ", + "Collection": "คอลเลกชัน", + "Color": "สี", + "ComfyUI": "ComfyUI", + "ComfyUI API Key": "API Key ของ ComfyUI", + "ComfyUI Base URL": "URL ฐานของ ComfyUI", + "ComfyUI Base URL is required.": "จำเป็นต้องระบุ Base URL ของ ComfyUI", + "ComfyUI Workflow": "เวิร์กโฟลว์ ComfyUI", + "ComfyUI Workflow Nodes": "โหนดเวิร์กโฟลว์ ComfyUI", + "Comma separated Node Ids (e.g. 1 or 1,2)": "ID โหนดคั่นด้วยจุลภาค (เช่น 1 หรือ 1,2)", + "Command": "คำสั่ง", + "Comment": "ความคิดเห็น", + "Completions": "การเติมข้อความ", + "Compress Images in Channels": "บีบอัดรูปภาพในช่อง", + "Concurrent Requests": "คำขอพร้อมกัน", + "Config imported successfully": "นำเข้าไฟล์กำหนดค่าสำเร็จแล้ว", + "Configure": "กำหนดค่า", + "Confirm": "ยืนยัน", + "Confirm Password": "ยืนยันรหัสผ่าน", + "Confirm your action": "ยืนยันการดำเนินการของคุณ", + "Confirm your new password": "ยืนยันรหัสผ่านใหม่ของคุณ", + "Confirm Your Password": "ยืนยันรหัสผ่านของคุณ", + "Connect to your own OpenAI compatible API endpoints.": "เชื่อมต่อกับ API Endpoint ที่เข้ากันได้กับ OpenAI ของคุณเอง", + "Connect to your own OpenAPI compatible external tool servers.": "เชื่อมต่อกับเซิร์ฟเวอร์เครื่องมือภายนอกของคุณที่รองรับ OpenAPI", + "Connection failed": "การเชื่อมต่อล้มเหลว", + "Connection successful": "เชื่อมต่อสำเร็จ", + "Connection Type": "ประเภทการเชื่อมต่อ", + "Connections": "การเชื่อมต่อ", + "Connections saved successfully": "บันทึกการเชื่อมต่อสำเร็จแล้ว", + "Connections settings updated": "อัปเดตการตั้งค่าการเชื่อมต่อแล้ว", + "Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort.": "จำกัดระดับความพยายามในการให้เหตุผลสำหรับโมเดลที่ใช้การให้เหตุผล ใช้ได้เฉพาะกับโมเดลให้เหตุผลจากผู้ให้บริการบางรายที่รองรับการกำหนดระดับความพยายามในการให้เหตุผล", + "Contact Admin for WebUI Access": "ติดต่อผู้ดูแลระบบเพื่อขอสิทธิ์เข้าใช้ WebUI", + "Content": "เนื้อหา", + "Content Extraction Engine": "เอนจินดึงเนื้อหา", + "Continue Response": "ตอบต่อ", + "Continue with {{provider}}": "ดำเนินการต่อด้วย {{provider}}", + "Continue with Email": "ดำเนินการต่อด้วยอีเมล", + "Continue with LDAP": "ดำเนินการต่อด้วย LDAP", + "Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "ควบคุมวิธีการแบ่งข้อความสำหรับคำขอ TTS โดย 'เครื่องหมายวรรคตอน' จะแบ่งเป็นประโยค 'ย่อหน้า' จะแบ่งเป็นย่อหน้า และ 'ไม่แบ่ง' จะเก็บข้อความไว้เป็นสตริงเดียว", + "Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "ควบคุมการซ้ำของลำดับโทเค็นในข้อความที่สร้างขึ้น ค่ายิ่งสูง (เช่น 1.5) จะลงโทษการซ้ำหนักขึ้น ในขณะที่ค่ายิ่งต่ำ (เช่น 1.1) จะผ่อนปรนมากกว่า ที่ค่า 1 จะปิดการทำงาน", + "Controls": "การควบคุม", + "Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "ควบคุมสมดุลระหว่างความสอดคล้องและความหลากหลายของผลลัพธ์ ค่าในระดับต่ำจะทำให้ข้อความมีจุดเน้นชัดเจนและเชื่อมโยงกันมากขึ้น", + "Conversation saved successfully": "บันทึกการสนทนาสำเร็จแล้ว", + "Copied": "คัดลอกแล้ว", + "Copied link to clipboard": "คัดลอกลิงก์ไปยังคลิปบอร์ดแล้ว", + "Copied shared chat URL to clipboard!": "คัดลอก URL แชทที่แชร์ไปยังคลิปบอร์ดแล้ว!", + "Copied to clipboard": "คัดลอกไปยังคลิปบอร์ดแล้ว", + "Copy": "คัดลอก", + "Copy Formatted Text": "คัดลอกข้อความที่จัดรูปแบบแล้ว", + "Copy Last Code Block": "คัดลอกโค้ดบล็อกสุดท้าย", + "Copy Last Response": "คัดลอกคำตอบล่าสุด", + "Copy link": "คัดลอกลิงก์", + "Copy Link": "คัดลอกลิงก์", + "Copy to clipboard": "คัดลอกไปยังคลิปบอร์ด", + "Copying to clipboard was successful!": "คัดลอกไปยังคลิปบอร์ดสำเร็จแล้ว!", + "CORS must be properly configured by the provider to allow requests from Open WebUI.": "ผู้ให้บริการต้องกำหนดค่า CORS ให้ถูกต้องเพื่ออนุญาตคำขอจาก Open WebUI", + "Create": "สร้าง", + "Create a knowledge base": "สร้างฐานความรู้", + "Create a model": "สร้างโมเดล", + "Create a new note": "สร้างบันทึกใหม่", + "Create Account": "สร้างบัญชี", + "Create Admin Account": "สร้างบัญชีผู้ดูแลระบบ", + "Create Channel": "สร้างช่องทาง", + "Create Folder": "สร้างโฟลเดอร์", + "Create Group": "สร้างกลุ่ม", + "Create Image": "สร้างรูปภาพ", + "Create Knowledge": "สร้างฐานความรู้", + "Create Model": "สร้างโมเดล", + "Create new key": "สร้างคีย์ใหม่", + "Create new secret key": "สร้างคีย์ลับใหม่", + "Create Note": "สร้างบันทึก", + "Create your first note by clicking on the plus button below.": "สร้างบันทึกแรกของคุณโดยคลิกที่ปุ่มบวกด้านล่าง", + "Created at": "สร้างเมื่อ", + "Created At": "สร้างเมื่อ", + "Created by": "สร้างโดย", + "Created by you": "สร้างโดยคุณ", + "CSV Import": "นำเข้า CSV", + "Ctrl+Enter to Send": "Ctrl+Enter เพื่อส่ง", + "Current Model": "โมเดลปัจจุบัน", + "Current Password": "รหัสผ่านปัจจุบัน", + "Custom": "กำหนดเอง", + "Custom description enabled": "เปิดใช้งานคำอธิบายแบบกำหนดเอง", + "Custom Parameter Name": "ชื่อพารามิเตอร์แบบกำหนดเอง", + "Custom Parameter Value": "ค่าพารามิเตอร์กำหนดเอง", + "Danger Zone": "เขตอันตราย", + "Dark": "มืด", + "Data Controls": "การควบคุมข้อมูล", + "Database": "ฐานข้อมูล", + "Datalab Marker API": "Datalab Marker API", + "DD/MM/YYYY": "DD/MM/YYYY", + "December": "ธันวาคม", + "Decrease UI Scale": "", + "Deepgram": "Deepgram", + "Default": "ค่าเริ่มต้น", + "Default (Open AI)": "ค่าเริ่มต้น (OpenAI)", + "Default (SentenceTransformers)": "ค่าเริ่มต้น (SentenceTransformers)", + "Default action buttons will be used.": "จะใช้ปุ่มการทำงานเริ่มต้น", + "Default description enabled": "เปิดใช้งานคำอธิบายเริ่มต้น", + "Default Features": "ฟีเจอร์เริ่มต้น", + "Default Filters": "ตัวกรองเริ่มต้น", + "Default Group": "", + "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "โหมดเริ่มต้นทำงานร่วมกับโมเดลได้หลากหลายกว่า โดยเรียกใช้เครื่องมือหนึ่งครั้งก่อนการรันคำสั่ง ส่วนโหมด Native จะใช้ความสามารถในการเรียกใช้เครื่องมือที่มีอยู่ในตัวโมเดล แต่ต้องอาศัยว่าโมเดลรองรับฟีเจอร์นี้ในตัวอยู่แล้ว", + "Default Model": "โมเดลค่าเริ่มต้น", + "Default model updated": "อัปเดตโมเดลค่าเริ่มต้นแล้ว", + "Default Models": "โมเดลเริ่มต้น", + "Default permissions": "สิทธิ์เริ่มต้น", + "Default permissions updated successfully": "อัปเดตการอนุญาตเริ่มต้นสำเร็จแล้ว", + "Default Pinned Models": "", + "Default Prompt Suggestions": "คำแนะนำพรอมต์เริ่มต้น", + "Default to 389 or 636 if TLS is enabled": "ค่าเริ่มต้นเป็น 389 หรือ 636 หากเปิดใช้งาน TLS", + "Default to ALL": "ค่าเริ่มต้นเป็นทั้งหมด", + "Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "กำหนดค่าเริ่มต้นให้ใช้การดึงข้อมูลแบบแบ่งส่วนเพื่อการดึงเนื้อหาที่มีโฟกัสและเกี่ยวข้อง แนะนำให้ใช้ตัวเลือกนี้ในกรณีส่วนใหญ่", + "Default User Role": "บทบาทผู้ใช้เริ่มต้น", + "Delete": "ลบ", + "Delete a model": "ลบโมเดล", + "Delete All Chats": "ลบการแชททั้งหมด", + "Delete all contents inside this folder": "", + "Delete All Models": "ลบโมเดลทั้งหมด", + "Delete Chat": "ลบแชท", + "Delete chat?": "ลบแชท?", + "Delete folder?": "ลบโฟลเดอร์ใช่หรือไม่?", + "Delete function?": "ลบฟังก์ชัน?", + "Delete Message": "ลบข้อความ", + "Delete message?": "ลบข้อความใช่หรือไม่?", + "Delete Model": "ลบโมเดล", + "Delete note?": "ลบบันทึกหรือไม่?", + "Delete prompt?": "ลบพรอมต์?", + "delete this link": "ลบลิงก์นี้", + "Delete tool?": "ลบเครื่องมือ?", + "Delete User": "ลบผู้ใช้", + "Deleted {{deleteModelTag}}": "ลบ {{deleteModelTag}}", + "Deleted {{name}}": "ลบแล้ว {{name}}", + "Deleted User": "ผู้ใช้ที่ถูกลบ", + "Deployment names are required for Azure OpenAI": "ต้องระบุชื่อการปรับใช้สำหรับ Azure OpenAI", + "Describe Pictures in Documents": "อธิบายรูปภาพในเอกสาร", + "Describe your knowledge base and objectives": "อธิบายฐานความรู้และวัตถุประสงค์ของคุณ", + "Description": "คำอธิบาย", + "Detect Artifacts Automatically": "ตรวจจับ Artifacts โดยอัตโนมัติ", + "Dictate": "การเขียนตามคำบอก", + "Didn't fully follow instructions": "ไม่ได้ทำตามคำแนะนำทั้งหมด", + "Direct": "โดยตรง", + "Direct Connections": "การเชื่อมต่อโดยตรง", + "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Direct Connections อนุญาตให้ผู้ใช้เชื่อมต่อกับปลายทาง API ที่เข้ากันได้กับ OpenAI ของตนเอง", + "Direct Tool Servers": "เซิร์ฟเวอร์เครื่องมือโดยตรง", + "Directory selection was cancelled": "การเลือกไดเรกทอรีถูกยกเลิก", + "Disable Code Interpreter": "ปิดใช้งาน Code Interpreter", + "Disable Image Extraction": "ปิดใช้งานการแยกรูปภาพ", + "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "ปิดใช้งานการดึงรูปภาพจากไฟล์ PDF หากเปิดใช้ Use LLM รูปภาพจะถูกสร้างคำบรรยายให้โดยอัตโนมัติ ค่าเริ่มต้นคือ False", + "Disabled": "ปิดใช้งาน", + "Discover a function": "ค้นพบฟังก์ชัน", + "Discover a model": "ค้นพบโมเดล", + "Discover a prompt": "ค้นพบพรอมต์", + "Discover a tool": "ค้นพบเครื่องมือ", + "Discover how to use Open WebUI and seek support from the community.": "เรียนรู้วิธีใช้ Open WebUI และขอความช่วยเหลือจากชุมชน", + "Discover wonders": "ค้นพบสิ่งมหัศจรรย์", + "Discover, download, and explore custom functions": "ค้นหา ดาวน์โหลด และสำรวจฟังก์ชันที่กำหนดเอง", + "Discover, download, and explore custom prompts": "ค้นหา ดาวน์โหลด และสำรวจพรอมต์ที่กำหนดเอง", + "Discover, download, and explore custom tools": "ค้นหา ดาวน์โหลด และสำรวจเครื่องมือที่กำหนดเอง", + "Discover, download, and explore model presets": "ค้นหา ดาวน์โหลด และสำรวจพรีเซ็ตโมเดล", + "Display": "การแสดงผล", + "Display chat title in tab": "แสดงชื่อแชทในแท็บ", + "Display Emoji in Call": "แสดงอิโมจิระหว่างการโทร", + "Display Multi-model Responses in Tabs": "แสดงคำตอบหลายโมเดลแบบแท็บ", + "Display the username instead of You in the Chat": "แสดงชื่อผู้ใช้แทนคำว่า \"คุณ\" ในการแชท", + "Displays citations in the response": "แสดงการอ้างอิงในคำตอบ", + "Displays status updates (e.g., web search progress) in the response": "แสดงการอัปเดตสถานะ (เช่น ความคืบหน้าการค้นเว็บ) ภายในคำตอบ", + "Dive into knowledge": "เจาะลึกสู่ความรู้", + "dlparse_v1": "dlparse_v1", + "dlparse_v2": "dlparse_v2", + "dlparse_v4": "dlparse_v4", + "Do not install functions from sources you do not fully trust.": "อย่าติดตั้งฟังก์ชันจากแหล่งที่คุณไม่ไว้วางใจอย่างเต็มที่", + "Do not install tools from sources you do not fully trust.": "อย่าติดตั้งเครื่องมือจากแหล่งที่คุณไม่ไว้วางใจอย่างเต็มที่", + "Docling": "Docling", + "Docling Parameters": "", + "Docling Server URL required.": "ต้องระบุ Docling Server URL", + "Document": "เอกสาร", + "Document Intelligence": "เอกสารอัจฉริยะ", + "Document Intelligence endpoint required.": "ต้องระบุ Endpoint ของ Document Intelligence", + "Documentation": "เอกสารประกอบ", + "Documents": "เอกสาร", + "does not make any external connections, and your data stays securely on your locally hosted server.": "ไม่เชื่อมต่อกับภายนอกใดๆ และข้อมูลของคุณจะถูกเก็บไว้อย่างปลอดภัยบนเซิร์ฟเวอร์ภายในเครื่องของคุณ", + "Domain Filter List": "รายการตัวกรองโดเมน", + "don't fetch random pipelines from sources you don't trust.": "อย่าดึง Pipeline แบบสุ่มจากแหล่งที่ไม่น่าเชื่อถือ", + "Don't have an account?": "ยังไม่มีบัญชี?", + "don't install random functions from sources you don't trust.": "อย่าติดตั้งฟังก์ชันจากแหล่งที่คุณไม่ไว้วางใจ", + "don't install random tools from sources you don't trust.": "อย่าติดตั้งเครื่องมือจากแหล่งที่คุณไม่ไว้วางใจ", + "Don't like the style": "ไม่ชอบสไตล์นี้", + "Done": "เสร็จสิ้น", + "Download": "ดาวน์โหลด", + "Download & Delete": "ดาวน์โหลดและลบ", + "Download as SVG": "ดาวน์โหลดเป็น SVG", + "Download canceled": "ยกเลิกการดาวน์โหลด", + "Download Database": "ดาวน์โหลดฐานข้อมูล", + "Drag and drop a file to upload or select a file to view": "ลากและวางไฟล์เพื่ออัปโหลด หรือเลือกไฟล์เพื่อดู", + "Draw": "วาด", + "Drop any files here to upload": "วางไฟล์ที่นี่เพื่ออัปโหลด", + "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "เช่น '30s', '10m' หน่วยเวลาที่ใช้ได้คือ 's', 'm', 'h'", + "e.g. \"json\" or a JSON schema": "เช่น \"json\" หรือสคีมา JSON", + "e.g. 60": "เช่น 60", + "e.g. A filter to remove profanity from text": "เช่น ตัวกรองเพื่อลบคำหยาบออกจากข้อความ", + "e.g. en": "เช่น en", + "e.g. My Filter": "เช่น My Filter", + "e.g. My Tools": "เช่น My Tools", + "e.g. my_filter": "เช่น my_filter", + "e.g. my_tools": "เช่น my_tools", + "e.g. pdf, docx, txt": "เช่น pdf, docx, txt", + "e.g. Tools for performing various operations": "เช่น เครื่องมือสำหรับดำเนินการปฏิบัติการต่างๆ", + "e.g., 3, 4, 5 (leave blank for default)": "เช่น 3, 4, 5 (เว้นว่างเพื่อใช้ค่าเริ่มต้น)", + "e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "เช่น audio/wav,audio/mpeg,video/* (เว้นว่างไว้เพื่อใช้ค่าเริ่มต้น)", + "e.g., en-US,ja-JP (leave blank for auto-detect)": "เช่น en-US,ja-JP (เว้นว่างเพื่อให้ตรวจจับอัตโนมัติ)", + "e.g., westus (leave blank for eastus)": "เช่น westus (เว้นว่างไว้สำหรับ eastus)", + "Edit": "แก้ไข", + "Edit Arena Model": "แก้ไขโมเดล Arena", + "Edit Channel": "แก้ไขช่องทาง", + "Edit Connection": "แก้ไขการเชื่อมต่อ", + "Edit Default Permissions": "แก้ไขสิทธิ์เริ่มต้น", + "Edit Folder": "แก้ไขโฟลเดอร์", + "Edit Image": "แก้ไขรูปภาพ", + "Edit Last Message": "แก้ไขข้อความล่าสุด", + "Edit Memory": "แก้ไขความจำ", + "Edit User": "แก้ไขผู้ใช้", + "Edit User Group": "แก้ไขกลุ่มผู้ใช้", + "Edit workflow.json content": "แก้ไขเนื้อหา workflow.json", + "edited": "แก้ไขแล้ว", + "Edited": "แก้ไขแล้ว", + "Editing": "กำลังแก้ไข", + "Eject": "เอาออก", + "ElevenLabs": "ElevenLabs", + "Email": "อีเมล", + "Embark on adventures": "ออกผจญภัย", + "Embedding": "Embedding", + "Embedding Batch Size": "ขนาดชุดของ Embedding", + "Embedding Model": "โมเดล Embedding", + "Embedding Model Engine": "เอ็นจินโมเดล Embedding", + "Embedding model set to \"{{embedding_model}}\"": "ตั้งค่าโมเดล Embedding เป็น \"{{embedding_model}}\"", + "Enable API Keys": "", + "Enable autocomplete generation for chat messages": "เปิดใช้งานการเติมข้อความอัตโนมัติสำหรับข้อความแชท", + "Enable Code Execution": "เปิดใช้งานการรันโค้ด", + "Enable Code Interpreter": "เปิดใช้งาน Code Interpreter", + "Enable Community Sharing": "เปิดใช้งานการแชร์ในชุมชน", + "Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "เปิดใช้ Memory Locking (mlock) เพื่อป้องกันไม่ให้ข้อมูลโมเดลถูก Swap ออกจาก RAM ตัวเลือกนี้จะล็อกชุด Pages ที่โมเดลกำลังใช้งานให้อยู่ใน RAM ทำให้ไม่ถูก Swap ออกไปยังดิสก์ ซึ่งช่วยรักษาประสิทธิภาพด้วยการหลีกเลี่ยง Page Fault และทำให้เข้าถึงข้อมูลได้อย่างรวดเร็ว", + "Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "เปิดใช้ Memory Mapping (mmap) เพื่อโหลดข้อมูลโมเดล ตัวเลือกนี้จะทำให้ระบบสามารถใช้พื้นที่ดิสก์เป็นส่วนขยายของ RAM โดยมองไฟล์บนดิสก์เสมือนว่าอยู่ใน RAM ซึ่งอาจช่วยเพิ่มประสิทธิภาพของโมเดลโดยทำให้เข้าถึงข้อมูลได้เร็วขึ้น อย่างไรก็ตาม อาจทำงานไม่ถูกต้องกับทุกระบบและอาจใช้พื้นที่ดิสก์ในปริมาณมาก", + "Enable Message Rating": "เปิดใช้งานการให้คะแนนข้อความ", + "Enable Mirostat sampling for controlling perplexity.": "เปิดใช้การสุ่มตัวอย่างแบบ Mirostat เพื่อควบคุม Perplexity", + "Enable New Sign Ups": "เปิดใช้งานการสมัครใหม่", + "Enable, disable, or customize the reasoning tags used by the model. \"Enabled\" uses default tags, \"Disabled\" turns off reasoning tags, and \"Custom\" lets you specify your own start and end tags.": "เปิดใช้งาน ปิดใช้งาน หรือปรับแต่ง Reasoning Tag ที่โมเดลใช้ได้ \"เปิดใช้งาน\" จะใช้แท็กเริ่มต้น \"ปิดใช้งาน\" จะปิด Reasoning Tag และ \"กำหนดเอง\" จะให้คุณระบุแท็กเริ่มต้นและสิ้นสุดของคุณเอง", + "Enabled": "เปิดใช้งาน", + "End Tag": "แท็กปิด", + "Endpoint URL": "Endpoint URL", + "Enforce Temporary Chat": "บังคับใช้แชทชั่วคราว", + "Enhance": "เพิ่มประสิทธิภาพ", + "Enrich Hybrid Search Text": "", + "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ตรวจสอบว่าไฟล์ CSV ของคุณมี 4 คอลัมน์ในลำดับนี้: ชื่อ, อีเมล, รหัสผ่าน, บทบาท", + "Enter {{role}} message here": "ระบุข้อความของ {{role}} ที่นี่", + "Enter a detail about yourself for your LLMs to recall": "ระบุรายละเอียดเกี่ยวกับตัวคุณเพื่อให้ LLM ของคุณจดจำ", + "Enter a title for the pending user info overlay. Leave empty for default.": "ป้อนชื่อสำหรับหน้าซ้อนข้อมูลผู้ใช้ที่กำลังรออยู่ เว้นว่างไว้เพื่อใช้ค่าเริ่มต้น", + "Enter a watermark for the response. Leave empty for none.": "ป้อนลายน้ำสำหรับคำตอบ เว้นว่างหากไม่ต้องการ", + "Enter additional headers in JSON format": "ป้อน Headers เพิ่มเติมในรูปแบบ JSON", + "Enter additional headers in JSON format (e.g. {\"X-Custom-Header\": \"value\"}": "", + "Enter additional parameters in JSON format": "ป้อนพารามิเตอร์เพิ่มเติมในรูปแบบ JSON", + "Enter api auth string (e.g. username:password)": "ใส่สตริงการยืนยันตัวตน API (เช่น username:password)", + "Enter Application DN": "ป้อน DN ของแอปพลิเคชัน", + "Enter Application DN Password": "ป้อนรหัสผ่าน DN ของแอปพลิเคชัน", + "Enter Bing Search V7 Endpoint": "ป้อน Bing Search V7 Endpoint", + "Enter Bing Search V7 Subscription Key": "ป้อน Subscription Key ของ Bing Search V7", + "Enter Bocha Search API Key": "ใส่คีย์ Bocha Search API", + "Enter Brave Search API Key": "ใส่ API Key ของ Brave Search", + "Enter certificate path": "ป้อนพาธใบรับรอง", + "Enter Chunk Overlap": "ป้อนค่า Chunk Overlap", + "Enter Chunk Size": "ใส่ขนาด Chunk", + "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "ป้อนคู่ \"token:bias_value\" ที่คั่นด้วยจุลภาค (ตัวอย่าง: 5432:100, 413:-100)", + "Enter Config in JSON format": "ป้อนค่า Config ในรูปแบบ JSON", + "Enter content for the pending user info overlay. Leave empty for default.": "ป้อนเนื้อหาสำหรับ Overlay ข้อมูลผู้ใช้ที่กำลังรออยู่ เว้นว่างไว้เพื่อใช้ค่าเริ่มต้น", + "Enter coordinates (e.g. 51.505, -0.09)": "ป้อนพิกัด (เช่น 51.505, -0.09)", + "Enter Datalab Marker API Base URL": "ใส่ API Base URL ของ Datalab Marker", + "Enter Datalab Marker API Key": "ใส่ Datalab Marker API Key", + "Enter description": "ป้อนคำอธิบาย", + "Enter Docling OCR Engine": "ระบุเอนจิน Docling OCR", + "Enter Docling OCR Language(s)": "ป้อนภาษาสำหรับ Docling OCR", + "Enter Docling Server URL": "ป้อน URL ของเซิร์ฟเวอร์ Docling", + "Enter Document Intelligence Endpoint": "ป้อน Endpoint ของ Document Intelligence", + "Enter Document Intelligence Key": "ป้อนคีย์ Document Intelligence", + "Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "", + "Enter Exa API Key": "ใส่ Exa API Key", + "Enter External Document Loader API Key": "ป้อน API Key ของ External Document Loader", + "Enter External Document Loader URL": "ใส่ URL ของ External Document Loader", + "Enter External Web Loader API Key": "ใส่ API Key ของ External Web Loader", + "Enter External Web Loader URL": "ใส่ URL ของ External Web Loader", + "Enter External Web Search API Key": "ใส่คีย์ API การค้นหาเว็บภายนอก", + "Enter External Web Search URL": "ป้อน URL สำหรับค้นเว็บภายนอก", + "Enter Firecrawl API Base URL": "ใส่ Firecrawl API Base URL", + "Enter Firecrawl API Key": "ใส่ Firecrawl API Key", + "Enter folder name": "ป้อนชื่อโฟลเดอร์", + "Enter Github Raw URL": "ป้อน URL Raw ของ GitHub", + "Enter Google PSE API Key": "ใส่ API Key ของ Google PSE", + "Enter Google PSE Engine Id": "ป้อน Google PSE Engine ID", + "Enter hex color (e.g. #FF0000)": "ป้อนสีในรูปแบบ Hex (เช่น #FF0000)", + "Enter ID": "ใส่ ID", + "Enter Image Size (e.g. 512x512)": "ใส่ขนาดภาพ (เช่น 512x512)", + "Enter Jina API Key": "ป้อน Jina API Key", + "Enter JSON config (e.g., {\"disable_links\": true})": "ป้อนการตั้งค่า JSON (เช่น {\"disable_links\": true})", + "Enter Jupyter Password": "ป้อนรหัสผ่าน Jupyter", + "Enter Jupyter Token": "ป้อน Jupyter Token", + "Enter Jupyter URL": "ป้อน Jupyter URL", + "Enter Kagi Search API Key": "ใส่ Kagi Search API Key", + "Enter Key Behavior": "การทำงานของปุ่ม Enter", + "Enter language codes": "ใส่รหัสภาษา", + "Enter MinerU API Key": "ใส่ MinerU API Key", + "Enter Mistral API Base URL": "ป้อน URL ฐานของ Mistral API", + "Enter Mistral API Key": "กรอก API Key ของ Mistral", + "Enter Model ID": "ป้อน ID โมเดล", + "Enter model tag (e.g. {{modelTag}})": "ใส่แท็กโมเดล (เช่น {{modelTag}})", + "Enter Mojeek Search API Key": "กรอก Mojeek Search API Key", + "Enter name": "ป้อนชื่อ", + "Enter New Password": "ป้อนรหัสผ่านใหม่", + "Enter Number of Steps (e.g. 50)": "ใส่จำนวนขั้นตอน (เช่น 50)", + "Enter Ollama Cloud API Key": "ใส่ Ollama Cloud API Key", + "Enter Perplexity API Key": "ใส่ Perplexity API Key", + "Enter Perplexity Search API URL": "", + "Enter Playwright Timeout": "ป้อนเวลา Timeout ของ Playwright", + "Enter Playwright WebSocket URL": "ใส่ URL WebSocket ของ Playwright", + "Enter proxy URL (e.g. https://user:password@host:port)": "ป้อน URL พร็อกซี (เช่น https://user:password@host:port)", + "Enter reasoning effort": "ป้อนระดับการใช้เหตุผล", + "Enter Score": "ใส่คะแนน", + "Enter SearchApi API Key": "ป้อน API Key ของ SearchApi", + "Enter SearchApi Engine": "ป้อน SearchApi Engine", + "Enter Searxng Query URL": "ใส่ URL คำค้นหาของ Searxng", + "Enter Seed": "ป้อนค่า Seed", + "Enter SerpApi API Key": "กรอก SerpApi API Key", + "Enter SerpApi Engine": "ป้อนเอนจิน SerpApi", + "Enter Serper API Key": "ใส่ API Key ของ Serper", + "Enter Serply API Key": "ใส่ API Key ของ Serply", + "Enter Serpstack API Key": "ใส่ API Key ของ Serpstack", + "Enter server host": "ป้อนโฮสต์ของเซิร์ฟเวอร์", + "Enter server label": "ป้อนป้ายชื่อเซิร์ฟเวอร์", + "Enter server port": "ป้อนพอร์ตเซิร์ฟเวอร์", + "Enter Sougou Search API sID": "ป้อน Sougou Search API sID", + "Enter Sougou Search API SK": "ป้อนคีย์ Sougou Search API SK", + "Enter stop sequence": "ป้อนลำดับการหยุด", + "Enter system prompt": "ใส่ System Prompt", + "Enter system prompt here": "ป้อน System Prompt ที่นี่", + "Enter Tavily API Key": "ใส่ API Key ของ Tavily", + "Enter Tavily Extract Depth": "ป้อนระดับความลึกของ Tavily Extract", + "Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "ป้อน URL สาธารณะของ WebUI ของคุณ URL นี้จะใช้ในการสร้างลิงก์ในการแจ้งเตือน", + "Enter the URL of the function to import": "ป้อน URL ของฟังก์ชันที่จะนำเข้า", + "Enter the URL to import": "ป้อน URL ที่ต้องการนำเข้า", + "Enter Tika Server URL": "ใส่ URL เซิร์ฟเวอร์ของ Tika", + "Enter timeout in seconds": "ป้อนเวลา Timeout เป็นวินาที", + "Enter to Send": "กด Enter เพื่อส่ง", + "Enter Top K": "ใส่ค่า Top K", + "Enter Top K Reranker": "ป้อนค่า Top K ของ Reranker", + "Enter URL (e.g. http://127.0.0.1:7860/)": "ใส่ URL (เช่น http://127.0.0.1:7860/)", + "Enter URL (e.g. http://localhost:11434)": "ใส่ URL (เช่น http://localhost:11434)", + "Enter value": "ป้อนค่า", + "Enter value (true/false)": "ป้อนค่า (true/false)", + "Enter Yacy Password": "ป้อนรหัสผ่าน Yacy", + "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "ป้อน URL ของ Yacy (เช่น http://yacy.example.com:8090)", + "Enter Yacy Username": "ป้อนชื่อผู้ใช้ Yacy", + "Enter your code here...": "พิมพ์โค้ดของคุณที่นี่...", + "Enter your current password": "ป้อนรหัสผ่านปัจจุบันของคุณ", + "Enter Your Email": "ใส่อีเมลของคุณ", + "Enter Your Full Name": "ใส่ชื่อ-นามสกุลของคุณ", + "Enter your gender": "ป้อนเพศของคุณ", + "Enter your message": "ใส่ข้อความของคุณ", + "Enter your name": "กรอกชื่อของคุณ", + "Enter Your Name": "ป้อนชื่อของคุณ", + "Enter your new password": "กรอกรหัสผ่านใหม่ของคุณ", + "Enter Your Password": "ใส่รหัสผ่านของคุณ", + "Enter Your Role": "ใส่บทบาทของคุณ", + "Enter Your Username": "กรอกชื่อผู้ใช้ของคุณ", + "Enter your webhook URL": "ใส่ URL ของ Webhook ของคุณ", + "Entra ID": "Entra ID", + "Error": "ข้อผิดพลาด", + "ERROR": "ข้อผิดพลาด", + "Error accessing directory": "ข้อผิดพลาดในการเข้าถึงไดเรกทอรี", + "Error accessing Google Drive: {{error}}": "เกิดข้อผิดพลาดขณะเข้าถึง Google Drive: {{error}}", + "Error accessing media devices.": "เกิดข้อผิดพลาดขณะเข้าถึงอุปกรณ์สื่อ", + "Error starting recording.": "เกิดข้อผิดพลาดขณะเริ่มการบันทึก", + "Error unloading model: {{error}}": "ข้อผิดพลาดขณะยกเลิกโหลดโมเดล: {{error}}", + "Error uploading file: {{error}}": "เกิดข้อผิดพลาดระหว่างอัปโหลดไฟล์: {{error}}", + "Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "ข้อผิดพลาด: มีโมเดลที่ใช้ ID '{{modelId}}' อยู่แล้ว โปรดเลือก ID อื่นเพื่อดำเนินการต่อ", + "Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "ข้อผิดพลาด: ห้ามปล่อย ID โมเดลว่างไว้ กรุณากรอก ID ที่ถูกต้องเพื่อดำเนินการต่อ", + "Evaluations": "การประเมิน", + "Everyone": "ทุกคน", + "Exa API Key": "API Key ของ Exa", + "Example: (&(objectClass=inetOrgPerson)(uid=%s))": "ตัวอย่าง: (&(objectClass=inetOrgPerson)(uid=%s))", + "Example: ALL": "ตัวอย่าง: ทั้งหมด", + "Example: mail": "ตัวอย่าง: mail", + "Example: ou=users,dc=foo,dc=example": "ตัวอย่าง: ou=users,dc=foo,dc=example", + "Example: sAMAccountName or uid or userPrincipalName": "ตัวอย่าง: sAMAccountName หรือ uid หรือ userPrincipalName", + "Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "จำนวนที่นั่งในไลเซนส์ของคุณเกินขีดจำกัดแล้ว โปรดติดต่อฝ่ายสนับสนุนเพื่อขอเพิ่มจำนวนที่นั่ง", + "Exclude": "ยกเว้น", + "Execute code for analysis": "รันโค้ดเพื่อการวิเคราะห์", + "Executing **{{NAME}}**...": "กำลังรัน **{{NAME}}**...", + "Expand": "ขยาย", + "Experimental": "การทดลอง", + "Explain": "อธิบาย", + "Explore the cosmos": "สำรวจห้วงอวกาศ", + "Export": "ส่งออก", + "Export All Archived Chats": "ส่งออกแชทที่เก็บถาวรทั้งหมด", + "Export All Chats (All Users)": "ส่งออกการแชททั้งหมด (ผู้ใช้ทั้งหมด)", + "Export chat (.json)": "ส่งออกการสนทนา (.json)", + "Export Chats": "ส่งออกการสนทนา", + "Export Config to JSON File": "ส่งออกการตั้งค่าเป็นไฟล์ JSON", + "Export Models": "", + "Export Presets": "ส่งออกพรีเซ็ต", + "Export Prompt Suggestions": "ส่งออกคำแนะนำพรอมต์", + "Export Prompts": "", + "Export to CSV": "ส่งออกเป็น CSV", + "Export Tools": "", + "Export Users": "ส่งออกผู้ใช้", + "External": "ภายนอก", + "External Document Loader URL required.": "จำเป็นต้องระบุ External Document Loader URL", + "External Task Model": "โมเดลงานภายนอก", + "External Tools": "เครื่องมือภายนอก", + "External Web Loader API Key": "คีย์ API ของ External Web Loader", + "External Web Loader URL": "URL ตัวโหลดเว็บภายนอก", + "External Web Search API Key": "API Key สำหรับ External Web Search", + "External Web Search URL": "URL สำหรับค้นเว็บภายนอก", + "Fade Effect for Streaming Text": "เอฟเฟ็กต์เฟดสำหรับข้อความสตรีมมิ่ง", + "Failed to add file.": "ไม่สามารถเพิ่มไฟล์ได้", + "Failed to connect to {{URL}} OpenAPI tool server": "เชื่อมต่อกับเซิร์ฟเวอร์เครื่องมือ OpenAPI ที่ {{URL}} ไม่สำเร็จ", + "Failed to copy link": "คัดลอกลิงก์ไม่สำเร็จ", + "Failed to create API Key.": "สร้าง API Key ล้มเหลว", + "Failed to delete note": "ลบบันทึกไม่สำเร็จ", + "Failed to extract content from the file: {{error}}": "ไม่สามารถดึงเนื้อหาจากไฟล์ได้: {{error}}", + "Failed to extract content from the file.": "ไม่สามารถดึงเนื้อหาจากไฟล์ได้", + "Failed to fetch models": "ดึงโมเดลไม่สำเร็จ", + "Failed to generate title": "สร้างชื่อไม่สำเร็จ", + "Failed to import models": "นำเข้าโมเดลไม่สำเร็จ", + "Failed to load chat preview": "ไม่สามารถโหลดตัวอย่างแชทได้", + "Failed to load file content.": "โหลดเนื้อหาไฟล์ไม่สำเร็จ", + "Failed to move chat": "ย้ายแชทไม่สำเร็จ", + "Failed to read clipboard contents": "อ่านเนื้อหาคลิปบอร์ดไม่สำเร็จ", + "Failed to render diagram": "ไม่สามารถเรนเดอร์ไดอะแกรมได้", + "Failed to render visualization": "ไม่สามารถเรนเดอร์ภาพข้อมูลได้", + "Failed to save connections": "บันทึกการเชื่อมต่อล้มเหลว", + "Failed to save conversation": "บันทึกการสนทนาล้มเหลว", + "Failed to save models configuration": "บันทึกการตั้งค่าโมเดลล้มเหลว", + "Failed to update settings": "อัปเดตการตั้งค่าล้มเหลว", + "Failed to upload file.": "อัปโหลดไฟล์ไม่สำเร็จ", + "fast": "เร็ว", + "Features": "ฟีเจอร์", + "Features Permissions": "สิทธิ์การใช้งานฟีเจอร์", + "February": "กุมภาพันธ์", + "Feedback deleted successfully": "", + "Feedback Details": "รายละเอียดคำติชม", + "Feedback History": "ประวัติข้อเสนอแนะ", + "Feedbacks": "ข้อเสนอแนะ", + "Feel free to add specific details": "สามารถเพิ่มรายละเอียดเฉพาะได้", + "Female": "หญิง", + "File": "ไฟล์", + "File added successfully.": "เพิ่มไฟล์สำเร็จแล้ว", + "File content updated successfully.": "อัปเดตเนื้อหาไฟล์สำเร็จแล้ว", + "File Mode": "โหมดไฟล์", + "File not found.": "ไม่พบไฟล์", + "File removed successfully.": "ลบไฟล์สำเร็จแล้ว", + "File size should not exceed {{maxSize}} MB.": "ขนาดไฟล์ไม่ควรเกิน {{maxSize}} MB", + "File Upload": "อัปโหลดไฟล์", + "File uploaded successfully": "อัปโหลดไฟล์สำเร็จแล้ว", + "File uploaded!": "", + "Files": "ไฟล์", + "Filter": "กรอง", + "Filter is now globally disabled": "การกรองถูกปิดใช้งานทั่วทั้งระบบแล้ว", + "Filter is now globally enabled": "เปิดใช้งานตัวกรองในทุกส่วนแล้ว", + "Filters": "ตัวกรอง", + "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "ตรวจพบการปลอมแปลงลายนิ้วมือ: ไม่สามารถใช้ชื่อย่อเป็นอวตาร์ได้ กำลังใช้รูปโปรไฟล์เริ่มต้น", + "Firecrawl API Base URL": "URL ฐาน Firecrawl API", + "Firecrawl API Key": "API Key ของ Firecrawl", + "Floating Quick Actions": "การดำเนินการด่วนแบบลอยตัว", + "Focus Chat Input": "โฟกัสช่องป้อนแชท", + "Folder": "โฟลเดอร์", + "Folder Background Image": "รูปภาพพื้นหลังโฟลเดอร์", + "Folder deleted successfully": "ลบโฟลเดอร์สำเร็จแล้ว", + "Folder Name": "ชื่อโฟลเดอร์", + "Folder name cannot be empty.": "ชื่อโฟลเดอร์ต้องไม่เว้นว่าง", + "Folder name updated successfully": "อัปเดตชื่อโฟลเดอร์สำเร็จแล้ว", + "Folder updated successfully": "อัปเดตโฟลเดอร์สำเร็จแล้ว", + "Folders": "โฟลเดอร์", + "Follow up": "ติดตามต่อ", + "Follow Up Generation": "การสร้างคำถามติดตาม", + "Follow Up Generation Prompt": "พรอมต์สร้างคำถามติดตามผล", + "Follow-Up Auto-Generation": "การสร้างคำถามติดตามอัตโนมัติ", + "Followed instructions perfectly": "ปฏิบัติตามคำแนะนำอย่างสมบูรณ์แบบ", + "Force OCR": "บังคับใช้ OCR", + "Force OCR on all pages of the PDF. This can lead to worse results if you have good text in your PDFs. Defaults to False.": "บังคับใช้ OCR กับทุกหน้าของไฟล์ PDF อาจทำให้ผลลัพธ์แย่ลงได้หากไฟล์ PDF ของคุณมีข้อความที่ดีอยู่แล้ว ค่าเริ่มต้นคือ False", + "Forge new paths": "สร้างเส้นทางใหม่", + "Form": "แบบฟอร์ม", + "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 และสไตล์ได้", + "Format your variables using brackets like this:": "จัดรูปแบบตัวแปรของคุณโดยใช้วงเล็บเช่นนี้:", + "Formatting may be inconsistent from source.": "รูปแบบอาจไม่สอดคล้องกันกับต้นฉบับ", + "Forwards system user OAuth access token to authenticate": "ส่งต่อโทเค็นการเข้าถึง OAuth ของผู้ใช้ระบบเพื่อยืนยันตัวตน", + "Forwards system user session credentials to authenticate": "ส่งต่อข้อมูลรับรอง Session ของผู้ใช้ระบบเพื่อใช้ยืนยันตัวตน", + "Full Context Mode": "โหมดบริบทเต็ม", + "Function": "ฟังก์ชัน", + "Function Calling": "การเรียกใช้ฟังก์ชัน", + "Function created successfully": "สร้างฟังก์ชันสำเร็จแล้ว", + "Function deleted successfully": "ลบฟังก์ชันสำเร็จแล้ว", + "Function Description": "คำอธิบายฟังก์ชัน", + "Function ID": "ID ฟังก์ชัน", + "Function imported successfully": "นำเข้า Function สำเร็จแล้ว", + "Function is now globally disabled": "ฟังก์ชันถูกปิดใช้งานในระบบทั้งหมดแล้ว", + "Function is now globally enabled": "ฟังก์ชันถูกเปิดใช้งานในทุกส่วนแล้ว", + "Function Name": "ชื่อฟังก์ชัน", + "Function updated successfully": "อัปเดตฟังก์ชันสำเร็จ", + "Functions": "ฟังก์ชัน", + "Functions allow arbitrary code execution.": "ฟังก์ชันอนุญาตให้รันโค้ดได้อย่างอิสระ", + "Functions imported successfully": "นำเข้าฟังก์ชันสำเร็จแล้ว", + "Gemini": "Gemini", + "Gemini API Key": "API Key ของ Gemini", + "Gemini API Key is required.": "ต้องระบุคีย์ Gemini API", + "Gemini Base URL": "URL ฐานของ Gemini", + "Gemini Endpoint Method": "วิธีการเรียกใช้ Endpoint Gemini", + "Gender": "เพศ", + "General": "ทั่วไป", + "Generate": "สร้าง", + "Generate an image": "สร้างรูปภาพ", + "Generate Image": "สร้างภาพ", + "Generate Message Pair": "สร้างคู่ข้อความ", + "Generated Image": "รูปภาพที่ถูกสร้าง", + "Generating search query": "สร้างคำค้นหา", + "Generating...": "กำลังสร้าง...", + "Get information on {{name}} in the UI": "ดูข้อมูลเกี่ยวกับ {{name}} ใน UI", + "Get started": "เริ่มต้น", + "Get started with {{WEBUI_NAME}}": "เริ่มต้นใช้งาน {{WEBUI_NAME}}", + "Global": "ทั้งหมด", + "Good Response": "การตอบกลับที่ดี", + "Google Drive": "Google Drive", + "Google PSE API Key": "คีย์ API ของ Google PSE", + "Google PSE Engine Id": "รหัสเอนจินของ Google PSE", + "Gravatar": "Gravatar", + "Group": "กลุ่ม", + "Group created successfully": "สร้างกลุ่มสำเร็จแล้ว", + "Group deleted successfully": "ลบกลุ่มสำเร็จแล้ว", + "Group Description": "คำอธิบายกลุ่ม", + "Group Name": "ชื่อกลุ่ม", + "Group updated successfully": "อัปเดตกลุ่มสำเร็จแล้ว", + "Groups": "กลุ่ม", + "H1": "H1", + "H2": "H2", + "H3": "H3", + "Haptic Feedback": "การตอบสนองแบบสั่น", + "Headers": "Headers", + "Headers must be a valid JSON object": "Headers ต้องเป็นอ็อบเจ็กต์ JSON ที่ถูกต้อง", + "Height": "ความสูง", + "Hello, {{name}}": "สวัสดี {{name}}", + "Help": "ช่วยเหลือ", + "Help us create the best community leaderboard by sharing your feedback history!": "ช่วยเราสร้างกระดานจัดอันดับชุมชนที่ดีที่สุดด้วยการแชร์ประวัติคำติชมของคุณ!", + "Hex Color": "ค่าสี Hex", + "Hex Color - Leave empty for default color": "สี Hex - เว้นว่างไว้เพื่อใช้ค่าสีเริ่มต้น", + "Hide": "ซ่อน", + "Hide from Sidebar": "ซ่อนจากแถบด้านข้าง", + "Hide Model": "ซ่อนโมเดล", + "High": "สูง", + "High Contrast Mode": "โหมดความ Contrast สูง", + "Home": "หน้าแรก", + "Host": "โฮสต์", + "How can I help you today?": "วันนี้ฉันจะช่วยคุณได้อย่างไร?", + "How would you rate this response?": "คุณจะให้คะแนนคำตอบนี้อย่างไร?", + "HTML": "HTML", + "http://localhost:8000": "http://localhost:8000", + "https://mineru.net/api/v4": "https://mineru.net/api/v4", + "Hybrid Search": "การค้นหาแบบ Hybrid", + "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "ฉันรับทราบว่าฉันได้อ่านและเข้าใจผลกระทบของการกระทำของฉัน ฉันทราบถึงความเสี่ยงที่เกี่ยวข้องกับการเรียกใช้โค้ดโดยพลการและฉันได้ตรวจสอบความน่าเชื่อถือของแหล่งที่มาแล้ว", + "ID": "ID", + "ID cannot contain \":\" or \"|\" characters": "ID ต้องไม่มีอักขระ \":\" หรือ \"|\"", + "iframe Sandbox Allow Forms": "อนุญาตฟอร์มใน Sandbox ของ iframe", + "iframe Sandbox Allow Same Origin": "ให้ iframe Sandbox ใช้แหล่งที่มาเดียวกันได้", + "Ignite curiosity": "จุดประกายความอยากรู้อยากเห็น", + "Image": "รูปภาพ", + "Image Compression": "การบีบอัดรูปภาพ", + "Image Compression Height": "ความสูงการบีบอัดภาพ", + "Image Compression Width": "ความกว้างการบีบอัดรูปภาพ", + "Image Edit": "", + "Image Edit Engine": "เอนจินแก้ไขภาพ", + "Image Generation": "การสร้างภาพ", + "Image Generation Engine": "เอนจินสร้างภาพ", + "Image Max Compression Size": "ขนาดบีบอัดรูปภาพสูงสุด", + "Image Max Compression Size height": "ความสูงสูงสุดของภาพหลังบีบอัด", + "Image Max Compression Size width": "ความกว้างสูงสุดของการบีบอัดรูปภาพ", + "Image Prompt Generation": "การสร้างพรอมต์รูปภาพ", + "Image Prompt Generation Prompt": "พรอมต์สำหรับสร้างคำสั่งภาพ", + "Image Size": "ขนาดรูปภาพ", + "Images": "ภาพ", + "Import": "นำเข้า", + "Import Chats": "นำเข้าการสนทนา", + "Import Config from JSON File": "นำเข้า Config จากไฟล์ JSON", + "Import From Link": "นำเข้าโดยใช้ลิงก์", + "Import Models": "", + "Import Notes": "นำเข้าบันทึก", + "Import Presets": "นำเข้าพรีเซ็ต", + "Import Prompt Suggestions": "นำเข้าคำแนะนำพรอมต์", + "Import Prompts": "", + "Import successful": "นำเข้าเรียบร้อยแล้ว", + "Import Tools": "", + "Important Update": "อัปเดตสำคัญ", + "In order to force OCR, performing OCR must be enabled.": "หากต้องการบังคับให้ใช้ OCR ต้องเปิดใช้งานการประมวลผล OCR ก่อน", + "Include": "รวม", + "Include `--api-auth` flag when running stable-diffusion-webui": "ระบุแฟล็ก `--api-auth` เมื่อรัน stable-diffusion-webui", + "Include `--api` flag when running stable-diffusion-webui": "ระบุแฟล็ก `--api` เมื่อเรียกใช้ stable-diffusion-webui", + "Includes SharePoint": "รวม SharePoint", + "Increase UI Scale": "", + "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "มีผลต่อความเร็วที่อัลกอริทึมตอบสนองต่อข้อเสนอแนะจากข้อความที่สร้างขึ้น ค่า Learning Rate ที่ต่ำจะทำให้การปรับเปลี่ยนช้าลง ในขณะที่ค่า Learning Rate ที่สูงจะทำให้อัลกอริทึมตอบสนองได้รวดเร็วขึ้น", + "Info": "ข้อมูล", + "Initials": "อักษรย่อ", + "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "เพิ่มเนื้อหาทั้งหมดเป็นบริบทสำหรับการประมวลผลอย่างครอบคลุม แนะนำให้ใช้สำหรับคำถามที่ซับซ้อน", + "Input": "อินพุต", + "Input Key (e.g. text, unet_name, steps)": "คีย์อินพุต (เช่น text, unet_name, steps)", + "Input Variables": "ตัวแปรอินพุต", + "Insert": "แทรก", + "Insert Follow-Up Prompt to Input": "แทรกพรอมต์ติดตามผลลงในช่องป้อนข้อมูล", + "Insert Prompt as Rich Text": "แทรกพรอมต์เป็น Rich Text", + "Insert Suggestion Prompt to Input": "แทรกพรอมต์คำแนะนำไปยังช่องป้อนข้อมูล", + "Install from Github URL": "ติดตั้งจาก URL ของ GitHub", + "Instant Auto-Send After Voice Transcription": "ส่งอัตโนมัติทันทีหลังถอดเสียง", + "Integration": "การเชื่อมต่อระบบ", + "Integrations": "การเชื่อมต่อระบบ", + "Interface": "อินเทอร์เฟซ", + "Invalid file content": "เนื้อหาไฟล์ไม่ถูกต้อง", + "Invalid file format.": "รูปแบบไฟล์ไม่ถูกต้อง", + "Invalid JSON file": "ไฟล์ JSON ไม่ถูกต้อง", + "Invalid JSON format for ComfyUI Edit Workflow.": "รูปแบบ JSON ไม่ถูกต้องสำหรับการแก้ไข Workflow ของ ComfyUI", + "Invalid JSON format for ComfyUI Workflow.": "รูปแบบ JSON ของ ComfyUI Workflow ไม่ถูกต้อง", + "Invalid JSON format for Parameters": "รูปแบบ JSON ของพารามิเตอร์ไม่ถูกต้อง", + "Invalid JSON format in {{NAME}}": "", + "Invalid JSON format in Additional Config": "รูปแบบ JSON ในการตั้งค่าเพิ่มเติมไม่ถูกต้อง", + "Invalid JSON format in MinerU Parameters": "รูปแบบ JSON ไม่ถูกต้องใน MinerU Parameters", + "Invalid Tag": "แท็กไม่ถูกต้อง", + "is typing...": "กำลังพิมพ์...", + "Italic": "ตัวเอียง", + "January": "มกราคม", + "Jina API Key": "API Key ของ Jina", + "join our Discord for help.": "เข้าร่วม Discord ของเราเพื่อขอความช่วยเหลือ", + "JSON": "JSON", + "JSON Preview": "ดูตัวอย่าง JSON", + "JSON Spec": "สเปก JSON", + "July": "กรกฎาคม", + "June": "มิถุนายน", + "Jupyter Auth": "การยืนยันตัวตน Jupyter", + "Jupyter URL": "URL ของ Jupyter", + "JWT Expiration": "การหมดอายุของ JWT", + "JWT Token": "โทเค็น JWT", + "Kagi Search API Key": "API Key สำหรับ Kagi Search", + "Keep Follow-Up Prompts in Chat": "เก็บพรอมต์ติดตามไว้ในการแชท", + "Keep in Sidebar": "ปักหมุดไว้ที่แถบด้านข้าง", + "Key": "คีย์", + "Key is required": "ต้องระบุคีย์", + "Keyboard shortcuts": "ทางลัดแป้นพิมพ์", + "Keyboard Shortcuts": "ปุ่มลัดแป้นพิมพ์", + "Knowledge": "ความรู้", + "Knowledge Access": "การเข้าถึงความรู้", + "Knowledge Base": "ฐานความรู้", + "Knowledge created successfully.": "สร้างฐานความรู้สำเร็จ", + "Knowledge deleted successfully.": "ลบฐานความรู้สำเร็จแล้ว", + "Knowledge Description": "คำอธิบายฐานความรู้", + "Knowledge Name": "ชื่อฐานความรู้", + "Knowledge Public Sharing": "การแชร์ฐานความรู้สาธารณะ", + "Knowledge reset successfully.": "รีเซ็ตฐานความรู้สำเร็จแล้ว", + "Knowledge Sharing": "", + "Knowledge updated successfully": "อัปเดตฐานความรู้สำเร็จแล้ว", + "Kokoro.js (Browser)": "Kokoro.js (เบราว์เซอร์)", + "Kokoro.js Dtype": "ชนิดข้อมูล Kokoro.js", + "Label": "ป้ายกำกับ", + "Landing Page Mode": "โหมดหน้า Landing Page", + "Language": "ภาษา", + "Language Locales": "ภาษาที่รองรับ", + "Last Active": "ใช้งานล่าสุด", + "Last Modified": "แก้ไขล่าสุด", + "Last reply": "คำตอบล่าสุด", + "LDAP": "LDAP", + "LDAP server updated": "อัปเดตเซิร์ฟเวอร์ LDAP แล้ว", + "Leaderboard": "กระดานผู้นำ", + "Learn More": "เรียนรู้เพิ่มเติม", + "Learn more about OpenAPI tool servers.": "ดูข้อมูลเพิ่มเติมเกี่ยวกับเซิร์ฟเวอร์เครื่องมือ OpenAPI", + "Learn more about Voxtral transcription.": "เรียนรู้เพิ่มเติมเกี่ยวกับการถอดเสียง Voxtral", + "Leave empty for no compression": "เว้นว่างไว้หากไม่ต้องการบีบอัด", + "Leave empty for unlimited": "เว้นว่างไว้เพื่อไม่จำกัด", + "Leave empty to include all models from \"{{url}}\" endpoint": "ปล่อยว่างไว้เพื่อรวมโมเดลทั้งหมดจาก Endpoint \"{{url}}\"", + "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "เว้นว่างไว้เพื่อรวมโมเดลทั้งหมดจาก Endpoint \"{{url}}/api/tags\"", + "Leave empty to include all models from \"{{url}}/models\" endpoint": "เว้นว่างไว้เพื่อรวมโมเดลทั้งหมดจาก Endpoint \"{{url}}/models\"", + "Leave empty to include all models or select specific models": "เว้นว่างไว้เพื่อรวมโมเดลทั้งหมด หรือเลือกเฉพาะโมเดลที่ต้องการ", + "Leave empty to use the default model (voxtral-mini-latest).": "เว้นว่างไว้เพื่อใช้โมเดลเริ่มต้น (voxtral-mini-latest)", + "Leave empty to use the default prompt, or enter a custom prompt": "เว้นว่างไว้เพื่อใช้พรอมต์เริ่มต้น หรือป้อนพรอมต์ที่กำหนดเอง", + "Leave model field empty to use the default model.": "เว้นช่องโมเดลว่างไว้เพื่อใช้โมเดลเริ่มต้น", + "Legacy": "เวอร์ชันเก่า", + "lexical": "Lexical", + "License": "ใบอนุญาต", + "Lift List": "รายการลิฟต์", + "Light": "โหมดสว่าง", + "Listening...": "กำลังฟัง...", + "Llama.cpp": "Llama.cpp", + "LLMs can make mistakes. Verify important information.": "LLM อาจทำผิดพลาดได้ โปรดตรวจสอบข้อมูลสำคัญ", + "Loader": "ตัวโหลด", + "Loading Kokoro.js...": "กำลังโหลด Kokoro.js...", + "Loading...": "กำลังโหลด...", + "local": "ภายในเครื่อง", + "Local": "ในเครื่อง", + "Local Task Model": "โมเดลงานบนเครื่อง", + "Location access not allowed": "ไม่อนุญาตให้เข้าถึงตำแหน่งที่ตั้ง", + "Lost": "หาย", + "Low": "ต่ำ", + "LTR": "ซ้ายไปขวา", + "Made by Open WebUI Community": "สร้างโดยชุมชน Open WebUI", + "Make password visible in the user interface": "แสดงรหัสผ่านในส่วนติดต่อผู้ใช้", + "Make sure to enclose them with": "ตรวจสอบให้แน่ใจว่าใส่ไว้ภายในเครื่องหมายครอบ", + "Make sure to export a workflow.json file as API format from ComfyUI.": "ตรวจสอบให้แน่ใจว่าส่งออกไฟล์ workflow.json เป็นรูปแบบ API จาก ComfyUI", + "Male": "ชาย", + "Manage": "จัดการ", + "Manage Direct Connections": "จัดการการเชื่อมต่อโดยตรง", + "Manage Models": "จัดการโมเดล", + "Manage Ollama": "จัดการ Ollama", + "Manage Ollama API Connections": "จัดการการเชื่อมต่อ Ollama API", + "Manage OpenAI API Connections": "จัดการการเชื่อมต่อ OpenAI API", + "Manage Pipelines": "จัดการ Pipelines", + "Manage Tool Servers": "จัดการเซิร์ฟเวอร์เครื่องมือ", + "Manage your account information.": "จัดการข้อมูลบัญชีของคุณ", + "March": "มีนาคม", + "Markdown": "Markdown", + "Markdown (Header)": "Markdown (ส่วนหัว)", + "Max Speakers": "จำนวนผู้พูดสูงสุด", + "Max Upload Count": "จำนวนครั้งการอัปโหลดสูงสุด", + "Max Upload Size": "ขนาดอัปโหลดสูงสุด", + "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "สามารถดาวน์โหลดโมเดลได้สูงสุด 3 โมเดลในเวลาเดียวกัน โปรดลองอีกครั้งในภายหลัง", + "May": "พฤษภาคม", + "MBR": "", + "MCP": "MCP", + "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "การรองรับ MCP ยังเป็นแบบทดลองและมีการเปลี่ยนแปลงสเปกบ่อยครั้ง ซึ่งอาจทำให้เกิดปัญหาความไม่เข้ากันได้ การรองรับสเปก OpenAPI นั้นดูแลโดยทีม Open WebUI โดยตรง จึงเป็นตัวเลือกที่เชื่อถือได้มากกว่าในด้านความเข้ากันได้", + "Medium": "ปานกลาง", + "Memories accessible by LLMs will be shown here.": "ความจำที่ LLM เข้าถึงได้จะแสดงที่นี่", + "Memory": "ความจำ", + "Memory added successfully": "เพิ่มความจำสำเร็จ", + "Memory cleared successfully": "ล้างความจำสำเร็จแล้ว", + "Memory deleted successfully": "ลบความจำสำเร็จ", + "Memory updated successfully": "อัปเดตความจำสำเร็จแล้ว", + "Merge Responses": "รวมคำตอบ", + "Merged Response": "การตอบกลับที่รวมกัน", + "Message": "ข้อความ", + "Message rating should be enabled to use this feature": "ต้องเปิดใช้การให้คะแนนข้อความก่อนจึงจะใช้ฟีเจอร์นี้ได้", + "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "ข้อความที่คุณส่งหลังจากสร้างลิงก์แล้วจะไม่ถูกแชร์ ผู้ใช้ที่มี URL จะสามารถดูแชทที่แชร์ได้", + "Microsoft OneDrive": "Microsoft OneDrive", + "Microsoft OneDrive (personal)": "Microsoft OneDrive (ส่วนบุคคล)", + "Microsoft OneDrive (work/school)": "Microsoft OneDrive (ที่ทำงาน/โรงเรียน)", + "MinerU": "MinerU", + "MinerU API Key required for Cloud API mode.": "ต้องใช้ MinerU API Key สำหรับโหมด Cloud API", + "Mistral OCR": "Mistral OCR", + "Mistral OCR API Key required.": "จำเป็นต้องมี Mistral OCR API Key", + "MistralAI": "MistralAI", + "Model": "โมเดล", + "Model '{{modelName}}' has been successfully downloaded.": "โมเดล '{{modelName}}' ถูกดาวน์โหลดเรียบร้อยแล้ว", + "Model '{{modelTag}}' is already in queue for downloading.": "โมเดล '{{modelTag}}' อยู่ในคิวสำหรับการดาวน์โหลดแล้ว", + "Model {{modelId}} not found": "ไม่พบโมเดล {{modelId}}", + "Model {{modelName}} is not vision capable": "โมเดล {{modelName}} ไม่รองรับฟีเจอร์ Vision", + "Model {{name}} is now {{status}}": "โมเดล {{name}} ขณะนี้ {{status}}", + "Model {{name}} is now hidden": "โมเดล {{name}} ถูกซ่อนแล้ว", + "Model {{name}} is now visible": "โมเดล {{name}} มองเห็นได้แล้ว", + "Model accepts file inputs": "โมเดลรองรับการป้อนข้อมูลจากไฟล์", + "Model accepts image inputs": "โมเดลรองรับอินพุตรูปภาพ", + "Model can execute code and perform calculations": "โมเดลสามารถรันโค้ดและคำนวณได้", + "Model can generate images based on text prompts": "โมเดลสามารถสร้างภาพจากพรอมต์ข้อความได้", + "Model can search the web for information": "โมเดลสามารถค้นหาข้อมูลจากเว็บได้", + "Model created successfully!": "สร้างโมเดลสำเร็จ!", + "Model filesystem path detected. Model shortname is required for update, cannot continue.": "ตรวจพบเส้นทางระบบไฟล์ของโมเดล ต้องระบุชื่อย่อของโมเดลสำหรับการอัปเดต ไม่สามารถดำเนินการต่อได้", + "Model Filtering": "การกรองโมเดล", + "Model ID": "รหัสโมเดล", + "Model ID is required.": "จำเป็นต้องระบุ Model ID", + "Model IDs": "รหัสโมเดล", + "Model Name": "ชื่อโมเดล", + "Model name already exists, please choose a different one": "มีชื่อโมเดลนี้อยู่แล้ว โปรดเลือกชื่ออื่น", + "Model Name is required.": "จำเป็นต้องระบุชื่อโมเดล", + "Model not selected": "ยังไม่ได้เลือกโมเดล", + "Model Params": "พารามิเตอร์ของโมเดล", + "Model Permissions": "สิทธิ์ของโมเดล", + "Model unloaded successfully": "ยกเลิกการโหลดโมเดลสำเร็จแล้ว", + "Model updated successfully": "อัปเดตโมเดลเรียบร้อยแล้ว", + "Model(s) do not support file upload": "โมเดลไม่รองรับการอัปโหลดไฟล์", + "Modelfile Content": "เนื้อหา Modelfile", + "Models": "โมเดล", + "Models Access": "การเข้าถึงโมเดล", + "Models configuration saved successfully": "บันทึกการตั้งค่าโมเดลสำเร็จแล้ว", + "Models imported successfully": "นำเข้าโมเดลสำเร็จแล้ว", + "Models Public Sharing": "การแชร์โมเดลสาธารณะ", + "Models Sharing": "", + "Mojeek Search API Key": "API Key สำหรับ Mojeek Search", + "More": "เพิ่มเติม", + "More Concise": "กระชับมากขึ้น", + "More Options": "ตัวเลือกเพิ่มเติม", + "Move": "ย้าย", + "Name": "ชื่อ", + "Name and ID are required, please fill them out": "จำเป็นต้องกรอกชื่อและ ID โปรดกรอกข้อมูลให้ครบ", + "Name your knowledge base": "ตั้งชื่อฐานความรู้ของคุณ", + "Native": "Native", + "New Button": "ปุ่มใหม่", + "New Chat": "แชทใหม่", + "New Folder": "โฟลเดอร์ใหม่", + "New Function": "ฟังก์ชันใหม่", + "New Knowledge": "ฐานความรู้ใหม่", + "New Model": "โมเดลใหม่", + "New Password": "รหัสผ่านใหม่", + "New Prompt": "พรอมต์ใหม่", + "New Temporary Chat": "แชทชั่วคราวใหม่", + "New Tool": "เครื่องมือใหม่", + "new-channel": "ช่องใหม่", + "Next message": "ข้อความถัดไป", + "No authentication": "ไม่ต้องยืนยันตัวตน", + "No chats found": "ไม่พบแชท", + "No chats found for this user.": "ไม่พบการแชทสำหรับผู้ใช้นี้", + "No chats found.": "ไม่พบแชท", + "No content": "ไม่มีเนื้อหา", + "No content found": "ไม่พบเนื้อหา", + "No content found in file.": "ไม่พบเนื้อหาในไฟล์", + "No content to speak": "ไม่มีเนื้อหาสำหรับอ่านออกเสียง", + "No conversation to save": "ไม่มีการสนทนาที่จะบันทึก", + "No distance available": "ไม่มีข้อมูลระยะทาง", + "No expiration can pose security risks.": "ไม่มีวันหมดอายุอาจทำให้เกิดความเสี่ยงด้านความปลอดภัย", + "No feedbacks found": "ไม่พบความคิดเห็น", + "No file selected": "ไม่ได้เลือกไฟล์", + "No functions found": "ไม่พบฟังก์ชัน", + "No groups with access, add a group to grant access": "ยังไม่มีกลุ่มที่มีสิทธิ์เข้าถึง เพิ่มกลุ่มเพื่อให้สิทธิ์เข้าถึง", + "No HTML, CSS, or JavaScript content found.": "ไม่พบเนื้อหา HTML, CSS หรือ JavaScript", + "No inference engine with management support found": "ไม่พบเอนจินอนุมานที่รองรับการจัดการ", + "No knowledge found": "ไม่พบฐานความรู้", + "No memories to clear": "ไม่มีความจำให้ลบ", + "No model IDs": "ไม่มีรหัสโมเดล", + "No models found": "ไม่พบโมเดล", + "No models selected": "ไม่ได้เลือกโมเดล", + "No Notes": "ไม่มีบันทึก", + "No notes found": "ไม่พบบันทึก", + "No prompts found": "ไม่พบพรอมต์", + "No results": "ไม่มีผลลัพธ์", + "No results found": "ไม่มีผลลัพธ์", + "No search query generated": "ไม่มีการสร้างคำค้นหา", + "No source available": "ไม่มีแหล่งที่มา", + "No sources found": "ไม่พบแหล่งข้อมูล", + "No suggestion prompts": "ไม่มีพรอมต์แนะนำ", + "No tools found": "ไม่พบเครื่องมือ", + "No users were found.": "ไม่พบผู้ใช้", + "No valves": "ไม่มีวาล์ว", + "No valves to update": "ไม่มีวาล์วให้อัปเดต", + "Node Ids": "รหัสโหนด", + "None": "ไม่มี", + "Not factually correct": "ไม่ถูกต้องตามข้อเท็จจริง", + "Not helpful": "ไม่เป็นประโยชน์", + "Not Registered": "ยังไม่ได้ลงทะเบียน", + "Note": "บันทึก", + "Note deleted successfully": "ลบบันทึกสำเร็จแล้ว", + "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "หมายเหตุ: หากคุณตั้งค่าคะแนนขั้นต่ำ การค้นหาจะคืนเฉพาะเอกสารที่มีคะแนนมากกว่าหรือเท่ากับคะแนนขั้นต่ำ", + "Notes": "บันทึก", + "Notes Public Sharing": "การแชร์บันทึกสาธารณะ", + "Notes Sharing": "", + "Notification Sound": "เสียงการแจ้งเตือน", + "Notification Webhook": "Webhook การแจ้งเตือน", + "Notifications": "การแจ้งเตือน", + "November": "พฤศจิกายน", + "OAuth": "OAuth", + "OAuth 2.1": "OAuth 2.1", + "OAuth ID": "OAuth ID", + "October": "ตุลาคม", + "Off": "ปิด", + "Okay, Let's Go!": "ตกลง ไปกันเลย!", + "OLED Dark": "โหมดมืด OLED", + "Ollama": "Ollama", + "Ollama API": "Ollama API", + "Ollama API settings updated": "อัปเดตการตั้งค่า Ollama API แล้ว", + "Ollama Cloud API Key": "API Key ของ Ollama Cloud", + "Ollama Version": "เวอร์ชัน Ollama", + "On": "เปิด", + "OneDrive": "OneDrive", + "Only active when \"Paste Large Text as File\" setting is toggled on.": "จะทำงานเฉพาะเมื่อเปิดการตั้งค่า \"วางข้อความขนาดใหญ่เป็นไฟล์\"", + "Only active when the chat input is in focus and an LLM is generating a response.": "ทำงานเฉพาะเมื่อช่องป้อนข้อความแชทถูกโฟกัสอยู่ และ LLM กำลังสร้างคำตอบ", + "Only active when the chat input is in focus.": "จะใช้งานได้เฉพาะเมื่อช่องป้อนข้อความแชทถูกโฟกัสอยู่เท่านั้น", + "Only alphanumeric characters and hyphens are allowed": "อนุญาตเฉพาะตัวอักษร ตัวเลข และขีดกลาง", + "Only alphanumeric characters and hyphens are allowed in the command string.": "อนุญาตให้ใช้เฉพาะตัวอักษร ตัวเลข และขีดกลางในสตริงคำสั่งเท่านั้น", + "Only can be triggered when the chat input is in focus.": "สามารถทริกเกอร์ได้เฉพาะเมื่อช่องป้อนข้อความแชทอยู่ในโฟกัสเท่านั้น", + "Only collections can be edited, create a new knowledge base to edit/add documents.": "สามารถแก้ไขได้เฉพาะคอลเลกชันเท่านั้น โปรดสร้างฐานความรู้ใหม่เพื่อแก้ไข/เพิ่มเอกสาร", + "Only markdown files are allowed": "อนุญาตเฉพาะไฟล์ Markdown เท่านั้น", + "Only select users and groups with permission can access": "มีเฉพาะผู้ใช้และกลุ่มที่ได้รับสิทธิ์เท่านั้นที่เข้าถึงได้", + "Oops! Looks like the URL is invalid. Please double-check and try again.": "ขออภัย! ดูเหมือนว่า URL ไม่ถูกต้อง กรุณาตรวจสอบและลองใหม่อีกครั้ง", + "Oops! There are files still uploading. Please wait for the upload to complete.": "โอ๊ะ! ยังมีไฟล์กำลังอัปโหลดอยู่ กรุณารอจนกว่าอัปโหลดจะเสร็จสมบูรณ์", + "Oops! There was an error in the previous response.": "ขออภัย! เกิดข้อผิดพลาดในคำตอบก่อนหน้า", + "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 link": "เปิดลิงก์", + "Open modal to configure connection": "เปิดหน้าต่างเพื่อกำหนดค่าการเชื่อมต่อ", + "Open Modal To Manage Floating Quick Actions": "เปิดหน้าต่างเพื่อจัดการทางลัดด่วนแบบลอย", + "Open Modal To Manage Image Compression": "เปิดหน้าต่างจัดการการบีบอัดรูปภาพ", + "Open Settings": "เปิดการตั้งค่า", + "Open Sidebar": "เปิดแถบด้านข้าง", + "Open User Profile Menu": "เปิดเมนูโปรไฟล์ผู้ใช้", + "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI สามารถใช้เครื่องมือที่มีให้จากเซิร์ฟเวอร์ OpenAPI ใดก็ได้", + "Open WebUI uses faster-whisper internally.": "Open WebUI ใช้ faster-whisper อยู่ภายใน", + "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI ใช้ SpeechT5 และ Embedding เสียงผู้พูด CMU Arctic", + "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "เวอร์ชัน Open WebUI (v{{OPEN_WEBUI_VERSION}}) ต่ำกว่าเวอร์ชันที่ต้องการ (v{{REQUIRED_VERSION}})", + "OpenAI": "OpenAI", + "OpenAI API": "OpenAI API", + "OpenAI API Base URL": "Base URL ของ OpenAI API", + "OpenAI API Key": "API Key ของ OpenAI", + "OpenAI API Key is required.": "จำเป็นต้องใช้ OpenAI API Key", + "OpenAI API settings updated": "อัปเดตการตั้งค่า OpenAI API แล้ว", + "OpenAI API Version": "เวอร์ชัน OpenAI API", + "OpenAI URL/Key required.": "จำเป็นต้องระบุ URL/คีย์ OpenAI", + "OpenAPI": "OpenAPI", + "OpenAPI Spec": "สเปก OpenAPI", + "openapi.json URL or Path": "URL หรือพาธของ openapi.json", + "Optional": "ไม่บังคับ", + "Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "ตัวเลือกสำหรับรันโมเดล Vision-language แบบโลคอลสำหรับคำอธิบายรูปภาพ โดยพารามิเตอร์จะอ้างถึงโมเดลที่โฮสต์บน Hugging Face พารามิเตอร์นี้จะใช้ร่วมกับ picture_description_api ไม่ได้", + "or": "หรือ", + "Ordered List": "รายการมีลำดับ", + "Organize your users": "จัดการผู้ใช้ของคุณ", + "Other": "อื่น ๆ", + "OUTPUT": "เอาต์พุต", + "Output format": "รูปแบบผลลัพธ์", + "Output Format": "รูปแบบผลลัพธ์", + "Overview": "ภาพรวม", + "page": "หน้า", + "Paginate": "แบ่งหน้า", + "Parameters": "พารามิเตอร์", + "Password": "รหัสผ่าน", + "Passwords do not match.": "รหัสผ่านไม่ตรงกัน", + "Paste Large Text as File": "วางข้อความขนาดใหญ่เป็นไฟล์", + "PDF Backend": "ระบบเบื้องหลัง PDF", + "PDF document (.pdf)": "เอกสาร PDF (.pdf)", + "PDF Extract Images (OCR)": "การดึงรูปภาพจาก PDF (OCR)", + "pending": "รอดำเนินการ", + "Pending": "กำลังรอ", + "Pending User Overlay Content": "เนื้อหาซ้อนทับผู้ใช้ที่รอดำเนินการ", + "Pending User Overlay Title": "ชื่อหน้าซ้อนผู้ใช้ที่รอดำเนินการ", + "Perform OCR": "ทำ OCR", + "Permission denied when accessing media devices": "ไม่ได้รับอนุญาตให้เข้าถึงอุปกรณ์สื่อ", + "Permission denied when accessing microphone": "ถูกปฏิเสธสิทธิ์ในการเข้าถึงไมโครโฟน", + "Permission denied when accessing microphone: {{error}}": "ไม่ได้รับอนุญาตให้เข้าถึงไมโครโฟน: {{error}}", + "Permissions": "สิทธิ์", + "Perplexity API Key": "API Key ของ Perplexity", + "Perplexity Model": "โมเดล Perplexity", + "Perplexity Search API URL": "", + "Perplexity Search Context Usage": "การใช้บริบทการค้นหา Perplexity", + "Personalization": "การปรับแต่ง", + "Picture Description API Config": "การตั้งค่า Picture Description API", + "Picture Description Local Config": "การตั้งค่าภาพคำอธิบายในเครื่อง", + "Picture Description Mode": "โหมดบรรยายภาพ", + "Pin": "ปักหมุด", + "Pinned": "ปักหมุดแล้ว", + "Pioneer insights": "ข้อมูลเชิงลึกผู้บุกเบิก", + "Pipe": "ท่อ", + "Pipeline": "Pipeline", + "Pipeline deleted successfully": "ลบ Pipeline สำเร็จแล้ว", + "Pipeline downloaded successfully": "ดาวน์โหลด Pipeline สำเร็จแล้ว", + "Pipelines": "Pipelines", + "Pipelines are a plugin system with arbitrary code execution —": "Pipelines เป็นระบบปลั๊กอินที่สามารถรันโค้ดได้อย่างอิสระ —", + "Pipelines Not Detected": "ไม่พบ Pipelines", + "Pipelines Valves": "วาล์วของ Pipelines", + "Plain text (.md)": "ข้อความธรรมดา (.md)", + "Plain text (.txt)": "ไฟล์ข้อความธรรมดา (.txt)", + "Playground": "สนามทดสอบ", + "Playwright Timeout (ms)": "Playwright Timeout (มิลลิวินาที)", + "Playwright WebSocket URL": "URL WebSocket ของ Playwright", + "Please carefully review the following warnings:": "โปรดตรวจสอบคำเตือนต่อไปนี้อย่างละเอียด", + "Please do not close the settings page while loading the model.": "โปรดอย่าปิดหน้าการตั้งค่าขณะกำลังโหลดโมเดล", + "Please enter a message or attach a file.": "กรุณากรอกข้อความหรือแนบไฟล์", + "Please enter a prompt": "โปรดป้อนพรอมต์", + "Please enter a valid ID": "กรุณากรอก ID ที่ถูกต้อง", + "Please enter a valid JSON spec": "โปรดป้อนสเปก JSON ที่ถูกต้อง", + "Please enter a valid path": "โปรดป้อนพาธที่ถูกต้อง", + "Please enter a valid URL": "กรุณากรอก URL ที่ถูกต้อง", + "Please enter a valid URL.": "โปรดป้อน URL ที่ถูกต้อง", + "Please fill in all fields.": "โปรดกรอกข้อมูลให้ครบทุกช่อง", + "Please register the OAuth client": "โปรดลงทะเบียน OAuth Client", + "Please save the connection to persist the OAuth client information and do not change the ID": "โปรดบันทึกการเชื่อมต่อเพื่อคงข้อมูล OAuth Client และอย่าเปลี่ยนแปลง ID", + "Please select a model first.": "โปรดเลือกโมเดลก่อน", + "Please select a model.": "โปรดเลือกโมเดล", + "Please select a reason": "โปรดเลือกเหตุผล", + "Please select a valid JSON file": "โปรดเลือกไฟล์ JSON ที่ถูกต้อง", + "Please wait until all files are uploaded.": "โปรดรอจนกว่าไฟล์ทั้งหมดจะอัปโหลดเสร็จสิ้น", + "Port": "พอร์ต", + "Positive attitude": "ทัศนคติเชิงบวก", + "Prefer not to say": "ไม่ต้องการระบุ", + "Prefix ID": "รหัสคำนำหน้า", + "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix ID ใช้เพื่อหลีกเลี่ยงความขัดแย้งกับการเชื่อมต่ออื่น โดยการเพิ่มคำนำหน้าให้กับ ID ของโมเดล หากต้องการปิดให้เว้นว่างไว้", + "Prevent File Creation": "ป้องกันการสร้างไฟล์", + "Preview": "ดูตัวอย่าง", + "Previous 30 days": "30 วันที่ผ่านมา", + "Previous 7 days": "7 วันที่ผ่านมา", + "Previous message": "ข้อความก่อนหน้า", + "Private": "ส่วนตัว", + "Profile": "โปรไฟล์", + "Prompt": "พรอมต์", + "Prompt (e.g. Tell me a fun fact about the Roman Empire)": "พรอมต์ (เช่น บอกข้อเท็จจริงที่สนุกเกี่ยวกับจักรวรรดิโรมัน)", + "Prompt Autocompletion": "การเติมพรอมต์อัตโนมัติ", + "Prompt Content": "เนื้อหาพรอมต์", + "Prompt created successfully": "สร้างพรอมต์สำเร็จแล้ว", + "Prompt suggestions": "คำแนะนำพรอมต์", + "Prompt updated successfully": "อัปเดตพรอมต์สำเร็จแล้ว", + "Prompts": "พรอมต์", + "Prompts Access": "การเข้าถึงพรอมต์", + "Prompts Public Sharing": "การแชร์พรอมต์สาธารณะ", + "Prompts Sharing": "", + "Provider Type": "ประเภทผู้ให้บริการ", + "Public": "สาธารณะ", + "Pull \"{{searchValue}}\" from Ollama.com": "ดึง \"{{searchValue}}\" จาก Ollama.com", + "Pull a model from Ollama.com": "ดึงโมเดลจาก Ollama.com", + "Pull Model": "ดึงโมเดล", + "pypdfium2": "pypdfium2", + "Query Generation Prompt": "พรอมต์สร้างคิวรี", + "Querying": "กำลังค้นหา", + "Quick Actions": "การกระทำด่วน", + "RAG Template": "แม่แบบ RAG", + "Rating": "การให้คะแนน", + "Re-rank models by topic similarity": "จัดเรียงลำดับโมเดลใหม่ตามความคล้ายคลึงของหัวข้อ", + "Read": "อ่าน", + "Read Aloud": "อ่านออกเสียง", + "Read more →": "อ่านเพิ่มเติม →", + "Reason": "เหตุผล", + "Reasoning Effort": "ระดับการใช้เหตุผล", + "Reasoning Tags": "ป้ายกำกับการให้เหตุผล", + "Record": "บันทึก", + "Record voice": "บันทึกเสียง", + "Redirecting you to Open WebUI Community": "กำลังเปลี่ยนเส้นทางคุณไปยังชุมชน Open WebUI", + "Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "ลดโอกาสในการสร้างข้อความที่ไม่มีความหมาย ค่าให้สูงขึ้น (เช่น 100) จะทำให้ได้คำตอบที่หลากหลายมากขึ้น ในขณะที่ค่าให้ต่ำลง (เช่น 10) จะทำให้คำตอบระมัดระวังมากขึ้น", + "Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "เรียกตัวเองว่า \"User\" (เช่น \"User กำลังเรียนภาษาสเปน\")", + "Reference Chats": "การแชทอ้างอิง", + "Refused when it shouldn't have": "ปฏิเสธเมื่อไม่ควรปฏิเสธ", + "Regenerate": "สร้างใหม่", + "Regenerate Menu": "สร้างเมนูใหม่", + "Regenerate Response": "สร้างคำตอบใหม่", + "Register Again": "ลงทะเบียนอีกครั้ง", + "Register Client": "ลงทะเบียน Client", + "Registered": "ลงทะเบียนแล้ว", + "Registration failed": "การลงทะเบียนล้มเหลว", + "Registration successful": "ลงทะเบียนสำเร็จ", + "Reindex": "สร้างดัชนีใหม่", + "Reindex Knowledge Base Vectors": "จัดทำดัชนีเวกเตอร์ฐานความรู้ใหม่", + "Release Notes": "บันทึกประจำรุ่น", + "Releases": "รุ่นเผยแพร่", + "Relevance": "ความเกี่ยวข้อง", + "Relevance Threshold": "เกณฑ์ความเกี่ยวข้อง", + "Remember Dismissal": "จำการปิดข้อความ", + "Remove": "ลบ", + "Remove {{MODELID}} from list.": "ลบ {{MODELID}} ออกจากรายการ", + "Remove file": "ลบไฟล์", + "Remove File": "ลบไฟล์", + "Remove image": "ลบรูปภาพ", + "Remove Model": "ลบโมเดล", + "Remove this tag from list": "ลบแท็กนี้ออกจากรายการ", + "Rename": "เปลี่ยนชื่อ", + "Reorder Models": "จัดลำดับโมเดลใหม่", + "Reply": "ตอบกลับ", + "Reply in Thread": "ตอบกลับในเธรด", + "Reply to thread...": "ตอบกลับเธรด...", + "Replying to {{NAME}}": "กำลังตอบกลับ {{NAME}}", + "required": "จำเป็น", + "Reranking Engine": "เอนจิน Reranking", + "Reranking Model": "โมเดล Reranking", + "Reset": "รีเซ็ต", + "Reset All Models": "รีเซ็ตโมเดลทั้งหมด", + "Reset Image": "รีเซ็ตภาพ", + "Reset Upload Directory": "รีเซ็ตไดเรกทอรีการอัปโหลด", + "Reset Vector Storage/Knowledge": "รีเซ็ตที่เก็บเวกเตอร์/ฐานความรู้", + "Reset view": "รีเซ็ตมุมมอง", + "Response": "การตอบกลับ", + "Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "ไม่สามารถเปิดใช้งานการแจ้งเตือนการตอบกลับได้ เนื่องจากสิทธิ์ของเว็บไซต์ถูกปฏิเสธ กรุณาไปที่การตั้งค่าเบราว์เซอร์ของคุณเพื่อให้สิทธิ์การเข้าถึงที่จำเป็น", + "Response splitting": "การแยกข้อความตอบกลับ", + "Response Watermark": "ลายน้ำของคำตอบ", + "Result": "ผลลัพธ์", + "RESULT": "ผลลัพธ์", + "Retrieval": "การดึงข้อมูล", + "Retrieval Query Generation": "การสร้างคำค้นสำหรับการดึงข้อมูล", + "Retrieved {{count}} sources": "ดึงข้อมูลจาก {{count}} แหล่งข้อมูลแล้ว", + "Retrieved {{count}} sources_other": "เรียกดูที่มา {{count}} รายการ (อื่นๆ)", + "Retrieved 1 source": "ดึงมาแล้ว 1 แหล่งข้อมูล", + "Rich Text Input for Chat": "ช่องป้อนข้อความแบบ Rich Text สำหรับแชท", + "RK": "RK", + "Role": "บทบาท", + "Rosé Pine": "Rosé Pine", + "Rosé Pine Dawn": "Rosé Pine Dawn", + "RTL": "ขวาไปซ้าย", + "Run": "เรียกใช้", + "Running": "กำลังทำงาน", + "Running...": "กำลังทำงาน...", + "Save": "บันทึก", + "Save & Create": "บันทึกและสร้าง", + "Save & Update": "บันทึกและอัปเดต", + "Save As Copy": "บันทึกเป็นสำเนา", + "Save Chat": "บันทึกการแชท", + "Save Tag": "บันทึกแท็ก", + "Saved": "บันทึกแล้ว", + "Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "การบันทึก Log การแชทโดยตรงไปยังที่จัดเก็บของเบราว์เซอร์ไม่รองรับอีกต่อไป โปรดสละเวลาสักครู่เพื่อดาวน์โหลดและลบบันทึกการแชทของคุณโดยคลิกปุ่มด้านล่าง ไม่ต้องกังวล คุณสามารถนำเข้าบันทึกการแชทของคุณกลับไปยัง Backend ได้อย่างง่ายดายผ่าน", + "Scroll On Branch Change": "เลื่อนเมื่อเปลี่ยนสาขา", + "Search": "ค้นหา", + "Search a model": "ค้นหาโมเดล", + "Search all emojis": "ค้นหาอีโมจิทั้งหมด", + "Search Base": "ฐานการค้นหา", + "Search Chats": "ค้นหาแชท", + "Search Collection": "ค้นหาคอลเลกชัน", + "Search Filters": "ตัวกรองการค้นหา", + "search for archived chats": "ค้นหาการแชทที่เก็บถาวร", + "search for folders": "ค้นหาโฟลเดอร์", + "search for pinned chats": "ค้นหาแชทที่ปักหมุด", + "search for shared chats": "ค้นหาการแชทที่แชร์ร่วมกัน", + "search for tags": "ค้นหาแท็ก", + "Search Functions": "ค้นหาฟังก์ชัน", + "Search In Models": "ค้นหาในโมเดล", + "Search Knowledge": "ค้นหาฐานความรู้", + "Search Models": "ค้นหาโมเดล", + "Search Notes": "ค้นหาบันทึก", + "Search options": "ตัวเลือกการค้นหา", + "Search Prompts": "ค้นหาพรอมต์", + "Search Result Count": "จำนวนผลลัพธ์การค้นหา", + "Search the internet": "ค้นหาบนอินเทอร์เน็ต", + "Search Tools": "เครื่องมือค้นหา", + "SearchApi API Key": "API Key ของ SearchApi", + "SearchApi Engine": "เอนจินของ SearchApi", + "Searched {{count}} sites": "ค้นหา {{count}} เว็บไซต์", + "Searching": "กำลังค้นหา", + "Searching \"{{searchQuery}}\"": "กำลังค้นหา \"{{searchQuery}}\"", + "Searching Knowledge for \"{{searchQuery}}\"": "กำลังค้นหาความรู้สำหรับ \"{{searchQuery}}\"", + "Searching the web": "กำลังค้นหาบนเว็บ", + "Searxng Query URL": "URL การค้นหา Searxng", + "See readme.md for instructions": "ดู readme.md สำหรับคำแนะนำ", + "See what's new": "ดูมีอะไรใหม่", + "Seed": "Seed", + "Select": "เลือก", + "Select a base model": "เลือกโมเดลฐาน", + "Select a base model (e.g. llama3, gpt-4o)": "เลือกโมเดลพื้นฐาน (เช่น llama3, gpt-4o)", + "Select a conversation to preview": "เลือกการสนทนาเพื่อดูตัวอย่าง", + "Select a engine": "เลือกเอนจิน", + "Select a function": "เลือกฟังก์ชัน", + "Select a group": "เลือกกลุ่ม", + "Select a language": "เลือกรูปแบบภาษา", + "Select a mode": "เลือกโหมด", + "Select a model": "เลือกโมเดล", + "Select a model (optional)": "เลือกโมเดล (ไม่บังคับ)", + "Select a pipeline": "เลือก Pipeline", + "Select a pipeline url": "เลือก URL ของ Pipeline", + "Select a reranking model engine": "เลือกเอนจินโมเดล Reranking", + "Select a role": "เลือกบทบาท", + "Select a theme": "เลือกธีม", + "Select a tool": "เลือกเครื่องมือ", + "Select a voice": "เลือกเสียง", + "Select an auth method": "เลือกวิธีการยืนยันตัวตน", + "Select an embedding model engine": "เลือกเอนจินโมเดลสำหรับสร้าง Embedding", + "Select an engine": "เลือกเอนจิน", + "Select an Ollama instance": "เลือกอินสแตนซ์ของ Ollama", + "Select an output format": "เลือกรูปแบบผลลัพธ์", + "Select dtype": "เลือก dtype", + "Select Engine": "เลือกเอนจิน", + "Select how to split message text for TTS requests": "เลือกวิธีแบ่งข้อความสำหรับคำขอ TTS", + "Select Knowledge": "เลือกฐานความรู้", + "Select Method": "เลือกวิธี", + "Select only one model to call": "เลือกเพียงโมเดลเดียวที่จะเรียกใช้", + "Select view": "เลือกมุมมอง", + "Selected model(s) do not support image inputs": "โมเดลที่เลือกไม่รองรับการป้อนภาพ", + "semantic": "Semantic", + "Send": "ส่ง", + "Send a Message": "ส่งข้อความ", + "Send message": "ส่งข้อความ", + "Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "ส่ง `stream_options: { include_usage: true }` ในคำขอ\nผู้ให้บริการที่รองรับจะส่งคืนข้อมูลการใช้โทเค็นในข้อมูลตอบกลับเมื่อมีการตั้งค่านี้", + "September": "กันยายน", + "SerpApi API Key": "API Key ของ SerpApi", + "SerpApi Engine": "เอนจิน SerpApi", + "Serper API Key": "คีย์ API ของ Serper", + "Serply API Key": "คีย์ API ของ Serply", + "Serpstack API Key": "คีย์ API ของ Serpstack", + "Server connection verified": "ยืนยันการเชื่อมต่อเซิร์ฟเวอร์แล้ว", + "Session": "Session", + "Set as default": "ตั้งเป็นค่าเริ่มต้น", + "Set embedding model": "ตั้งค่าโมเดล Embedding", + "Set embedding model (e.g. {{model}})": "ตั้งค่าโมเดลสำหรับ Embedding (เช่น {{model}})", + "Set reranking model (e.g. {{model}})": "ตั้งค่าโมเดล Reranking (เช่น {{model}})", + "Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "ตั้งค่าจำนวนเลเยอร์ที่จะ Offload ไปยัง GPU การเพิ่มค่านี้สามารถช่วยเพิ่มประสิทธิภาพได้มากสำหรับโมเดลที่ปรับแต่งมาสำหรับการเร่งความเร็วด้วย GPU แต่ก็อาจใช้พลังงานและทรัพยากร GPU มากขึ้นด้วย", + "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "กำหนดจำนวนเธรดของ Worker ที่ใช้สำหรับการคำนวณ ตัวเลือกนี้ใช้กำหนดว่าใช้เธรดจำนวนเท่าใดในการประมวลผลคำขอที่เข้ามาพร้อมกัน การเพิ่มค่านี้สามารถช่วยเพิ่มประสิทธิภาพภายใต้ปริมาณงานที่มีความพร้อมกันสูง แต่อาจใช้ทรัพยากร CPU มากขึ้น", + "Set Voice": "ตั้งค่าเสียง", + "Set whisper model": "ตั้งค่าโมเดล Whisper", + "Sets a flat bias against tokens that have appeared at least once. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "ตั้งค่า Bias แบบ Flat ต่อโทเค็นที่เคยปรากฏอย่างน้อยหนึ่งครั้ง ค่าให้สูงขึ้น (เช่น 1.5) จะลงโทษการซ้ำมากขึ้น ในขณะที่ค่าให้ต่ำลง (เช่น 0.9) จะผ่อนปรนมากขึ้น หากตั้งเป็น 0 จะปิดการทำงาน", + "Sets a scaling bias against tokens to penalize repetitions, based on how many times they have appeared. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. At 0, it is disabled.": "ตั้งค่า Bias แบบ Scaling ต่อโทเค็นเพื่อลงโทษการซ้ำ ขึ้นอยู่กับจำนวนครั้งที่โทเค็นนั้นปรากฏ ค่าให้สูงขึ้น (เช่น 1.5) จะลงโทษการซ้ำอย่างรุนแรงมากขึ้น ขณะที่ค่าให้ต่ำลง (เช่น 0.9) จะผ่อนปรนมากกว่า ที่ค่า 0 จะปิดการทำงานฟีเจอร์นี้", + "Sets how far back for the model to look back to prevent repetition.": "ตั้งค่าระยะย้อนหลังที่โมเดลจะใช้พิจารณาเพื่อป้องกันการซ้ำคำ", + "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "ตั้งค่า Seed ของตัวเลขสุ่มที่ใช้ในการสร้างข้อความ การตั้งค่าเป็นหมายเลขเฉพาะจะทำให้โมเดลสร้างข้อความเดิมสำหรับพรอมต์เดิม", + "Sets the size of the context window used to generate the next token.": "ตั้งค่าขนาดของ Context Window ที่ใช้ในการสร้างโทเค็นถัดไป", + "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "ตั้งค่าลำดับตัวหยุดที่จะใช้ เมื่อตรวจพบรูปแบบนี้ LLM จะหยุดสร้างข้อความและส่งค่ากลับ สามารถตั้งค่ารูปแบบตัวหยุดหลายแบบได้โดยระบุพารามิเตอร์ Stop แยกกันหลายตัวใน Modelfile", + "Setting": "", + "Settings": "การตั้งค่า", + "Settings saved successfully!": "บันทึกการตั้งค่าสำเร็จแล้ว!", + "Share": "แชร์", + "Share Chat": "แชร์แชท", + "Share to Open WebUI Community": "แชร์ไปยังชุมชน Open WebUI", + "Share your background and interests": "เล่าพื้นเพและความสนใจของคุณ", + "Shared with you": "แชร์กับคุณ", + "Sharing Permissions": "สิทธิ์การแชร์", + "Show": "แสดง", + "Show \"What's New\" modal on login": "แสดงหน้าต่าง \"มีอะไรใหม่\" เมื่อเข้าสู่ระบบ", + "Show Admin Details in Account Pending Overlay": "แสดงรายละเอียดผู้ดูแลระบบในหน้าต่างซ้อนรอการอนุมัติบัญชี", + "Show Formatting Toolbar": "แสดงแถบเครื่องมือการจัดรูปแบบ", + "Show image preview": "แสดงตัวอย่างรูปภาพ", + "Show Model": "แสดงโมเดล", + "Show Shortcuts": "แสดงทางลัด", + "Show your support!": "แสดงการสนับสนุนของคุณ!", + "Showcased creativity": "แสดงความคิดสร้างสรรค์", + "Sign in": "ลงชื่อเข้าใช้", + "Sign in to {{WEBUI_NAME}}": "ลงชื่อเข้าใช้ {{WEBUI_NAME}}", + "Sign in to {{WEBUI_NAME}} with LDAP": "ลงชื่อเข้าใช้ {{WEBUI_NAME}} ด้วย LDAP", + "Sign Out": "ลงชื่อออก", + "Sign up": "สมัครสมาชิก", + "Sign up to {{WEBUI_NAME}}": "สมัครสมาชิกกับ {{WEBUI_NAME}}", + "Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to False.": "ช่วยเพิ่มความแม่นยำอย่างมากด้วยการใช้ LLM เพื่อเพิ่มประสิทธิภาพการตรวจจับตาราง ฟอร์ม สมการในบรรทัด และโครงร่างหน้าเอกสาร แต่จะทำให้หน่วงเวลามากขึ้น ค่าเริ่มต้นคือ False", + "Signing in to {{WEBUI_NAME}}": "กำลังลงชื่อเข้าใช้ {{WEBUI_NAME}}", + "Sink List": "รายการซิงก์", + "sk-1234": "sk-1234", + "Skip Cache": "ข้ามแคช", + "Skip the cache and re-run the inference. Defaults to False.": "ข้ามแคชและรันการอนุมานใหม่อีกครั้ง ค่าเริ่มต้นคือ False", + "Something went wrong :/": "มีบางอย่างผิดพลาด :/", + "Sonar": "Sonar", + "Sonar Deep Research": "Sonar การวิจัยเชิงลึก", + "Sonar Pro": "Sonar Pro", + "Sonar Reasoning": "การให้เหตุผลของ Sonar", + "Sonar Reasoning Pro": "Sonar Reasoning Pro", + "Sougou Search API sID": "sID ของ Sougou Search API", + "Sougou Search API SK": "Sougou Search API SK", + "Source": "แหล่งที่มา", + "Speech Playback Speed": "ความเร็วการเล่นเสียงพูด", + "Speech recognition error: {{error}}": "ข้อผิดพลาดในการรู้จำเสียง: {{error}}", + "Speech-to-Text": "แปลงเสียงเป็นข้อความ", + "Speech-to-Text Engine": "เครื่องมือแปลงเสียงเป็นข้อความ", + "standard": "มาตรฐาน", + "Start a new conversation": "เริ่มการสนทนาใหม่", + "Start of the channel": "จุดเริ่มต้นของช่อง", + "Start Tag": "แท็กเริ่มต้น", + "Status Updates": "อัปเดตสถานะ", + "STDOUT/STDERR": "STDOUT/STDERR", + "Steps": "ขั้นตอน", + "Stop": "หยุด", + "Stop Generating": "หยุดการสร้าง", + "Stop Sequence": "ลำดับการหยุด", + "Stream Chat Response": "สตรีมการตอบกลับแชท", + "Stream Delta Chunk Size": "ขนาดชังก์สตรีม Delta", + "Streamable HTTP": "HTTP แบบสตรีมได้", + "Strikethrough": "ขีดฆ่า", + "Strip Existing OCR": "ลบ OCR เดิมออก", + "Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "ลบข้อความ OCR เดิมออกจาก PDF แล้วรัน OCR ใหม่ จะถูกละเว้นหากเปิดใช้ Force OCR ค่าเริ่มต้นคือ False", + "STT Model": "โมเดลแปลงเสียงเป็นข้อความ", + "STT Settings": "การตั้งค่าแปลงเสียงเป็นข้อความ", + "Stylized PDF Export": "ส่งออก PDF แบบมีสไตล์", + "Subtitle (e.g. about the Roman Empire)": "คำบรรยายย่อย (เช่น เกี่ยวกับจักรวรรดิโรมัน)", + "Success": "สำเร็จ", + "Successfully imported {{userCount}} users.": "นำเข้า {{userCount}} ผู้ใช้สำเร็จแล้ว", + "Successfully updated.": "อัปเดตเรียบร้อยแล้ว", + "Suggest a change": "เสนอการเปลี่ยนแปลง", + "Suggested": "แนะนำ", + "Support": "สนับสนุน", + "Support this plugin:": "สนับสนุนปลั๊กอินนี้:", + "Supported MIME Types": "ชนิด MIME ที่รองรับ", + "Sync directory": "ซิงค์ไดเรกทอรี", + "System": "ระบบ", + "System Instructions": "คำสั่งของระบบ", + "System Prompt": "System Prompt", + "Table Mode": "โหมดตาราง", + "Tag": "แท็ก", + "Tags": "แท็ก", + "Tags Generation": "การสร้างแท็ก", + "Tags Generation Prompt": "พรอมต์สำหรับสร้างแท็ก", + "Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Tail free sampling ใช้เพื่อลดผลกระทบของโทเค็นที่มีความน่าจะเป็นต่ำจากผลลัพธ์ ค่าเท่าที่สูงกว่า (เช่น 2.0) จะลดผลกระทบได้มากกว่า ในขณะที่ค่า 1.0 จะปิดการตั้งค่านี้", + "Talk to Model": "คุยกับโมเดล", + "Tap to interrupt": "แตะเพื่อขัดจังหวะ", + "Task List": "รายการงาน", + "Task Model": "Task Model", + "Tasks": "งาน", + "Tavily API Key": "คีย์ API ของ Tavily", + "Tavily Extract Depth": "ความลึกการดึงข้อมูล Tavily", + "Tell us more:": "เล่าให้เราฟังเพิ่มเติม:", + "Temperature": "Temperature", + "Temporary Chat": "การแชทชั่วคราว", + "Temporary Chat by Default": "ใช้แชทชั่วคราวเป็นค่าเริ่มต้น", + "Text Splitter": "ตัวแบ่งข้อความ", + "Text-to-Speech": "แปลงข้อความเป็นเสียง", + "Text-to-Speech Engine": "เครื่องมือแปลงข้อความเป็นเสียง", + "Thanks for your feedback!": "ขอบคุณสำหรับคำติชมของคุณ!", + "The Application Account DN you bind with for search": "DN ของบัญชีแอปพลิเคชันที่คุณใช้ bind เพื่อค้นหา", + "The base to search for users": "ฐานสำหรับค้นหาผู้ใช้", + "The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.": "ขนาด Batch กำหนดว่ามีคำขอข้อความกี่รายการที่ถูกประมวลผลพร้อมกันในครั้งเดียว ขนาด Batch ที่สูงขึ้นสามารถเพิ่มประสิทธิภาพและความเร็วของโมเดลได้ แต่ก็ต้องใช้หน่วยความจำมากขึ้น", + "The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "นักพัฒนาที่อยู่เบื้องหลังปลั๊กอินนี้เป็นอาสาสมัครจากชุมชนที่มีความมุ่งมั่น หากคุณพบว่าปลั๊กอินนี้มีประโยชน์ โปรดพิจารณามีส่วนร่วมในการพัฒนาปลั๊กอินนี้", + "The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "กระดานจัดอันดับการประเมินอิงตามระบบเรตติ้ง Elo และอัปเดตแบบเรียลไทม์", + "The format to return a response in. Format can be json or a JSON schema.": "รูปแบบในการส่งคืนคำตอบ โดยรูปแบบสามารถเป็น json หรือ JSON Schema ได้", + "The height in pixels to compress images to. Leave empty for no compression.": "ความสูงของภาพเป็นพิกเซลที่จะใช้ในการบีบอัด ปล่อยว่างไว้หากไม่ต้องการบีบอัด", + "The language of the input audio. Supplying the input language in ISO-639-1 (e.g. en) format will improve accuracy and latency. Leave blank to automatically detect the language.": "ภาษาของเสียงอินพุต การระบุภาษาของอินพุตในรูปแบบ ISO-639-1 (เช่น en) จะช่วยเพิ่มความแม่นยำและลดเวลาแฝง เว้นว่างไว้เพื่อให้ตรวจจับภาษาโดยอัตโนมัติ", + "The LDAP attribute that maps to the mail that users use to sign in.": "แอตทริบิวต์ LDAP ที่แมปกับอีเมลที่ผู้ใช้ใช้เพื่อลงชื่อเข้าใช้", + "The LDAP attribute that maps to the username that users use to sign in.": "แอตทริบิวต์ LDAP ที่แมปกับชื่อผู้ใช้ที่ผู้ใช้ใช้สำหรับลงชื่อเข้าใช้", + "The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "กระดานจัดอันดับขณะนี้ยังเป็นเวอร์ชันทดสอบ (เบต้า) และเราอาจปรับวิธีคำนวณคะแนนจัดอันดับได้เมื่อปรับปรุงอัลกอริทึม", + "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "ขนาดไฟล์สูงสุดเป็นหน่วย MB หากขนาดไฟล์เกินค่าที่กำหนดนี้ ไฟล์จะไม่ถูกอัปโหลด", + "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "จำนวนไฟล์สูงสุดที่สามารถใช้ในการแชทได้พร้อมกัน หากจำนวนไฟล์เกินขีดจำกัดนี้ ไฟล์จะไม่ถูกอัปโหลด", + "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "รูปแบบผลลัพธ์สำหรับข้อความ อาจเป็น 'json', 'markdown' หรือ 'html' ค่าเริ่มต้นคือ 'markdown'", + "The passwords you entered don't quite match. Please double-check and try again.": "รหัสผ่านที่คุณป้อนไม่ตรงกัน โปรดตรวจสอบอีกครั้งแล้วลองใหม่", + "The score should be a value between 0.0 (0%) and 1.0 (100%).": "คะแนนควรเป็นค่าระหว่าง 0.0 (0%) ถึง 1.0 (100%)", + "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "ขนาด Stream Delta Chunk สำหรับโมเดล การเพิ่มขนาด Chunk จะทำให้โมเดลตอบกลับเป็นข้อความชิ้นใหญ่ขึ้นในแต่ละครั้ง", + "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Temperature ของโมเดล การเพิ่มค่า Temperature จะทำให้โมเดลตอบอย่างสร้างสรรค์มากขึ้น", + "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "ค่าน้ำหนักของการค้นหาแบบผสม BM25 ค่า 0 เน้นความหมาย (Semantic) ค่า 1 เน้นคำตรงตัว (Lexical) ค่าเริ่มต้น 0.5", + "The width in pixels to compress images to. Leave empty for no compression.": "ความกว้างของภาพเป็นพิกเซลที่จะบีบอัด หากเว้นว่างไว้จะไม่บีบอัด", + "Theme": "ธีม", + "Thinking...": "กำลังคิด...", + "This action cannot be undone. Do you wish to continue?": "การกระทำนี้ไม่สามารถย้อนกลับได้ คุณต้องการดำเนินการต่อหรือไม่?", + "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "สร้างช่องนี้เมื่อ {{createdAt}} นี่คือจุดเริ่มต้นของช่อง {{channelName}}", + "This chat won't appear in history and your messages will not be saved.": "การแชทนี้จะไม่ปรากฏในประวัติ และข้อความของคุณจะไม่ถูกบันทึก", + "This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "สิ่งนี้ช่วยให้มั่นใจได้ว่าบทสนทนาที่สำคัญของคุณจะถูกบันทึกอย่างปลอดภัยในฐานข้อมูล Backend ของคุณ ขอบคุณ!", + "This feature is experimental and may be modified or discontinued without notice.": "ฟีเจอร์นี้เป็นแบบทดลอง และอาจถูกแก้ไขหรือยกเลิกได้โดยไม่ต้องแจ้งให้ทราบล่วงหน้า", + "This is a default user permission and will remain enabled.": "นี่คือสิทธิ์ของผู้ใช้เริ่มต้นและจะถูกเปิดใช้งานไว้เสมอ", + "This is an experimental feature, it may not function as expected and is subject to change at any time.": "นี่เป็นฟีเจอร์ทดลอง อาจไม่ทำงานตามที่คาดไว้และอาจมีการเปลี่ยนแปลงได้ตลอดเวลา", + "This model is not publicly available. Please select another model.": "โมเดลนี้ไม่เปิดให้ใช้งานสาธารณะ โปรดเลือกโมเดลอื่น", + "This option controls how long the model will stay loaded into memory following the request (default: 5m)": "ตัวเลือกนี้ควบคุมระยะเวลาที่โมเดลจะถูกโหลดค้างอยู่ในหน่วยความจำหลังจากคำขอ (ค่าเริ่มต้น: 5 นาที)", + "This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics.": "ตัวเลือกนี้ใช้กำหนดจำนวนโทเค็นที่จะถูกเก็บไว้เมื่อมีการรีเฟรชบริบท ยกตัวอย่างเช่น หากตั้งค่าเป็น 2 โทเค็น 2 ตัวสุดท้ายของบริบทการสนทนาจะถูกเก็บไว้ การเก็บรักษาบริบทสามารถช่วยให้การสนทนาต่อเนื่องมากขึ้น แต่อาจทำให้ความสามารถในการตอบสนองต่อหัวข้อใหม่ลดลง", + "This option enables or disables the use of the reasoning feature in Ollama, which allows the model to think before generating a response. When enabled, the model can take a moment to process the conversation context and generate a more thoughtful response.": "ตัวเลือกนี้ใช้เปิดหรือปิดฟีเจอร์การให้เหตุผลใน Ollama ซึ่งช่วยให้โมเดลสามารถคิดก่อนสร้างคำตอบได้ เมื่อเปิดใช้งาน โมเดลจะใช้เวลาสักครู่เพื่อประมวลผลบริบทของการสนทนาและสร้างคำตอบที่รอบคอบมากขึ้น", + "This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.": "ตัวเลือกนี้ใช้กำหนดจำนวนโทเค็นสูงสุดที่โมเดลสามารถสร้างได้ในคำตอบของตน การเพิ่มขีดจำกัดนี้จะช่วยให้โมเดลตอบได้ยาวขึ้น แต่ก็อาจเพิ่มโอกาสในการสร้างเนื้อหาที่ไม่เป็นประโยชน์หรือไม่เกี่ยวข้องด้วย", + "This option will delete all existing files in the collection and replace them with newly uploaded files.": "ตัวเลือกนี้จะลบไฟล์ทั้งหมดที่มีอยู่ในคอลเลกชันและแทนที่ด้วยไฟล์ที่อัปโหลดใหม่", + "This response was generated by \"{{model}}\"": "การตอบกลับนี้สร้างโดย \"{{model}}\"", + "This will delete": "การดำเนินการนี้จะลบ", + "This will delete {{NAME}} and all its contents.": "การดำเนินการนี้จะลบ {{NAME}} และเนื้อหาทั้งหมด", + "This will delete all models including custom models": "การดำเนินการนี้จะลบโมเดลทั้งหมด รวมถึงโมเดลแบบกำหนดเอง", + "This will delete all models including custom models and cannot be undone.": "การดำเนินการนี้จะลบโมเดลทั้งหมดรวมถึงโมเดลที่กำหนดเอง และไม่สามารถยกเลิกได้", + "This will reset the knowledge base and sync all files. Do you wish to continue?": "การดำเนินการนี้จะรีเซ็ตฐานความรู้และซิงค์ไฟล์ทั้งหมด คุณต้องการดำเนินการต่อหรือไม่?", + "Thorough explanation": "คำอธิบายอย่างละเอียด", + "Thought for {{DURATION}}": "คิดเป็นเวลา {{DURATION}}", + "Thought for {{DURATION}} seconds": "ใช้เวลาคิด {{DURATION}} วินาที", + "Thought for less than a second": "คิดเป็นเวลาน้อยกว่าหนึ่งวินาที", + "Thread": "เธรด", + "Tika": "Tika", + "Tika Server URL required.": "จำเป็นต้องมี URL ของเซิร์ฟเวอร์ Tika", + "Tiktoken": "Tiktoken", + "Title": "ชื่อเรื่อง", + "Title (e.g. Tell me a fun fact)": "ชื่อเรื่อง (เช่น บอกข้อมูลสนุกๆ ให้ฉันฟัง)", + "Title Auto-Generation": "การสร้างชื่ออัตโนมัติ", + "Title cannot be an empty string.": "ชื่อเรื่องต้องไม่เป็นสตริงว่าง", + "Title Generation": "การสร้างชื่อเรื่อง", + "Title Generation Prompt": "พรอมต์สำหรับสร้างชื่อเรื่อง", + "TLS": "TLS", + "To access the available model names for downloading,": "ในการเข้าถึงชื่อโมเดลที่มีให้ดาวน์โหลดนั้น", + "To access the GGUF models available for downloading,": "ในการเข้าถึงโมเดล GGUF ที่มีให้ดาวน์โหลดได้", + "To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "ในการเข้าถึง WebUI โปรดติดต่อผู้ดูแลระบบ ผู้ดูแลระบบสามารถจัดการสถานะผู้ใช้จากแผงควบคุมผู้ดูแลระบบ", + "To attach knowledge base here, add them to the \"Knowledge\" workspace first.": "หากต้องการแนบฐานความรู้ที่นี่ โปรดเพิ่มไปที่ Workspace \"Knowledge\" ก่อน", + "To learn more about available endpoints, visit our documentation.": "หากต้องการเรียนรู้เพิ่มเติมเกี่ยวกับ Endpoints ที่มีอยู่ โปรดดูที่เอกสารของเรา", + "To learn more about powerful prompt variables, click here": "หากต้องการเรียนรู้เพิ่มเติมเกี่ยวกับตัวแปรพรอมต์ที่ทรงพลัง คลิกที่นี่", + "To protect your privacy, only ratings, model IDs, tags, and metadata are shared from your feedback—your chat logs remain private and are not included.": "เพื่อปกป้องความเป็นส่วนตัวของคุณ จะมีการส่งต่อเฉพาะคะแนน ID โมเดล แท็ก และเมทาดาทาจากความคิดเห็นของคุณเท่านั้น โดยบันทึกการแชทของคุณจะยังเป็นความลับและจะไม่ถูกรวมไปด้วย", + "To select toolkits here, add them to the \"Tools\" workspace first.": "ในการเลือกชุดเครื่องมือที่นี่ ให้เพิ่มไปยังพื้นที่ทำงาน \"Tools\" ก่อน", + "Toast notifications for new updates": "การแจ้งเตือนแบบ Toast สำหรับอัปเดตใหม่", + "Today": "วันนี้", + "Today at {{LOCALIZED_TIME}}": "วันนี้เวลา {{LOCALIZED_TIME}}", + "Toggle Sidebar": "สลับแถบด้านข้าง", + "Toggle whether current connection is active.": "สลับการเปิดใช้งานการเชื่อมต่อปัจจุบัน", + "Token": "โทเค็น", + "Too verbose": "ละเอียดเกินไป", + "Tool created successfully": "สร้างเครื่องมือเรียบร้อยแล้ว", + "Tool deleted successfully": "ลบเครื่องมือเรียบร้อยแล้ว", + "Tool Description": "คำอธิบายเครื่องมือ", + "Tool ID": "ID เครื่องมือ", + "Tool imported successfully": "นำเข้าเครื่องมือเรียบร้อยแล้ว", + "Tool Name": "ชื่อเครื่องมือ", + "Tool Servers": "เซิร์ฟเวอร์เครื่องมือ", + "Tool updated successfully": "อัปเดตเครื่องมือสำเร็จแล้ว", + "Tools": "เครื่องมือ", + "Tools Access": "การเข้าถึงเครื่องมือ", + "Tools are a function calling system with arbitrary code execution": "เครื่องมือคือระบบเรียกใช้ฟังก์ชันที่สามารถรันโค้ดใดๆ ก็ได้", + "Tools Function Calling Prompt": "พรอมต์การเรียกใช้ฟังก์ชันของเครื่องมือ", + "Tools have a function calling system that allows arbitrary code execution.": "เครื่องมือมีระบบเรียกใช้ฟังก์ชันที่สามารถรันโค้ดใดๆ ได้", + "Tools Public Sharing": "การแชร์เครื่องมือสาธารณะ", + "Tools Sharing": "", + "Top K": "Top K", + "Top K Reranker": "ตัวจัดเรียงใหม่ตามค่า Top K", + "Transformers": "Transformers", + "Trouble accessing Ollama?": "มีปัญหาในการเข้าถึง Ollama?", + "Trust Proxy Environment": "เชื่อถือสภาพแวดล้อมพร็อกซี", + "Try adjusting your search or filter to find what you are looking for.": "ลองปรับการค้นหาหรือตัวกรองเพื่อค้นหาสิ่งที่คุณต้องการ", + "Try Again": "ลองอีกครั้ง", + "TTS Model": "โมเดล TTS", + "TTS Settings": "การตั้งค่า TTS", + "TTS Voice": "เสียง TTS", + "Type": "ประเภท", + "Type here...": "พิมพ์ที่นี่...", + "Type Hugging Face Resolve (Download) URL": "พิมพ์ URL Hugging Face Resolve (ดาวน์โหลด)", + "Uh-oh! There was an issue with the response.": "โอ๊ะ! มีปัญหากับการตอบกลับ", + "UI": "ส่วนติดต่อผู้ใช้", + "UI Scale": "", + "Unarchive All": "ยกเลิกการเก็บถาวรทั้งหมด", + "Unarchive All Archived Chats": "ยกเลิกการเก็บถาวรแชทที่เก็บถาวรทั้งหมด", + "Unarchive Chat": "ยกเลิกการเก็บถาวรแชท", + "Underline": "ขีดเส้นใต้", + "Unknown": "ไม่ทราบ", + "Unknown User": "ผู้ใช้ที่ไม่ทราบชื่อ", + "Unloads {{FROM_NOW}}": "ยกเลิกการใช้งาน {{FROM_NOW}}", + "Unlock mysteries": "ไขปริศนา", + "Unpin": "ยกเลิกการปักหมุด", + "Unravel secrets": "เปิดเผยความลับ", + "Unsupported file type.": "ไม่รองรับไฟล์ประเภทนี้", + "Untagged": "ไม่มีแท็ก", + "Untitled": "ไม่มีชื่อ", + "Update": "อัปเดต", + "Update and Copy Link": "อัปเดตและคัดลอกลิงก์", + "Update for the latest features and improvements.": "อัปเดตเพื่อรับฟีเจอร์และการปรับปรุงล่าสุด", + "Update password": "อัปเดตรหัสผ่าน", + "Updated": "อัปเดตแล้ว", + "Updated at": "อัปเดตเมื่อ", + "Updated At": "อัปเดตเมื่อ", + "Upgrade to a licensed plan for enhanced capabilities, including custom theming and branding, and dedicated support.": "อัปเกรดเป็นแผนที่มีไลเซนส์เพื่อความสามารถที่เพิ่มขึ้น รวมถึงการปรับธีมและแบรนด์ตามต้องการ และการสนับสนุนเฉพาะทาง", + "Upload": "อัปโหลด", + "Upload a GGUF model": "อัปโหลดโมเดล GGUF", + "Upload Audio": "อัปโหลดเสียง", + "Upload directory": "อัปโหลดไดเรกทอรี", + "Upload files": "อัปโหลดไฟล์", + "Upload Files": "อัปโหลดไฟล์", + "Upload Model": "อัปโหลดโมเดล", + "Upload Pipeline": "อัปโหลด Pipeline", + "Upload Progress": "ความคืบหน้าการอัปโหลด", + "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "ความคืบหน้าการอัปโหลด: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", + "Uploading file...": "", + "URL": "URL", + "URL is required": "ต้องระบุ URL", + "URL Mode": "โหมด URL", + "Usage": "การใช้งาน", + "Use '#' in the prompt input to load and include your knowledge.": "ใช้ '#' ในการป้อน Prompt เพื่อโหลดและรวมความรู้ของคุณ", + "Use /v1/chat/completions endpoint instead of /v1/audio/transcriptions for potentially better accuracy.": "ใช้ Endpoint /v1/chat/completions แทน /v1/audio/transcriptions เพื่อความแม่นยำที่อาจดีขึ้น", + "Use Chat Completions API": "ใช้ API Chat Completions", + "Use groups to group your users and assign permissions.": "ใช้กลุ่มเพื่อจัดกลุ่มผู้ใช้และกำหนดสิทธิ์", + "Use LLM": "ใช้ LLM", + "Use no proxy to fetch page contents.": "ไม่ใช้พร็อกซีในการดึงเนื้อหาหน้าเว็บ", + "Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "ใช้พร็อกซีที่กำหนดโดยตัวแปรสภาพแวดล้อม http_proxy และ https_proxy เพื่อดึงเนื้อหาหน้าเว็บ", + "user": "ผู้ใช้", + "User": "ผู้ใช้", + "User Groups": "กลุ่มผู้ใช้", + "User location successfully retrieved.": "ดึงตำแหน่งที่ตั้งของผู้ใช้สำเร็จแล้ว", + "User menu": "เมนูผู้ใช้", + "User Webhooks": "Webhooks ของผู้ใช้", + "Username": "ชื่อผู้ใช้", + "Users": "ผู้ใช้", + "Uses DefaultAzureCredential to authenticate": "ใช้ DefaultAzureCredential เพื่อยืนยันตัวตน", + "Uses OAuth 2.1 Dynamic Client Registration": "ใช้ OAuth 2.1 การลงทะเบียนไคลเอนต์แบบไดนามิก", + "Using Entire Document": "ใช้เอกสารทั้งหมด", + "Using Focused Retrieval": "ใช้การดึงข้อมูลแบบโฟกัส", + "Using the default arena model with all models. Click the plus button to add custom models.": "ใช้โมเดล Arena ค่าเริ่มต้นกับโมเดลทั้งหมด คลิกปุ่มบวกเพื่อเพิ่มโมเดลที่กำหนดเอง", + "Valid time units:": "หน่วยเวลาที่ใช้ได้:", + "Validate certificate": "ตรวจสอบใบรับรอง", + "Valves": "วาล์ว", + "Valves updated": "วาล์วถูกอัปเดตแล้ว", + "Valves updated successfully": "อัปเดตวาล์วเรียบร้อยแล้ว", + "variable": "ตัวแปร", + "Verify Connection": "ตรวจสอบการเชื่อมต่อ", + "Verify SSL Certificate": "ตรวจสอบใบรับรอง SSL", + "Version": "เวอร์ชัน", + "Version {{selectedVersion}} of {{totalVersions}}": "เวอร์ชัน {{selectedVersion}} จาก {{totalVersions}}", + "View Replies": "ดูการตอบกลับ", + "View Result from **{{NAME}}**": "ดูผลลัพธ์จาก **{{NAME}}**", + "Visibility": "การมองเห็น", + "Vision": "Vision", + "vlm": "vlm", + "Voice": "เสียง", + "Voice Input": "การป้อนเสียง", + "Voice mode": "โหมดเสียง", + "Voice Mode Custom Prompt": "", + "Voice Mode Prompt": "", + "Warning": "คำเตือน", + "Warning:": "คำเตือน:", + "Warning: Enabling this will allow users to upload arbitrary code on the server.": "คำเตือน: การเปิดใช้งานตัวเลือกนี้จะอนุญาตให้ผู้ใช้อัปโหลดโค้ดใดๆ บนเซิร์ฟเวอร์", + "Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "คำเตือน: การรัน Jupyter อนุญาตให้รันโค้ดใดๆ ก็ได้ ซึ่งก่อให้เกิดความเสี่ยงด้านความปลอดภัยอย่างร้ายแรง—โปรดดำเนินการด้วยความระมัดระวังอย่างยิ่ง", + "Web": "เว็บ", + "Web API": "เว็บ API", + "Web Loader Engine": "เอนจินโหลดเว็บ", + "Web Search": "การค้นหาเว็บ", + "Web Search Engine": "เครื่องมือค้นหาเว็บ", + "Web Search in Chat": "การค้นหาเว็บในการแชท", + "Web Search Query Generation": "การสร้างคำค้นหาเว็บ", + "Webhook URL": "URL ของ Webhook", + "Webpage URL": "URL หน้าเว็บ", + "WebUI Settings": "การตั้งค่า WebUI", + "WebUI URL": "URL ของ WebUI", + "WebUI will make requests to \"{{url}}\"": "WebUI จะส่งคำขอไปยัง \"{{url}}\"", + "WebUI will make requests to \"{{url}}/api/chat\"": "WebUI จะส่งคำขอไปที่ \"{{url}}/api/chat\"", + "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI จะส่งคำขอไปยัง \"{{url}}/chat/completions\"", + "What are you trying to achieve?": "คุณพยายามจะทำอะไร?", + "What are you working on?": "คุณกำลังทำอะไรอยู่?", + "What's New in": "มีอะไรใหม่ใน", + "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "เมื่อเปิดใช้งาน โมเดลจะตอบกลับแต่ละข้อความแชทแบบเรียลไทม์ โดยสร้างคำตอบทันทีที่ผู้ใช้ส่งข้อความ โหมดนี้มีประโยชน์สำหรับแอปแชทแบบสด แต่อาจส่งผลต่อประสิทธิภาพบนฮาร์ดแวร์ที่ทำงานช้า", + "wherever you are": "ไม่ว่าคุณจะอยู่ที่ไหน", + "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "ว่าจะแบ่งหน้าผลลัพธ์หรือไม่ แต่ละหน้าจะถูกแยกด้วยเส้นแบ่งแนวนอนและหมายเลขหน้า ค่าเริ่มต้นคือ False", + "Whisper (Local)": "Whisper (Local)", + "Why?": "ทำไม?", + "Widescreen Mode": "โหมดหน้าจอกว้าง", + "Width": "ความกว้าง", + "Won": "ชนะ", + "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "ทำงานร่วมกับ Top K ค่าที่สูงขึ้น (เช่น 0.95) จะนำไปสู่ข้อความที่หลากหลายมากขึ้น ในขณะที่ค่าที่ต่ำลง (เช่น 0.5) จะสร้างข้อความที่มุ่งเน้นและระมัดระวังมากขึ้น", + "Workspace": "พื้นที่ทำงาน", + "Workspace Permissions": "สิทธิ์ของพื้นที่ทำงาน", + "Write": "เขียน", + "Write a prompt suggestion (e.g. Who are you?)": "เขียนคำแนะนำพรอมต์ (เช่น คุณคือใคร?)", + "Write a summary in 50 words that summarizes {{topic}}.": "เขียนสรุป {{topic}} เป็นภาษาไทยให้ได้ 50 คำ", + "Write something...": "เขียนอะไรบางอย่าง...", + "Write your model system prompt content here\ne.g.) You are Mario from Super Mario Bros, acting as an assistant.": "เขียนเนื้อหา System Prompt ของโมเดลของคุณที่นี่\nเช่น: คุณคือมาริโอจาก Super Mario Bros และทำหน้าที่เป็นผู้ช่วย", + "Yacy Instance URL": "URL ของ Yacy Instance", + "Yacy Password": "รหัสผ่าน Yacy", + "Yacy Username": "ชื่อผู้ใช้ Yacy", + "Yesterday": "เมื่อวาน", + "Yesterday at {{LOCALIZED_TIME}}": "เมื่อวาน เวลา {{LOCALIZED_TIME}}", + "You": "คุณ", + "You are currently using a trial license. Please contact support to upgrade your license.": "คุณกำลังใช้สิทธิ์ใช้งานแบบทดลองอยู่ กรุณาติดต่อฝ่ายสนับสนุนเพื่ออัปเกรดสิทธิ์ใช้งานของคุณ", + "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "คุณสามารถแชทกับไฟล์ได้สูงสุด {{maxCount}} ไฟล์ในเวลาเดียวกัน", + "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "คุณสามารถปรับแต่งการโต้ตอบกับ LLM ของคุณได้โดยเพิ่มความจำผ่านปุ่ม ‘จัดการ’ ด้านล่าง เพื่อให้การใช้งานมีประโยชน์และเหมาะกับคุณมากยิ่งขึ้น", + "You cannot upload an empty file.": "คุณไม่สามารถอัปโหลดไฟล์เปล่าได้", + "You do not have permission to send messages in this channel.": "คุณไม่มีสิทธิ์ส่งข้อความในช่องทางนี้", + "You do not have permission to send messages in this thread.": "คุณไม่มีสิทธิ์ส่งข้อความในเธรดนี้", + "You do not have permission to upload files.": "คุณไม่มีสิทธิ์อัปโหลดไฟล์", + "You have no archived conversations.": "คุณไม่มีการสนทนาที่เก็บถาวร", + "You have shared this chat": "คุณได้แชร์แชทนี้แล้ว", + "You're a helpful assistant.": "คุณคือผู้ช่วยที่เป็นประโยชน์", + "You're now logged in.": "คุณเข้าสู่ระบบแล้ว", + "Your Account": "บัญชีของคุณ", + "Your account status is currently pending activation.": "สถานะบัญชีของคุณกำลังรอการเปิดใช้งาน", + "Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "การสนับสนุนทั้งหมดของคุณจะถูกส่งไปยังนักพัฒนาปลั๊กอินโดยตรง Open WebUI จะไม่หักส่วนแบ่งใดๆ อย่างไรก็ตาม แพลตฟอร์มการระดมทุนที่คุณเลือกอาจมีการเก็บค่าธรรมเนียมในส่วนของตนเอง", + "YouTube": "YouTube", + "Youtube Language": "ภาษาของ YouTube", + "Youtube Proxy URL": "URL พร็อกซี YouTube" } diff --git a/src/lib/i18n/locales/tk-TM/translation.json b/src/lib/i18n/locales/tk-TM/translation.json index 6d953b5c4d..fabd864c78 100644 --- a/src/lib/i18n/locales/tk-TM/translation.json +++ b/src/lib/i18n/locales/tk-TM/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "", "Allow Rate Response": "", @@ -144,6 +145,7 @@ "Archived Chats": "Arhiwlenen Çatlar", "archived-chat-export": "", "Are you sure you want to clear all memories? This action cannot be undone.": "", + "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete this channel?": "", "Are you sure you want to delete this message?": "", "Are you sure you want to unarchive all archived chats?": "", @@ -388,12 +390,14 @@ "Default description enabled": "", "Default Features": "", "Default Filters": "", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "Nokatlaýyn Model", "Default model updated": "", "Default Models": "", "Default permissions": "", "Default permissions updated successfully": "", + "Default Pinned Models": "", "Default Prompt Suggestions": "", "Default to 389 or 636 if TLS is enabled": "", "Default to ALL": "", @@ -402,6 +406,7 @@ "Delete": "Öçür", "Delete a model": "", "Delete All Chats": "Ähli Çatlary Öçür", + "Delete all contents inside this folder": "", "Delete All Models": "", "Delete Chat": "", "Delete chat?": "", @@ -730,6 +735,7 @@ "Features": "", "Features Permissions": "", "February": "Fewral", + "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "", "Feedbacks": "", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "", "File Upload": "", "File uploaded successfully": "", + "File uploaded!": "", "Files": "Faýllar", "Filter": "", "Filter is now globally disabled": "", @@ -857,6 +864,7 @@ "Image Compression": "", "Image Compression Height": "", "Image Compression Width": "", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "Surat Döretme", "Image Generation Engine": "", @@ -941,6 +949,7 @@ "Knowledge Name": "", "Knowledge Public Sharing": "", "Knowledge reset successfully.": "", + "Knowledge Sharing": "", "Knowledge updated successfully": "", "Kokoro.js (Browser)": "", "Kokoro.js Dtype": "", @@ -1006,6 +1015,7 @@ "Max Upload Size": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "", "May": "Maý", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "", "Models imported successfully": "", "Models Public Sharing": "", + "Models Sharing": "", "Mojeek Search API Key": "", "More": "Has köp", "More Concise": "", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "", "Notes": "", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "", "Notification Webhook": "", "Notifications": "", @@ -1274,6 +1286,7 @@ "Prompts": "Düşündirişler", "Prompts Access": "", "Prompts Public Sharing": "", + "Prompts Sharing": "", "Provider Type": "", "Public": "Jemgyýetçilik", "Pull \"{{searchValue}}\" from Ollama.com": "", @@ -1457,6 +1470,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "", "Sets the size of the context window used to generate the next token.": "", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "", + "Setting": "", "Settings": "Sazlamalar", "Settings saved successfully!": "", "Share": "Paýlaş", @@ -1637,6 +1651,7 @@ "Tools Function Calling Prompt": "", "Tools have a function calling system that allows arbitrary code execution.": "", "Tools Public Sharing": "", + "Tools Sharing": "", "Top K": "", "Top K Reranker": "", "Transformers": "", @@ -1684,6 +1699,7 @@ "Upload Pipeline": "", "Upload Progress": "", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploading file...": "", "URL": "", "URL is required": "", "URL Mode": "", diff --git a/src/lib/i18n/locales/tr-TR/translation.json b/src/lib/i18n/locales/tr-TR/translation.json index ad99ade55b..4cbd30a428 100644 --- a/src/lib/i18n/locales/tr-TR/translation.json +++ b/src/lib/i18n/locales/tr-TR/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "", "Allow Delete Messages": "Mesaj Silmeye İzin Ver", "Allow File Upload": "Dosya Yüklemeye İzin Ver", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "Sohbette Birden Fazla Modele İzin Ver", "Allow non-local voices": "Yerel olmayan seslere izin verin", "Allow Rate Response": "", @@ -144,6 +145,7 @@ "Archived Chats": "Arşivlenmiş Sohbetler", "archived-chat-export": "arşivlenmiş-sohbet-aktarımı", "Are you sure you want to clear all memories? This action cannot be undone.": "", + "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete this channel?": "Bu kanalı silmek istediğinizden emin misiniz?", "Are you sure you want to delete this message?": "Bu mesajı silmek istediğinizden emin misiniz?", "Are you sure you want to unarchive all archived chats?": "Arşivlenmiş tüm sohbetlerin arşivini kaldırmak istediğinizden emin misiniz?", @@ -388,12 +390,14 @@ "Default description enabled": "", "Default Features": "", "Default Filters": "", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Varsayılan mod, araçları yürütmeden önce bir kez çağırarak daha geniş bir model yelpazesiyle çalışır. Yerel mod, modelin yerleşik araç çağırma yeteneklerinden yararlanır, ancak modelin bu özelliği doğal olarak desteklemesini gerektirir.", "Default Model": "Varsayılan Model", "Default model updated": "Varsayılan model güncellendi", "Default Models": "Varsayılan Modeller", "Default permissions": "Varsayılan izinler", "Default permissions updated successfully": "Varsayılan izinler başarıyla güncellendi", + "Default Pinned Models": "", "Default Prompt Suggestions": "Varsayılan Prompt Önerileri", "Default to 389 or 636 if TLS is enabled": "TLS etkinse 389 veya 636'ya varsayılan olarak", "Default to ALL": "TÜMÜ'nü varsayılan olarak", @@ -402,6 +406,7 @@ "Delete": "Sil", "Delete a model": "Bir modeli sil", "Delete All Chats": "Tüm Sohbetleri Sil", + "Delete all contents inside this folder": "", "Delete All Models": "Tüm Modelleri Sil", "Delete Chat": "Sohbeti Sil", "Delete chat?": "Sohbeti sil?", @@ -730,6 +735,7 @@ "Features": "Özellikler", "Features Permissions": "Özellik Yetkileri", "February": "Şubat", + "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "Geri Bildirim Geçmişi", "Feedbacks": "Geri Bildirimler", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "Dosya boyutu {{maxSize}} MB'yi aşmamalıdır.", "File Upload": "", "File uploaded successfully": "Dosya başarıyla yüklendi", + "File uploaded!": "", "Files": "Dosyalar", "Filter": "", "Filter is now globally disabled": "Filtre artık global olarak devre dışı", @@ -857,6 +864,7 @@ "Image Compression": "Görüntü Sıkıştırma", "Image Compression Height": "", "Image Compression Width": "", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "Görüntü Oluşturma", "Image Generation Engine": "Görüntü Oluşturma Motoru", @@ -941,6 +949,7 @@ "Knowledge Name": "", "Knowledge Public Sharing": "", "Knowledge reset successfully.": "Bilgi başarıyla sıfırlandı.", + "Knowledge Sharing": "", "Knowledge updated successfully": "Bilgi başarıyla güncellendi", "Kokoro.js (Browser)": "", "Kokoro.js Dtype": "", @@ -1006,6 +1015,7 @@ "Max Upload Size": "Maksimum Yükleme Boyutu", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Aynı anda en fazla 3 model indirilebilir. Lütfen daha sonra tekrar deneyin.", "May": "Mayıs", + "MBR": "", "MCP": "MCP", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "Modellerin yapılandırması başarıyla kaydedildi", "Models imported successfully": "", "Models Public Sharing": "", + "Models Sharing": "", "Mojeek Search API Key": "Mojeek Search API Anahtarı", "More": "Daha Fazla", "More Concise": "", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Not: Minimum bir skor belirlerseniz, arama yalnızca minimum skora eşit veya daha yüksek bir skora sahip belgeleri getirecektir.", "Notes": "Notlar", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "Bildirim Sesi", "Notification Webhook": "Bildirim Webhook'u", "Notifications": "Bildirimler", @@ -1274,6 +1286,7 @@ "Prompts": "İstemler", "Prompts Access": "İstemlere Erişim", "Prompts Public Sharing": "", + "Prompts Sharing": "", "Provider Type": "", "Public": "", "Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com'dan \"{{searchValue}}\" çekin", @@ -1457,6 +1470,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "", "Sets the size of the context window used to generate the next token.": "", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "Kullanılacak durma dizilerini ayarlar. Bu desenle karşılaşıldığında, LLM metin oluşturmayı durduracak ve geri dönecektir. Birden çok durma deseni, bir modelfile'da birden çok ayrı durma parametresi belirterek ayarlanabilir.", + "Setting": "", "Settings": "Ayarlar", "Settings saved successfully!": "Ayarlar başarıyla kaydedildi!", "Share": "Paylaş", @@ -1637,6 +1651,7 @@ "Tools Function Calling Prompt": "", "Tools have a function calling system that allows arbitrary code execution.": "Araçlar, keyfi kod yürütme izni veren bir fonksiyon çağırma sistemine sahiptir.", "Tools Public Sharing": "", + "Tools Sharing": "", "Top K": "Top K", "Top K Reranker": "", "Transformers": "Dönüştürücüler", @@ -1684,6 +1699,7 @@ "Upload Pipeline": "Pipeline Yükle", "Upload Progress": "Yükleme İlerlemesi", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploading file...": "", "URL": "URL", "URL is required": "URL gerekli", "URL Mode": "URL Modu", diff --git a/src/lib/i18n/locales/ug-CN/translation.json b/src/lib/i18n/locales/ug-CN/translation.json index 8bd65fdb70..175156a88c 100644 --- a/src/lib/i18n/locales/ug-CN/translation.json +++ b/src/lib/i18n/locales/ug-CN/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "ھۆججەت چىقىرىشقا ئىجازەت", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "سۆھبەتتە بىر قانچە مودېل ئىشلىتىشكە ئىجازەت", "Allow non-local voices": "يەرلىك بولمىغان ئاۋازلارغا ئىجازەت", "Allow Rate Response": "", @@ -144,6 +145,7 @@ "Archived Chats": "ئارخىپلانغان سۆھبەتلەر", "archived-chat-export": "ئارخىپلانغان-سۆھبەت-چىقىرىش", "Are you sure you want to clear all memories? This action cannot be undone.": "بارلىق ئەسلەتمىلەرنى تازىلامسىز؟ بۇ ھەرىكەتنى ئەمدى ئەسلىگە كەلتۈرگىلى بولمايدۇ.", + "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete this channel?": "بۇ قانالنى ئۆچۈرەمسىز؟", "Are you sure you want to delete this message?": "بۇ ئۇچۇرنى ئۆچۈرەمسىز؟", "Are you sure you want to unarchive all archived chats?": "بارلىق ئارخىپلانغان سۆھبەتلەرنى قايتا ئەسلىگە كەلتۈرەمسىز؟", @@ -388,12 +390,14 @@ "Default description enabled": "", "Default Features": "", "Default Filters": "", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "سۈكۈتتىكى ھالەت ئىجرا قىلىنىشتىن بۇرۇن بىر قېتىم چاقىرىش قوراللىرى ئارقىلىق تېخىمۇ كەڭ مودېللار بىلەن ئىشلەيدۇ. يەرلىك ھالەت مودېلنىڭ ئىچىگە قورال چاقىرىش ئىقتىدارىنى جارى قىلدۇرىدۇ ، ئەمما مودېلنىڭ بۇ ئىقتىدارنى ئەسلىدىنلا قوللىشىنى تەلەپ قىلىدۇ.", "Default Model": "كۆڭۈلدىكى مودېل", "Default model updated": "كۆڭۈلدىكى مودېل يېڭىلاندى", "Default Models": "كۆڭۈلدىكى مودېللار", "Default permissions": "كۆڭۈلدىكى ھوقۇق", "Default permissions updated successfully": "كۆڭۈلدىكى ھوقۇقلار مۇۋەپپەقىيەتلىك يېڭىلاندى", + "Default Pinned Models": "", "Default Prompt Suggestions": "كۆڭۈلدىكى تۈرتكە تەكلىپلىرى", "Default to 389 or 636 if TLS is enabled": "TLS قوزغىتىلسا كۆڭۈلدىكى 389 ياكى 636 بولىدۇ", "Default to ALL": "كۆڭۈلدىكى ALL", @@ -402,6 +406,7 @@ "Delete": "ئۆچۈرۈش", "Delete a model": "مودېل ئۆچۈرۈش", "Delete All Chats": "بارلىق سۆھبەتلەرنى ئۆچۈرۈش", + "Delete all contents inside this folder": "", "Delete All Models": "بارلىق مودېللارنى ئۆچۈرۈش", "Delete Chat": "سۆھبەت ئۆچۈرۈش", "Delete chat?": "سۆھبەت ئۆچۈرەمسىز؟", @@ -730,6 +735,7 @@ "Features": "ئىقتىدارلار", "Features Permissions": "ئىقتىدار ھوقۇقى", "February": "فېۋرال", + "Feedback deleted successfully": "", "Feedback Details": "پىكىر تەپسىلاتى", "Feedback History": "پىكىر تارىخى", "Feedbacks": "پىكىرلەر", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "ھۆججەت چوڭلۇقى {{maxSize}} MB تىن ئېشىپ كەتمىسۇن.", "File Upload": "ھۆججەت چىقىرىش", "File uploaded successfully": "ھۆججەت مۇۋەپپەقىيەتلىك چىقىرىلدى", + "File uploaded!": "", "Files": "ھۆججەتلەر", "Filter": "", "Filter is now globally disabled": "سۈزگۈچ ھازىر بارلىق سىستېمىدا چەكلەندى", @@ -857,6 +864,7 @@ "Image Compression": "رەسىم پرىسلاش", "Image Compression Height": "رەسىم پرىسلاش ئېگىزلىكى", "Image Compression Width": "رەسىم پرىسلاش كەڭلىكى", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "رەسىم ھاسىل قىلىش", "Image Generation Engine": "رەسىم ھاسىل قىلىش ماتورى", @@ -941,6 +949,7 @@ "Knowledge Name": "", "Knowledge Public Sharing": "بىلىمنى ئاممىغا ھەمبەھىرلەش", "Knowledge reset successfully.": "بىلىم مۇۋەپپەقىيەتلىك قايتا تەڭشەلدى.", + "Knowledge Sharing": "", "Knowledge updated successfully": "بىلىم مۇۋەپپەقىيەتلىك يېڭىلاندى", "Kokoro.js (Browser)": "Kokoro.js (تور كۆرگۈچ)", "Kokoro.js Dtype": "Kokoro.js Dtype", @@ -1006,6 +1015,7 @@ "Max Upload Size": "ئەڭ چوڭ چىقىرىش چوڭلۇقى", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "بىر ۋاقىتتا ئەڭ كۆپ 3 مودېل چۈشۈرۈلىدۇ. كىيىنچە قايتا سىناڭ.", "May": "ماي", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "مودېل تەڭشەكلىرى مۇۋەپپەقىيەتلىك ساقلاندى", "Models imported successfully": "", "Models Public Sharing": "مودېللارنى ئاممىغا ھەمبەھىرلەش", + "Models Sharing": "", "Mojeek Search API Key": "Mojeek ئىزدەش API ئاچقۇچى", "More": "تېخىمۇ كۆپ", "More Concise": "", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "ئەسكەرتىش: ئەگەر ئەڭ تۆۋەن نومۇر بەلگىلىسىڭىز ، ئىزدەش پەقەت ئەڭ تۆۋەن نومۇردىن چوڭ ياكى تەڭ بولغان ھۆججەتلەرنى قايتۇرىدۇ.", "Notes": "خاتىرە", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "ئۇقتۇرۇش ئاۋازى", "Notification Webhook": "ئۇقتۇرۇش webhook", "Notifications": "ئۇقتۇرۇشلار", @@ -1274,6 +1286,7 @@ "Prompts": "تۈرتكەلەر", "Prompts Access": "تۈرتكە زىيارىتى", "Prompts Public Sharing": "تۈرتكە ئاممىغا ھەمبەھىرلەش", + "Prompts Sharing": "", "Provider Type": "", "Public": "ئاممىۋى", "Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com دىن \"{{searchValue}}\" نى تارتىش", @@ -1457,6 +1470,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "ھاسىل قىلىش ئۈچۈن ئىشلتىدىغان توخۇم سانىنى بەلگىلەيدۇ. بەلگىلەنگەن بولسا، بىر خىل تۈرتكەقا بىر خىل تېكست چىقىرىدۇ.", "Sets the size of the context window used to generate the next token.": "كېيىنكى ئىمنى ھاسىل قىلىش ئۈچۈن مەزمۇن كۆزنەك چوڭلۇقىنى بەلگىلەيدۇ.", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "ئىشلىتىلىدىغان توختاش تىزىقى بەلگىلەيدۇ. بۇ ئۇسلۇب كۆرۈلسە، LLM تېكست چىقىرىشنى توختىتىدۇ. بىر قانچە توختاش ئۇسلۇبنى modelfile دا كۆرسىتىشكە بولىدۇ.", + "Setting": "", "Settings": "تەڭشەك", "Settings saved successfully!": "تەڭشەك مۇۋەپپەقىيەتلىك ساقلاندى!", "Share": "ھەمبەھىرلەش", @@ -1637,6 +1651,7 @@ "Tools Function Calling Prompt": "قورال فۇنكسىيەسىنى چاقىرىش تۈرتكەسى", "Tools have a function calling system that allows arbitrary code execution.": "قوراللار خالىغان كود ئىجرا قىلىشقا ئىمكان بېرىدىغان فۇنكسىيە چاقىرىش سىستېمىسىغا ئىگە.", "Tools Public Sharing": "قوراللارنى ئاممىغا ھەمبەھىرلەش", + "Tools Sharing": "", "Top K": "Top K", "Top K Reranker": "Top K قايتا تەرتىپلەش", "Transformers": "Transformers", @@ -1684,6 +1699,7 @@ "Upload Pipeline": "جەريان چىقىرىش", "Upload Progress": "چىقىرىش جەريانى", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploading file...": "", "URL": "URL", "URL is required": "", "URL Mode": "URL ھالىتى", diff --git a/src/lib/i18n/locales/uk-UA/translation.json b/src/lib/i18n/locales/uk-UA/translation.json index 0590023f68..a518e83f78 100644 --- a/src/lib/i18n/locales/uk-UA/translation.json +++ b/src/lib/i18n/locales/uk-UA/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "Дозволити завантаження файлів", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Дозволити не локальні голоси", "Allow Rate Response": "", @@ -144,6 +145,7 @@ "Archived Chats": "Архівовані чати", "archived-chat-export": "експорт-архівованих-чатів", "Are you sure you want to clear all memories? This action cannot be undone.": "Ви впевнені, що хочете очистити усі спогади? Цю дію неможливо скасувати.", + "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete this channel?": "Ви впевнені, що хочете видалити цей канал?", "Are you sure you want to delete this message?": "Ви впевнені, що хочете видалити це повідомлення?", "Are you sure you want to unarchive all archived chats?": "Ви впевнені, що хочете розархівувати усі архівовані чати?", @@ -388,12 +390,14 @@ "Default description enabled": "", "Default Features": "", "Default Filters": "", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Режим за замовчуванням працює з ширшим діапазоном моделей, викликаючи інструменти один раз перед виконанням. Рідний режим використовує вбудовані можливості виклику інструментів моделі, але вимагає, щоб модель спочатку підтримувала цю функцію.", "Default Model": "Модель за замовчуванням", "Default model updated": "Модель за замовчуванням оновлено", "Default Models": "Моделі за замовчуванням", "Default permissions": "Дозволи за замовчуванням", "Default permissions updated successfully": "Дозволи за замовчуванням успішно оновлено", + "Default Pinned Models": "", "Default Prompt Suggestions": "Пропозиції промтів замовчуванням", "Default to 389 or 636 if TLS is enabled": "За замовчуванням використовується 389 або 636, якщо TLS увімкнено.", "Default to ALL": "За замовчуванням — УСІ.", @@ -402,6 +406,7 @@ "Delete": "Видалити", "Delete a model": "Видалити модель", "Delete All Chats": "Видалити усі чати", + "Delete all contents inside this folder": "", "Delete All Models": "Видалити усі моделі", "Delete Chat": "Видалити чат", "Delete chat?": "Видалити чат?", @@ -730,6 +735,7 @@ "Features": "Особливості", "Features Permissions": "Дозволи функцій", "February": "Лютий", + "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "Історія відгуків", "Feedbacks": "Відгуки", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "Розмір файлу не повинен перевищувати {{maxSize}} МБ.", "File Upload": "", "File uploaded successfully": "Файл успішно завантажено", + "File uploaded!": "", "Files": "Файли", "Filter": "", "Filter is now globally disabled": "Фільтр глобально вимкнено", @@ -857,6 +864,7 @@ "Image Compression": "Стиснення зображень", "Image Compression Height": "", "Image Compression Width": "", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "Генерація зображень", "Image Generation Engine": "Механізм генерації зображень", @@ -941,6 +949,7 @@ "Knowledge Name": "", "Knowledge Public Sharing": "Публічний обмін знаннями", "Knowledge reset successfully.": "Знання успішно скинуто.", + "Knowledge Sharing": "", "Knowledge updated successfully": "Знання успішно оновлено", "Kokoro.js (Browser)": "Kokoro.js (Браузер)", "Kokoro.js Dtype": "Kokoro.js Dtype", @@ -1006,6 +1015,7 @@ "Max Upload Size": "Макс. розмір завантаження", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Максимум 3 моделі можна завантажити одночасно. Будь ласка, спробуйте пізніше.", "May": "Травень", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "Конфігурацію моделей успішно збережено", "Models imported successfully": "", "Models Public Sharing": "Публічний обмін моделями", + "Models Sharing": "", "Mojeek Search API Key": "API ключ для пошуку Mojeek", "More": "Більше", "More Concise": "", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Примітка: Якщо ви встановите мінімальну кількість балів, пошук поверне лише документи з кількістю балів, більшою або рівною мінімальній кількості балів.", "Notes": "Примітки", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "Звук сповіщення", "Notification Webhook": "Вебхук для сповіщень", "Notifications": "Сповіщення", @@ -1274,6 +1286,7 @@ "Prompts": "Промти", "Prompts Access": "Доступ до підказок", "Prompts Public Sharing": "Публічний обмін промтами", + "Prompts Sharing": "", "Provider Type": "", "Public": "Публічний", "Pull \"{{searchValue}}\" from Ollama.com": "Завантажити \"{{searchValue}}\" з Ollama.com", @@ -1459,6 +1472,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "Встановлює початкове значення випадкового числа, яке використовується для генерації. Встановлення конкретного числа забезпечить однаковий текст для того ж запиту.", "Sets the size of the context window used to generate the next token.": "Встановлює розмір вікна контексту, яке використовується для генерації наступного токена.", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "Встановлює послідовності зупинки, які будуть використовуватися. Коли зустрічається така послідовність, LLM припиняє генерацію тексту і повертає результат. Можна встановити кілька послідовностей зупинки, вказавши кілька окремих параметрів зупинки у файлі моделі.", + "Setting": "", "Settings": "Налаштування", "Settings saved successfully!": "Налаштування успішно збережено!", "Share": "Поділитися", @@ -1639,6 +1653,7 @@ "Tools Function Calling Prompt": "Підказка для виклику функцій інструментів", "Tools have a function calling system that allows arbitrary code execution.": "Інструменти мають систему виклику функцій, яка дозволяє виконання довільного коду.", "Tools Public Sharing": "Публічний обмін інструментами", + "Tools Sharing": "", "Top K": "Top K", "Top K Reranker": "Top K Реранкер", "Transformers": "Трансформери", @@ -1686,6 +1701,7 @@ "Upload Pipeline": "Завантажити конвеєр", "Upload Progress": "Прогрес завантаження", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploading file...": "", "URL": "URL", "URL is required": "", "URL Mode": "Режим URL-адреси", diff --git a/src/lib/i18n/locales/ur-PK/translation.json b/src/lib/i18n/locales/ur-PK/translation.json index efc40dfcd1..72a1540571 100644 --- a/src/lib/i18n/locales/ur-PK/translation.json +++ b/src/lib/i18n/locales/ur-PK/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "غیر مقامی آوازوں کی اجازت دیں", "Allow Rate Response": "", @@ -144,6 +145,7 @@ "Archived Chats": "محفوظ شدہ بات چیت", "archived-chat-export": "", "Are you sure you want to clear all memories? This action cannot be undone.": "", + "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete this channel?": "", "Are you sure you want to delete this message?": "", "Are you sure you want to unarchive all archived chats?": "", @@ -388,12 +390,14 @@ "Default description enabled": "", "Default Features": "", "Default Filters": "", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "ڈیفالٹ ماڈل", "Default model updated": "ڈیفالٹ ماڈل اپ ڈیٹ ہو گیا", "Default Models": "", "Default permissions": "", "Default permissions updated successfully": "", + "Default Pinned Models": "", "Default Prompt Suggestions": "ڈیفالٹ پرامپٹ تجاویز", "Default to 389 or 636 if TLS is enabled": "", "Default to ALL": "", @@ -402,6 +406,7 @@ "Delete": "حذف کریں", "Delete a model": "ایک ماڈل حذف کریں", "Delete All Chats": "تمام چیٹس حذف کریں", + "Delete all contents inside this folder": "", "Delete All Models": "", "Delete Chat": "چیٹ حذف کریں", "Delete chat?": "چیٹ حذف کریں؟", @@ -730,6 +735,7 @@ "Features": "", "Features Permissions": "", "February": "فروری", + "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "تاریخ رائے", "Feedbacks": "", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "فائل کا سائز {{maxSize}} ایم بی سے زیادہ نہیں ہونا چاہیے", "File Upload": "", "File uploaded successfully": "", + "File uploaded!": "", "Files": "فائلز", "Filter": "", "Filter is now globally disabled": "فلٹر اب عالمی طور پر غیر فعال ہے", @@ -857,6 +864,7 @@ "Image Compression": "", "Image Compression Height": "", "Image Compression Width": "", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "", "Image Generation Engine": "امیج جنریشن انجن", @@ -941,6 +949,7 @@ "Knowledge Name": "", "Knowledge Public Sharing": "", "Knowledge reset successfully.": "علم کو کامیابی کے ساتھ دوبارہ ترتیب دیا گیا", + "Knowledge Sharing": "", "Knowledge updated successfully": "علم کامیابی سے تازہ کر دیا گیا ہے", "Kokoro.js (Browser)": "", "Kokoro.js Dtype": "", @@ -1006,6 +1015,7 @@ "Max Upload Size": "زیادہ سے زیادہ اپلوڈ سائز", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "بیک وقت زیادہ سے زیادہ 3 ماڈل ڈاؤن لوڈ کیے جا سکتے ہیں براہ کرم بعد میں دوبارہ کوشش کریں", "May": "مئی", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "", "Models imported successfully": "", "Models Public Sharing": "", + "Models Sharing": "", "Mojeek Search API Key": "", "More": "مزید", "More Concise": "", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "نوٹ: اگر آپ کم از کم سکور سیٹ کرتے ہیں، تو تلاش صرف ان دستاویزات کو واپس کرے گی جن کا سکور کم از کم سکور کے برابر یا اس سے زیادہ ہوگا", "Notes": "نوٹس", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "", "Notification Webhook": "", "Notifications": "اطلاعات", @@ -1274,6 +1286,7 @@ "Prompts": "پرومپٹس", "Prompts Access": "", "Prompts Public Sharing": "", + "Prompts Sharing": "", "Provider Type": "", "Public": "", "Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com سے \"{{searchValue}}\" کو کھینچیں", @@ -1457,6 +1470,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "", "Sets the size of the context window used to generate the next token.": "", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "", + "Setting": "", "Settings": "ترتیبات", "Settings saved successfully!": "ترتیبات کامیابی کے ساتھ محفوظ ہو گئیں!", "Share": "اشتراک کریں", @@ -1637,6 +1651,7 @@ "Tools Function Calling Prompt": "", "Tools have a function calling system that allows arbitrary code execution.": "ٹولز کے پاس ایک فنکشن کالنگ سسٹم ہے جو اختیاری کوڈ کی عمل درآمد کی اجازت دیتا ہے", "Tools Public Sharing": "", + "Tools Sharing": "", "Top K": "اوپر کے K", "Top K Reranker": "", "Transformers": "", @@ -1684,6 +1699,7 @@ "Upload Pipeline": "اپ لوڈ پائپ لائن", "Upload Progress": "اپ لوڈ کی پیش رفت", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploading file...": "", "URL": "", "URL is required": "", "URL Mode": "یو آر ایل موڈ", diff --git a/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json b/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json index 317f0dda63..0d43c48466 100644 --- a/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json +++ b/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "Файл юклашга рухсат беринг", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "Чатда бир нечта моделларга рухсат беринг", "Allow non-local voices": "Маҳаллий бўлмаган овозларга рухсат беринг", "Allow Rate Response": "", @@ -144,6 +145,7 @@ "Archived Chats": "Архивланган чатлар", "archived-chat-export": "архивланган-чат-экспорт", "Are you sure you want to clear all memories? This action cannot be undone.": "Ҳақиқатан ҳам барча хотираларни тозаламоқчимисиз? Бу амални ортга қайтариб бўлмайди.", + "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete this channel?": "Ҳақиқатан ҳам бу канални ўчириб ташламоқчимисиз?", "Are you sure you want to delete this message?": "Ҳақиқатан ҳам бу хабарни ўчириб ташламоқчимисиз?", "Are you sure you want to unarchive all archived chats?": "Ҳақиқатан ҳам барча архивланган чатларни архивдан чиқармоқчимисиз?", @@ -388,12 +390,14 @@ "Default description enabled": "", "Default Features": "", "Default Filters": "", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "Стандарт модел", "Default model updated": "Стандарт модел янгиланди", "Default Models": "Стандарт моделлар", "Default permissions": "Бирламчи рухсатлар", "Default permissions updated successfully": "Бирламчи рухсатлар муваффақиятли янгиланди", + "Default Pinned Models": "", "Default Prompt Suggestions": "Стандарт таклифлар", "Default to 389 or 636 if TLS is enabled": "Агар TLS ёқилган бўлса, сукут бўйича 389 ёки 636", "Default to ALL": "Барчаси учун бирламчи", @@ -402,6 +406,7 @@ "Delete": "Ўчириш", "Delete a model": "Моделни ўчириш", "Delete All Chats": "Барча суҳбатларни ўчириш", + "Delete all contents inside this folder": "", "Delete All Models": "Барча моделларни ўчириш", "Delete Chat": "Чатни ўчириш", "Delete chat?": "Чат ўчирилсинми?", @@ -730,6 +735,7 @@ "Features": "Хусусиятлари", "Features Permissions": "Хусусиятлар Рухсатлар", "February": "Феврал", + "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "Фикр-мулоҳаза тарихи", "Feedbacks": "Фикр-мулоҳазалар", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "Файл ҳажми {{махСизе}} МБ дан ошмаслиги керак.", "File Upload": "Файл юклаш", "File uploaded successfully": "Файл муваффақиятли юкланди", + "File uploaded!": "", "Files": "Файллар", "Filter": "", "Filter is now globally disabled": "Филтр энди бутун дунё бўйлаб ўчириб қўйилган", @@ -857,6 +864,7 @@ "Image Compression": "Тасвирни сиқиш", "Image Compression Height": "", "Image Compression Width": "", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "Тасвир яратиш", "Image Generation Engine": "Тасвир яратиш механизми", @@ -941,6 +949,7 @@ "Knowledge Name": "", "Knowledge Public Sharing": "Билимларни оммавий алмашиш", "Knowledge reset successfully.": "Маълумотлар қайта тикланди.", + "Knowledge Sharing": "", "Knowledge updated successfully": "Билим муваффақиятли янгиланди", "Kokoro.js (Browser)": "Кокоро.жс (браузер)", "Kokoro.js Dtype": "Кокоро.жс Д тури", @@ -1006,6 +1015,7 @@ "Max Upload Size": "Максимал юклаш ҳажми", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Бир вақтнинг ўзида максимал 3 та моделни юклаб олиш мумкин. Кейинроқ қайта уриниб кўринг.", "May": "май", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "Моделлар конфигурацияси муваффақиятли сақланди", "Models imported successfully": "", "Models Public Sharing": "Моделларни оммавий алмашиш", + "Models Sharing": "", "Mojeek Search API Key": "Можеэк қидирув АПИ калити", "More": "Кўпроқ", "More Concise": "", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Эслатма: Агар сиз минимал балл қўйсангиз, қидирув фақат минимал баллдан каттароқ ёки унга тенг баллга эга ҳужжатларни қайтаради.", "Notes": "Эслатмалар", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "Билдиришнома овози", "Notification Webhook": "Билдиришнома веб-ҳук", "Notifications": "Билдиришномалар", @@ -1274,6 +1286,7 @@ "Prompts": "Кўрсатмалар", "Prompts Access": "Киришни таклиф қилади", "Prompts Public Sharing": "Умумий алмашишни таклиф қилади", + "Prompts Sharing": "", "Provider Type": "", "Public": "Оммавий", "Pull \"{{searchValue}}\" from Ollama.com": "Ollama.cом сайтидан “{{сеарчВалуе}}”ни тортинг", @@ -1457,6 +1470,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "Насл қилиш учун тасодифий сонлар уруғини ўрнатади. Буни маълум бир рақамга ўрнатиш, моделни бир хил сўров учун бир хил матн яратишга мажбур қилади.", "Sets the size of the context window used to generate the next token.": "Кейинги токенни яратиш учун фойдаланиладиган контекст ойнасининг ҳажмини белгилайди.", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "Фойдаланиш учун тўхташ кетма-кетликларини ўрнатади. Ушбу нақшга дуч келганда, ЛЛМ матн яратишни тўхтатади ва қайтиб келади. Модел файлида бир нечта алоҳида тўхташ параметрларини белгилаш орқали бир нечта тўхташ нақшлари ўрнатилиши мумкин.", + "Setting": "", "Settings": "Созламалар", "Settings saved successfully!": "Созламалар муваффақиятли сақланди!", "Share": "Улашиш", @@ -1637,6 +1651,7 @@ "Tools Function Calling Prompt": "Асбоблар функсияси чақируви", "Tools have a function calling system that allows arbitrary code execution.": "Асбоблар ўзбошимчалик билан кодни бажаришга имкон берувчи функсияларни чақириш тизимига эга.", "Tools Public Sharing": "Умумий алмашиш воситалари", + "Tools Sharing": "", "Top K": "Юқори К", "Top K Reranker": "Топ К Реранкер", "Transformers": "Трансформаторлар", @@ -1684,6 +1699,7 @@ "Upload Pipeline": "Қувур линиясини юклаш", "Upload Progress": "Юклаш жараёни", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploading file...": "", "URL": "УРЛ", "URL is required": "", "URL Mode": "УРЛ режими", diff --git a/src/lib/i18n/locales/uz-Latn-Uz/translation.json b/src/lib/i18n/locales/uz-Latn-Uz/translation.json index 9dfb8aafcb..a974d2a223 100644 --- a/src/lib/i18n/locales/uz-Latn-Uz/translation.json +++ b/src/lib/i18n/locales/uz-Latn-Uz/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "Fayl yuklashga ruxsat bering", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "Chatda bir nechta modellarga ruxsat bering", "Allow non-local voices": "Mahalliy bo'lmagan ovozlarga ruxsat bering", "Allow Rate Response": "", @@ -144,6 +145,7 @@ "Archived Chats": "Arxivlangan chatlar", "archived-chat-export": "arxivlangan-chat-eksport", "Are you sure you want to clear all memories? This action cannot be undone.": "Haqiqatan ham barcha xotiralarni tozalamoqchimisiz? Bu amalni ortga qaytarib bo‘lmaydi.", + "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete this channel?": "Haqiqatan ham bu kanalni oʻchirib tashlamoqchimisiz?", "Are you sure you want to delete this message?": "Haqiqatan ham bu xabarni oʻchirib tashlamoqchimisiz?", "Are you sure you want to unarchive all archived chats?": "Haqiqatan ham barcha arxivlangan chatlarni arxivdan chiqarmoqchimisiz?", @@ -388,12 +390,14 @@ "Default description enabled": "", "Default Features": "", "Default Filters": "", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "Standart model", "Default model updated": "Standart model yangilandi", "Default Models": "Standart modellar", "Default permissions": "Birlamchi ruxsatlar", "Default permissions updated successfully": "Birlamchi ruxsatlar muvaffaqiyatli yangilandi", + "Default Pinned Models": "", "Default Prompt Suggestions": "Standart takliflar", "Default to 389 or 636 if TLS is enabled": "Agar TLS yoqilgan bo'lsa, sukut bo'yicha 389 yoki 636", "Default to ALL": "ALL uchun birlamchi", @@ -402,6 +406,7 @@ "Delete": "Oʻchirish", "Delete a model": "Modelni o'chirish", "Delete All Chats": "Barcha suhbatlarni o'chirish", + "Delete all contents inside this folder": "", "Delete All Models": "Barcha modellarni o'chirish", "Delete Chat": "Chatni oʻchirish", "Delete chat?": "Chat oʻchirilsinmi?", @@ -730,6 +735,7 @@ "Features": "Xususiyatlari", "Features Permissions": "Xususiyatlar Ruxsatlar", "February": "Fevral", + "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "Fikr-mulohaza tarixi", "Feedbacks": "Fikr-mulohazalar", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "Fayl hajmi {{maxSize}} MB dan oshmasligi kerak.", "File Upload": "Fayl yuklash", "File uploaded successfully": "Fayl muvaffaqiyatli yuklandi", + "File uploaded!": "", "Files": "Fayllar", "Filter": "", "Filter is now globally disabled": "Filtr endi butun dunyo bo'ylab o'chirib qo'yilgan", @@ -857,6 +864,7 @@ "Image Compression": "Tasvirni siqish", "Image Compression Height": "", "Image Compression Width": "", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "Tasvir yaratish", "Image Generation Engine": "Tasvir yaratish mexanizmi", @@ -941,6 +949,7 @@ "Knowledge Name": "", "Knowledge Public Sharing": "Bilimlarni ommaviy almashish", "Knowledge reset successfully.": "Ma'lumotlar qayta tiklandi.", + "Knowledge Sharing": "", "Knowledge updated successfully": "Bilim muvaffaqiyatli yangilandi", "Kokoro.js (Browser)": "Kokoro.js (brauzer)", "Kokoro.js Dtype": "Kokoro.js D turi", @@ -1006,6 +1015,7 @@ "Max Upload Size": "Maksimal yuklash hajmi", "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.", "May": "may", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "Modellar konfiguratsiyasi muvaffaqiyatli saqlandi", "Models imported successfully": "", "Models Public Sharing": "Modellarni ommaviy almashish", + "Models Sharing": "", "Mojeek Search API Key": "Mojeek qidiruv API kaliti", "More": "Ko'proq", "More Concise": "", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Eslatma: Agar siz minimal ball qo'ysangiz, qidiruv faqat minimal balldan kattaroq yoki unga teng ballga ega hujjatlarni qaytaradi.", "Notes": "Eslatmalar", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "Bildirishnoma ovozi", "Notification Webhook": "Bildirishnoma veb-huk", "Notifications": "Bildirishnomalar", @@ -1274,6 +1286,7 @@ "Prompts": "Ko'rsatmalar", "Prompts Access": "Kirishni taklif qiladi", "Prompts Public Sharing": "Umumiy almashishni taklif qiladi", + "Prompts Sharing": "", "Provider Type": "", "Public": "Ommaviy", "Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com saytidan “{{searchValue}}”ni torting", @@ -1457,6 +1470,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "Nasl qilish uchun tasodifiy sonlar urug'ini o'rnatadi. Buni ma'lum bir raqamga o'rnatish, modelni bir xil so'rov uchun bir xil matn yaratishga majbur qiladi.", "Sets the size of the context window used to generate the next token.": "Keyingi tokenni yaratish uchun foydalaniladigan kontekst oynasining hajmini belgilaydi.", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "Foydalanish uchun to'xtash ketma-ketliklarini o'rnatadi. Ushbu naqshga duch kelganda, LLM matn yaratishni to'xtatadi va qaytib keladi. Model faylida bir nechta alohida to'xtash parametrlarini belgilash orqali bir nechta to'xtash naqshlari o'rnatilishi mumkin.", + "Setting": "", "Settings": "Sozlamalar", "Settings saved successfully!": "Sozlamalar muvaffaqiyatli saqlandi!", "Share": "Ulashish", @@ -1637,6 +1651,7 @@ "Tools Function Calling Prompt": "Asboblar funksiyasi chaqiruvi", "Tools have a function calling system that allows arbitrary code execution.": "Asboblar o'zboshimchalik bilan kodni bajarishga imkon beruvchi funksiyalarni chaqirish tizimiga ega.", "Tools Public Sharing": "Umumiy almashish vositalari", + "Tools Sharing": "", "Top K": "Yuqori K", "Top K Reranker": "Top K Reranker", "Transformers": "Transformatorlar", @@ -1684,6 +1699,7 @@ "Upload Pipeline": "Quvur liniyasini yuklash", "Upload Progress": "Yuklash jarayoni", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploading file...": "", "URL": "URL", "URL is required": "", "URL Mode": "URL rejimi", diff --git a/src/lib/i18n/locales/vi-VN/translation.json b/src/lib/i18n/locales/vi-VN/translation.json index 66d8b2d9d4..a2ae5e1838 100644 --- a/src/lib/i18n/locales/vi-VN/translation.json +++ b/src/lib/i18n/locales/vi-VN/translation.json @@ -95,6 +95,7 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "Cho phép Tải tệp lên", + "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Cho phép giọng nói không bản xứ", "Allow Rate Response": "", @@ -144,6 +145,7 @@ "Archived Chats": "Lưu các cuộc Chat", "archived-chat-export": "xuất-chat-lưu-trữ", "Are you sure you want to clear all memories? This action cannot be undone.": "Bạn có chắc chắn muốn xóa tất cả bộ nhớ không? Hành động này không thể hoàn tác.", + "Are you sure you want to delete \"{{NAME}}\"?": "", "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 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 unarchive all archived chats?": "Bạn có chắc chắn muốn bỏ lưu trữ tất cả các cuộc trò chuyện đã lưu trữ không?", @@ -388,12 +390,14 @@ "Default description enabled": "", "Default Features": "", "Default Filters": "", + "Default Group": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Chế độ mặc định hoạt động với nhiều loại mô hình hơn bằng cách gọi các công cụ một lần trước khi thực thi. Chế độ gốc tận dụng khả năng gọi công cụ tích hợp sẵn của mô hình, nhưng yêu cầu mô hình phải hỗ trợ tính năng này vốn có.", "Default Model": "Model mặc định", "Default model updated": "Mô hình mặc định đã được cập nhật", "Default Models": "Các Mô hình Mặc định", "Default permissions": "Quyền mặc định", "Default permissions updated successfully": "Đã cập nhật quyền mặc định thành công", + "Default Pinned Models": "", "Default Prompt Suggestions": "Đề xuất prompt mặc định", "Default to 389 or 636 if TLS is enabled": "Mặc định là 389 hoặc 636 nếu TLS được bật", "Default to ALL": "Mặc định là TẤT CẢ", @@ -402,6 +406,7 @@ "Delete": "Xóa", "Delete a model": "Xóa mô hình", "Delete All Chats": "Xóa mọi cuộc Chat", + "Delete all contents inside this folder": "", "Delete All Models": "Xóa Tất cả Mô hình", "Delete Chat": "Xóa chat", "Delete chat?": "Xóa chat?", @@ -730,6 +735,7 @@ "Features": "Tính năng", "Features Permissions": "Quyền Tính năng", "February": "Tháng 2", + "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "Lịch sử Phản hồi", "Feedbacks": "Các phản hồi", @@ -744,6 +750,7 @@ "File size should not exceed {{maxSize}} MB.": "Kích thước tệp không được vượt quá {{maxSize}} MB.", "File Upload": "", "File uploaded successfully": "Tải tệp lên thành công", + "File uploaded!": "", "Files": "Tệp", "Filter": "", "Filter is now globally disabled": "Bộ lọc hiện đã bị vô hiệu hóa trên toàn hệ thống", @@ -857,6 +864,7 @@ "Image Compression": "Nén Ảnh", "Image Compression Height": "", "Image Compression Width": "", + "Image Edit": "", "Image Edit Engine": "", "Image Generation": "Tạo Ảnh", "Image Generation Engine": "Công cụ tạo ảnh", @@ -941,6 +949,7 @@ "Knowledge Name": "", "Knowledge Public Sharing": "Chia sẻ Công khai Kiến thức", "Knowledge reset successfully.": "Đã đặt lại kiến thức thành công.", + "Knowledge Sharing": "", "Knowledge updated successfully": "Đã cập nhật kiến thức thành công", "Kokoro.js (Browser)": "Kokoro.js (Trình duyệt)", "Kokoro.js Dtype": "Kiểu dữ liệu Kokoro.js", @@ -1006,6 +1015,7 @@ "Max Upload Size": "Kích thước Tải lên Tối đa", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Tối đa 3 mô hình có thể được tải xuống cùng lúc. Vui lòng thử lại sau.", "May": "Tháng 5", + "MBR": "", "MCP": "", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "", "Medium": "", @@ -1062,6 +1072,7 @@ "Models configuration saved successfully": "Đã lưu cấu hình mô hình thành công", "Models imported successfully": "", "Models Public Sharing": "Chia sẻ Công khai Mô hình", + "Models Sharing": "", "Mojeek Search API Key": "Khóa API Mojeek Search", "More": "Thêm", "More Concise": "", @@ -1128,6 +1139,7 @@ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Lưu ý: Nếu bạn đặt điểm (Score) tối thiểu thì tìm kiếm sẽ chỉ trả về những tài liệu có điểm lớn hơn hoặc bằng điểm tối thiểu.", "Notes": "Ghi chú", "Notes Public Sharing": "", + "Notes Sharing": "", "Notification Sound": "Âm thanh Thông báo", "Notification Webhook": "Webhook Thông báo", "Notifications": "Thông báo trên máy tính (Notification)", @@ -1274,6 +1286,7 @@ "Prompts": "Prompt", "Prompts Access": "Truy cập Prompt", "Prompts Public Sharing": "Chia sẻ Công khai Prompt", + "Prompts Sharing": "", "Provider Type": "", "Public": "Công khai", "Pull \"{{searchValue}}\" from Ollama.com": "Tải \"{{searchValue}}\" từ Ollama.com", @@ -1456,6 +1469,7 @@ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "Đặt hạt giống số ngẫu nhiên để sử dụng cho việc tạo. Đặt giá trị này thành một số cụ thể sẽ làm cho mô hình tạo ra cùng một văn bản cho cùng một prompt.", "Sets the size of the context window used to generate the next token.": "Đặt kích thước của cửa sổ ngữ cảnh được sử dụng để tạo token tiếp theo.", "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "Đặt các chuỗi dừng để sử dụng. Khi gặp mẫu này, LLM sẽ ngừng tạo văn bản và trả về. Có thể đặt nhiều mẫu dừng bằng cách chỉ định nhiều tham số stop riêng biệt trong modelfile.", + "Setting": "", "Settings": "Cài đặt", "Settings saved successfully!": "Cài đặt đã được lưu thành công!", "Share": "Chia sẻ", @@ -1636,6 +1650,7 @@ "Tools Function Calling Prompt": "Prompt Gọi Function của Tools", "Tools have a function calling system that allows arbitrary code execution.": "Các Tools có hệ thống gọi function cho phép thực thi mã tùy ý.", "Tools Public Sharing": "Chia sẻ Công khai Tools", + "Tools Sharing": "", "Top K": "Top K", "Top K Reranker": "Top K Reranker", "Transformers": "Transformers", @@ -1683,6 +1698,7 @@ "Upload Pipeline": "Tải lên Pipeline", "Upload Progress": "Tiến trình tải tệp lên hệ thống", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploading file...": "", "URL": "URL", "URL is required": "", "URL Mode": "Chế độ URL", diff --git a/src/lib/i18n/locales/zh-CN/translation.json b/src/lib/i18n/locales/zh-CN/translation.json index 5e2961070a..e2c2a1426d 100644 --- a/src/lib/i18n/locales/zh-CN/translation.json +++ b/src/lib/i18n/locales/zh-CN/translation.json @@ -145,6 +145,7 @@ "Archived Chats": "已归档对话", "archived-chat-export": "导出已归档对话", "Are you sure you want to clear all memories? This action cannot be undone.": "您确认要清除所有记忆吗?清除后无法还原。", + "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete this channel?": "您确认要删除此频道吗?", "Are you sure you want to delete this message?": "您确认要删除此消息吗?", "Are you sure you want to unarchive all archived chats?": "您确认要取消所有已归档的对话吗?", @@ -405,6 +406,7 @@ "Delete": "删除", "Delete a model": "删除模型", "Delete All Chats": "删除所有对话记录", + "Delete all contents inside this folder": "", "Delete All Models": "删除所有模型", "Delete Chat": "删除对话记录", "Delete chat?": "要删除此对话记录吗?", @@ -1013,6 +1015,7 @@ "Max Upload Size": "最大上传大小", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "最多可同时下载 3 个模型,请稍后重试。", "May": "五月", + "MBR": "", "MCP": "MCP", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "MCP 支持仍处于实验阶段,因其规范变化频繁,可能会出现不兼容的情况。而 OpenAPI 规范由 Open WebUI 团队维护,在兼容性方面更加可靠。", "Medium": "中", diff --git a/src/lib/i18n/locales/zh-TW/translation.json b/src/lib/i18n/locales/zh-TW/translation.json index 5c7d578a24..2e7d94df07 100644 --- a/src/lib/i18n/locales/zh-TW/translation.json +++ b/src/lib/i18n/locales/zh-TW/translation.json @@ -145,6 +145,7 @@ "Archived Chats": "封存的對話紀錄", "archived-chat-export": "archived-chat-export", "Are you sure you want to clear all memories? This action cannot be undone.": "您確定要清除所有記憶嗎?此操作無法復原。", + "Are you sure you want to delete \"{{NAME}}\"?": "", "Are you sure you want to delete this channel?": "您確定要刪除此頻道嗎?", "Are you sure you want to delete this message?": "您確定要刪除此訊息嗎?", "Are you sure you want to unarchive all archived chats?": "您確定要解除封存所有封存的對話記錄嗎?", @@ -405,6 +406,7 @@ "Delete": "刪除", "Delete a model": "刪除模型", "Delete All Chats": "刪除所有對話紀錄", + "Delete all contents inside this folder": "", "Delete All Models": "刪除所有模型", "Delete Chat": "刪除對話紀錄", "Delete chat?": "刪除對話紀錄?", @@ -1013,6 +1015,7 @@ "Max Upload Size": "最大上傳大小", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "最多同時下載 3 個模型。請稍後再試。", "May": "5 月", + "MBR": "", "MCP": "MCP", "MCP support is experimental and its specification changes often, which can lead to incompatibilities. OpenAPI specification support is directly maintained by the Open WebUI team, making it the more reliable option for compatibility.": "MCP 支援為實驗性功能,其規範經常變更,可能導致不相容問題。OpenAPI 規範支援直接由 Open WebUI 團隊維護,是相容性更可靠的選擇。", "Medium": "中",