浏览代码

chore: format

HIDE MODELS
Timothy Jaeryang Baek 2 月之前
父节点
当前提交
ddb30589e3
共有 58 个文件被更改,包括 618 次插入504 次删除
  1. 1 0
      backend/open_webui/models/chats.py
  2. 6 2
      backend/open_webui/models/functions.py
  3. 6 2
      backend/open_webui/models/tools.py
  4. 3 1
      backend/open_webui/retrieval/vector/dbs/milvus.py
  5. 3 1
      backend/open_webui/retrieval/vector/dbs/pgvector.py
  6. 1 5
      backend/open_webui/routers/auths.py
  7. 1 0
      backend/open_webui/routers/utils.py
  8. 6 1
      backend/open_webui/utils/auth.py
  9. 1 0
      backend/open_webui/utils/misc.py
  10. 12 10
      src/lib/i18n/locales/ar-BH/translation.json
  11. 12 10
      src/lib/i18n/locales/bg-BG/translation.json
  12. 12 10
      src/lib/i18n/locales/bn-BD/translation.json
  13. 12 10
      src/lib/i18n/locales/ca-ES/translation.json
  14. 12 10
      src/lib/i18n/locales/ceb-PH/translation.json
  15. 12 10
      src/lib/i18n/locales/cs-CZ/translation.json
  16. 12 10
      src/lib/i18n/locales/da-DK/translation.json
  17. 12 10
      src/lib/i18n/locales/de-DE/translation.json
  18. 12 10
      src/lib/i18n/locales/dg-DG/translation.json
  19. 12 10
      src/lib/i18n/locales/el-GR/translation.json
  20. 12 10
      src/lib/i18n/locales/en-GB/translation.json
  21. 12 10
      src/lib/i18n/locales/en-US/translation.json
  22. 12 10
      src/lib/i18n/locales/es-ES/translation.json
  23. 12 10
      src/lib/i18n/locales/eu-ES/translation.json
  24. 12 10
      src/lib/i18n/locales/fa-IR/translation.json
  25. 12 10
      src/lib/i18n/locales/fi-FI/translation.json
  26. 12 10
      src/lib/i18n/locales/fr-CA/translation.json
  27. 12 10
      src/lib/i18n/locales/fr-FR/translation.json
  28. 12 10
      src/lib/i18n/locales/he-IL/translation.json
  29. 12 10
      src/lib/i18n/locales/hi-IN/translation.json
  30. 12 10
      src/lib/i18n/locales/hr-HR/translation.json
  31. 12 10
      src/lib/i18n/locales/hu-HU/translation.json
  32. 12 10
      src/lib/i18n/locales/id-ID/translation.json
  33. 12 10
      src/lib/i18n/locales/ie-GA/translation.json
  34. 12 10
      src/lib/i18n/locales/it-IT/translation.json
  35. 12 10
      src/lib/i18n/locales/ja-JP/translation.json
  36. 12 10
      src/lib/i18n/locales/ka-GE/translation.json
  37. 12 10
      src/lib/i18n/locales/ko-KR/translation.json
  38. 12 10
      src/lib/i18n/locales/lt-LT/translation.json
  39. 12 10
      src/lib/i18n/locales/ms-MY/translation.json
  40. 12 10
      src/lib/i18n/locales/nb-NO/translation.json
  41. 12 10
      src/lib/i18n/locales/nl-NL/translation.json
  42. 12 10
      src/lib/i18n/locales/pa-IN/translation.json
  43. 12 10
      src/lib/i18n/locales/pl-PL/translation.json
  44. 12 10
      src/lib/i18n/locales/pt-BR/translation.json
  45. 12 10
      src/lib/i18n/locales/pt-PT/translation.json
  46. 12 10
      src/lib/i18n/locales/ro-RO/translation.json
  47. 12 10
      src/lib/i18n/locales/ru-RU/translation.json
  48. 12 10
      src/lib/i18n/locales/sk-SK/translation.json
  49. 12 10
      src/lib/i18n/locales/sr-RS/translation.json
  50. 14 12
      src/lib/i18n/locales/sv-SE/translation.json
  51. 12 10
      src/lib/i18n/locales/th-TH/translation.json
  52. 12 10
      src/lib/i18n/locales/tk-TW/translation.json
  53. 12 10
      src/lib/i18n/locales/tr-TR/translation.json
  54. 12 10
      src/lib/i18n/locales/uk-UA/translation.json
  55. 12 10
      src/lib/i18n/locales/ur-PK/translation.json
  56. 12 10
      src/lib/i18n/locales/vi-VN/translation.json
  57. 12 10
      src/lib/i18n/locales/zh-CN/translation.json
  58. 12 10
      src/lib/i18n/locales/zh-TW/translation.json

+ 1 - 0
backend/open_webui/models/chats.py

@@ -20,6 +20,7 @@ from sqlalchemy.sql import exists
 log = logging.getLogger(__name__)
 log = logging.getLogger(__name__)
 log.setLevel(SRC_LOG_LEVELS["MODELS"])
 log.setLevel(SRC_LOG_LEVELS["MODELS"])
 
 
+
 class Chat(Base):
 class Chat(Base):
     __tablename__ = "chat"
     __tablename__ = "chat"
 
 

+ 6 - 2
backend/open_webui/models/functions.py

@@ -202,7 +202,9 @@ class FunctionsTable:
 
 
             return user_settings["functions"]["valves"].get(id, {})
             return user_settings["functions"]["valves"].get(id, {})
         except Exception as e:
         except Exception as e:
-            log.exception(f"Error getting user values by id {id} and user id {user_id}: {e}")
+            log.exception(
+                f"Error getting user values by id {id} and user id {user_id}: {e}"
+            )
             return None
             return None
 
 
     def update_user_valves_by_id_and_user_id(
     def update_user_valves_by_id_and_user_id(
@@ -225,7 +227,9 @@ class FunctionsTable:
 
 
             return user_settings["functions"]["valves"][id]
             return user_settings["functions"]["valves"][id]
         except Exception as e:
         except Exception as e:
-            log.exception(f"Error updating user valves by id {id} and user_id {user_id}: {e}")
+            log.exception(
+                f"Error updating user valves by id {id} and user_id {user_id}: {e}"
+            )
             return None
             return None
 
 
     def update_function_by_id(self, id: str, updated: dict) -> Optional[FunctionModel]:
     def update_function_by_id(self, id: str, updated: dict) -> Optional[FunctionModel]:

+ 6 - 2
backend/open_webui/models/tools.py

@@ -204,7 +204,9 @@ class ToolsTable:
 
 
             return user_settings["tools"]["valves"].get(id, {})
             return user_settings["tools"]["valves"].get(id, {})
         except Exception as e:
         except Exception as e:
-            log.exception(f"Error getting user values by id {id} and user_id {user_id}: {e}")
+            log.exception(
+                f"Error getting user values by id {id} and user_id {user_id}: {e}"
+            )
             return None
             return None
 
 
     def update_user_valves_by_id_and_user_id(
     def update_user_valves_by_id_and_user_id(
@@ -227,7 +229,9 @@ class ToolsTable:
 
 
             return user_settings["tools"]["valves"][id]
             return user_settings["tools"]["valves"][id]
         except Exception as e:
         except Exception as e:
-            log.exception(f"Error updating user valves by id {id} and user_id {user_id}: {e}")
+            log.exception(
+                f"Error updating user valves by id {id} and user_id {user_id}: {e}"
+            )
             return None
             return None
 
 
     def update_tool_by_id(self, id: str, updated: dict) -> Optional[ToolModel]:
     def update_tool_by_id(self, id: str, updated: dict) -> Optional[ToolModel]:

+ 3 - 1
backend/open_webui/retrieval/vector/dbs/milvus.py

@@ -202,7 +202,9 @@ class MilvusClient:
             log.debug(all_results)
             log.debug(all_results)
             return self._result_to_get_result([all_results])
             return self._result_to_get_result([all_results])
         except Exception as e:
         except Exception as e:
-            log.exception(f"Error querying collection {collection_name} with limit {limit}: {e}")
+            log.exception(
+                f"Error querying collection {collection_name} with limit {limit}: {e}"
+            )
             return None
             return None
 
 
     def get(self, collection_name: str) -> Optional[GetResult]:
     def get(self, collection_name: str) -> Optional[GetResult]:

+ 3 - 1
backend/open_webui/retrieval/vector/dbs/pgvector.py

@@ -190,7 +190,9 @@ class PgvectorClient:
                     )
                     )
                     self.session.add(new_chunk)
                     self.session.add(new_chunk)
             self.session.commit()
             self.session.commit()
-            log.info(f"Upserted {len(items)} items into collection '{collection_name}'.")
+            log.info(
+                f"Upserted {len(items)} items into collection '{collection_name}'."
+            )
         except Exception as e:
         except Exception as e:
             self.session.rollback()
             self.session.rollback()
             log.exception(f"Error during upsert: {e}")
             log.exception(f"Error during upsert: {e}")

+ 1 - 5
backend/open_webui/routers/auths.py

@@ -31,11 +31,7 @@ from open_webui.env import (
 )
 )
 from fastapi import APIRouter, Depends, HTTPException, Request, status
 from fastapi import APIRouter, Depends, HTTPException, Request, status
 from fastapi.responses import RedirectResponse, Response
 from fastapi.responses import RedirectResponse, Response
-from open_webui.config import (
-    OPENID_PROVIDER_URL,
-    ENABLE_OAUTH_SIGNUP,
-    ENABLE_LDAP
-)
+from open_webui.config import OPENID_PROVIDER_URL, ENABLE_OAUTH_SIGNUP, ENABLE_LDAP
 from pydantic import BaseModel
 from pydantic import BaseModel
 from open_webui.utils.misc import parse_duration, validate_email_format
 from open_webui.utils.misc import parse_duration, validate_email_format
 from open_webui.utils.auth import (
 from open_webui.utils.auth import (

+ 1 - 0
backend/open_webui/routers/utils.py

@@ -22,6 +22,7 @@ log.setLevel(SRC_LOG_LEVELS["MAIN"])
 
 
 router = APIRouter()
 router = APIRouter()
 
 
+
 @router.get("/gravatar")
 @router.get("/gravatar")
 async def get_gravatar(email: str, user=Depends(get_verified_user)):
 async def get_gravatar(email: str, user=Depends(get_verified_user)):
     return get_gravatar_url(email)
     return get_gravatar_url(email)

+ 6 - 1
backend/open_webui/utils/auth.py

@@ -14,7 +14,12 @@ from typing import Optional, Union, List, Dict
 from open_webui.models.users import Users
 from open_webui.models.users import Users
 
 
 from open_webui.constants import ERROR_MESSAGES
 from open_webui.constants import ERROR_MESSAGES
-from open_webui.env import WEBUI_SECRET_KEY, TRUSTED_SIGNATURE_KEY, STATIC_DIR, SRC_LOG_LEVELS
+from open_webui.env import (
+    WEBUI_SECRET_KEY,
+    TRUSTED_SIGNATURE_KEY,
+    STATIC_DIR,
+    SRC_LOG_LEVELS,
+)
 
 
 from fastapi import BackgroundTasks, Depends, HTTPException, Request, Response, status
 from fastapi import BackgroundTasks, Depends, HTTPException, Request, Response, status
 from fastapi.security import HTTPAuthorizationCredentials, HTTPBearer
 from fastapi.security import HTTPAuthorizationCredentials, HTTPBearer

+ 1 - 0
backend/open_webui/utils/misc.py

@@ -14,6 +14,7 @@ from open_webui.env import SRC_LOG_LEVELS
 log = logging.getLogger(__name__)
 log = logging.getLogger(__name__)
 log.setLevel(SRC_LOG_LEVELS["MAIN"])
 log.setLevel(SRC_LOG_LEVELS["MAIN"])
 
 
+
 def deep_update(d, u):
 def deep_update(d, u):
     for k, v in u.items():
     for k, v in u.items():
         if isinstance(v, collections.abc.Mapping):
         if isinstance(v, collections.abc.Mapping):

+ 12 - 10
src/lib/i18n/locales/ar-BH/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "أرشفة جميع الدردشات",
 	"Archive All Chats": "أرشفة جميع الدردشات",
 	"Archived Chats": "الأرشيف المحادثات",
 	"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 this channel?": "",
 	"Are you sure you want to delete this channel?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "",
 	"Bocha Search API Key": "",
 	"Brave Search API Key": "مفتاح واجهة برمجة تطبيقات البحث الشجاع",
 	"Brave Search API Key": "مفتاح واجهة برمجة تطبيقات البحث الشجاع",
 	"By {{name}}": "",
 	"By {{name}}": "",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "تجاوز التحقق من SSL للموقع",
 	"Bypass SSL verification for Websites": "تجاوز التحقق من SSL للموقع",
 	"Calendar": "",
 	"Calendar": "",
 	"Call": "",
 	"Call": "",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "البحث عن تحديثات",
 	"Checking for updates...": "البحث عن تحديثات",
 	"Choose a model before saving...": "أختار موديل قبل الحفظ",
 	"Choose a model before saving...": "أختار موديل قبل الحفظ",
 	"Chunk Overlap": "Chunk تداخل",
 	"Chunk Overlap": "Chunk تداخل",
-	"Chunk Params": "Chunk المتغيرات",
 	"Chunk Size": "Chunk حجم",
 	"Chunk Size": "Chunk حجم",
 	"Ciphers": "",
 	"Ciphers": "",
 	"Citation": "اقتباس",
 	"Citation": "اقتباس",
 	"Clear memory": "",
 	"Clear memory": "",
+	"Clear Memory": "",
 	"click here": "",
 	"click here": "",
 	"Click here for filter guides.": "",
 	"Click here for filter guides.": "",
 	"Click here for help.": "أضغط هنا للمساعدة",
 	"Click here for help.": "أضغط هنا للمساعدة",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Contact Admin for WebUI Access": "",
 	"Contact Admin for WebUI Access": "",
 	"Content": "الاتصال",
 	"Content": "الاتصال",
-	"Content Extraction": "",
+	"Content Extraction Engine": "",
 	"Context Length": "طول السياق",
 	"Context Length": "طول السياق",
 	"Continue Response": "متابعة الرد",
 	"Continue Response": "متابعة الرد",
 	"Continue with {{provider}}": "",
 	"Continue with {{provider}}": "",
@@ -246,6 +248,7 @@
 	"Current Model": "الموديل المختار",
 	"Current Model": "الموديل المختار",
 	"Current Password": "كلمة السر الحالية",
 	"Current Password": "كلمة السر الحالية",
 	"Custom": "مخصص",
 	"Custom": "مخصص",
+	"Danger Zone": "",
 	"Dark": "مظلم",
 	"Dark": "مظلم",
 	"Database": "قاعدة البيانات",
 	"Database": "قاعدة البيانات",
 	"December": "ديسمبر",
 	"December": "ديسمبر",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "",
 	"ElevenLabs": "",
 	"Email": "البريد",
 	"Email": "البريد",
 	"Embark on adventures": "",
 	"Embark on adventures": "",
+	"Embedding": "",
 	"Embedding Batch Size": "",
 	"Embedding Batch Size": "",
 	"Embedding Model": "نموذج التضمين",
 	"Embedding Model": "نموذج التضمين",
 	"Embedding Model Engine": "تضمين محرك النموذج",
 	"Embedding Model Engine": "تضمين محرك النموذج",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "تمكين مشاركة المجتمع",
 	"Enable Community Sharing": "تمكين مشاركة المجتمع",
-	"Enable Google Drive": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "تفعيل عمليات التسجيل الجديدة",
 	"Enable New Sign Ups": "تفعيل عمليات التسجيل الجديدة",
-	"Enable OneDrive": "",
-	"Enable Web Search": "تمكين بحث الويب",
 	"Enabled": "",
 	"Enabled": "",
-	"Engine": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "تأكد من أن ملف CSV الخاص بك يتضمن 4 أعمدة بهذا الترتيب: Name, Email, Password, Role.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "تأكد من أن ملف CSV الخاص بك يتضمن 4 أعمدة بهذا الترتيب: Name, Email, Password, Role.",
 	"Enter {{role}} message here": "أدخل رسالة {{role}} هنا",
 	"Enter {{role}} message here": "أدخل رسالة {{role}} هنا",
 	"Enter a detail about yourself for your LLMs to recall": "ادخل معلومات عنك تريد أن يتذكرها الموديل",
 	"Enter a detail about yourself for your LLMs to recall": "ادخل معلومات عنك تريد أن يتذكرها الموديل",
@@ -572,6 +572,7 @@
 	"Input commands": "إدخال الأوامر",
 	"Input commands": "إدخال الأوامر",
 	"Install from Github URL": "التثبيت من عنوان URL لجيثب",
 	"Install from Github URL": "التثبيت من عنوان URL لجيثب",
 	"Instant Auto-Send After Voice Transcription": "",
 	"Instant Auto-Send After Voice Transcription": "",
+	"Integration": "",
 	"Interface": "واجهه المستخدم",
 	"Interface": "واجهه المستخدم",
 	"Invalid file format.": "",
 	"Invalid file format.": "",
 	"Invalid Tag": "تاق غير صالحة",
 	"Invalid Tag": "تاق غير صالحة",
@@ -619,6 +620,7 @@
 	"Listening...": "",
 	"Listening...": "",
 	"Llama.cpp": "",
 	"Llama.cpp": "",
 	"LLMs can make mistakes. Verify important information.": "يمكن أن تصدر بعض الأخطاء. لذلك يجب التحقق من المعلومات المهمة",
 	"LLMs can make mistakes. Verify important information.": "يمكن أن تصدر بعض الأخطاء. لذلك يجب التحقق من المعلومات المهمة",
+	"Loader": "",
 	"Loading Kokoro.js...": "",
 	"Loading Kokoro.js...": "",
 	"Local": "",
 	"Local": "",
 	"Local Models": "",
 	"Local Models": "",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No inference engine with management support found": "",
 	"No inference engine with management support found": "",
 	"No knowledge found": "",
 	"No knowledge found": "",
+	"No memories to clear": "",
 	"No model IDs": "",
 	"No model IDs": "",
 	"No models found": "",
 	"No models found": "",
 	"No models selected": "",
 	"No models selected": "",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "مطالبات",
 	"Prompts": "مطالبات",
 	"Prompts Access": "",
 	"Prompts Access": "",
-	"Proxy URL": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com \"{{searchValue}}\" أسحب من ",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com \"{{searchValue}}\" أسحب من ",
 	"Pull a model from Ollama.com": "Ollama.com سحب الموديل من ",
 	"Pull a model from Ollama.com": "Ollama.com سحب الموديل من ",
 	"Query Generation Prompt": "",
 	"Query Generation Prompt": "",
-	"Query Params": "Query Params",
 	"RAG Template": "RAG تنمبلت",
 	"RAG Template": "RAG تنمبلت",
 	"Rating": "",
 	"Rating": "",
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"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 splitting": "",
 	"Result": "",
 	"Result": "",
+	"Retrieval": "",
 	"Retrieval Query Generation": "",
 	"Retrieval Query Generation": "",
 	"Rich Text Input for Chat": "",
 	"Rich Text Input for Chat": "",
 	"RK": "",
 	"RK": "",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Web": "Web",
 	"Web": "Web",
 	"Web API": "",
 	"Web API": "",
-	"Web Loader Settings": "Web تحميل اعدادات",
 	"Web Search": "بحث الويب",
 	"Web Search": "بحث الويب",
 	"Web Search Engine": "محرك بحث الويب",
 	"Web Search Engine": "محرك بحث الويب",
 	"Web Search in Chat": "",
 	"Web Search in Chat": "",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "",
 	"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.": "",
 	"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.": "",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
-	"Youtube Loader Settings": "Youtube تحميل اعدادات"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/bg-BG/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "Архив Всички чатове",
 	"Archive All Chats": "Архив Всички чатове",
 	"Archived Chats": "Архивирани Чатове",
 	"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 this channel?": "Сигурни ли сте, че искате да изтриете този канал?",
 	"Are you sure you want to delete this channel?": "Сигурни ли сте, че искате да изтриете този канал?",
 	"Are you sure you want to delete this message?": "Сигурни ли сте, че искате да изтриете това съобщение?",
 	"Are you sure you want to delete this message?": "Сигурни ли сте, че искате да изтриете това съобщение?",
 	"Are you sure you want to unarchive all archived chats?": "Сигурни ли сте, че искате да разархивирате всички архивирани чатове?",
 	"Are you sure you want to unarchive all archived chats?": "Сигурни ли сте, че искате да разархивирате всички архивирани чатове?",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "API ключ за Bocha Search",
 	"Bocha Search API Key": "API ключ за Bocha Search",
 	"Brave Search API Key": "API ключ за Brave Search",
 	"Brave Search API Key": "API ключ за Brave Search",
 	"By {{name}}": "От {{name}}",
 	"By {{name}}": "От {{name}}",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "Изключване на SSL проверката за сайтове",
 	"Bypass SSL verification for Websites": "Изключване на SSL проверката за сайтове",
 	"Calendar": "Календар",
 	"Calendar": "Календар",
 	"Call": "Обаждане",
 	"Call": "Обаждане",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "Проверка за актуализации...",
 	"Checking for updates...": "Проверка за актуализации...",
 	"Choose a model before saving...": "Изберете модел преди запазване...",
 	"Choose a model before saving...": "Изберете модел преди запазване...",
 	"Chunk Overlap": "Припокриване на чънкове",
 	"Chunk Overlap": "Припокриване на чънкове",
-	"Chunk Params": "Параметри на чънковете",
 	"Chunk Size": "Размер на чънк",
 	"Chunk Size": "Размер на чънк",
 	"Ciphers": "Шифри",
 	"Ciphers": "Шифри",
 	"Citation": "Цитат",
 	"Citation": "Цитат",
 	"Clear memory": "Изчистване на паметта",
 	"Clear memory": "Изчистване на паметта",
+	"Clear Memory": "",
 	"click here": "натиснете тук",
 	"click here": "натиснете тук",
 	"Click here for filter guides.": "Натиснете тук за ръководства за филтриране.",
 	"Click here for filter guides.": "Натиснете тук за ръководства за филтриране.",
 	"Click here for help.": "Натиснете тук за помощ.",
 	"Click here for help.": "Натиснете тук за помощ.",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "Ограничава усилията за разсъждение при модели за разсъждение. Приложимо само за модели за разсъждение от конкретни доставчици, които поддържат усилия за разсъждение. (По подразбиране: средно)",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "Ограничава усилията за разсъждение при модели за разсъждение. Приложимо само за модели за разсъждение от конкретни доставчици, които поддържат усилия за разсъждение. (По подразбиране: средно)",
 	"Contact Admin for WebUI Access": "Свържете се с администратор за достъп до WebUI",
 	"Contact Admin for WebUI Access": "Свържете се с администратор за достъп до WebUI",
 	"Content": "Съдържание",
 	"Content": "Съдържание",
-	"Content Extraction": "Извличане на съдържание",
+	"Content Extraction Engine": "",
 	"Context Length": "Дължина на Контекста",
 	"Context Length": "Дължина на Контекста",
 	"Continue Response": "Продължи отговора",
 	"Continue Response": "Продължи отговора",
 	"Continue with {{provider}}": "Продължете с {{provider}}",
 	"Continue with {{provider}}": "Продължете с {{provider}}",
@@ -246,6 +248,7 @@
 	"Current Model": "Текущ модел",
 	"Current Model": "Текущ модел",
 	"Current Password": "Текуща Парола",
 	"Current Password": "Текуща Парола",
 	"Custom": "Персонализиран",
 	"Custom": "Персонализиран",
+	"Danger Zone": "",
 	"Dark": "Тъмен",
 	"Dark": "Тъмен",
 	"Database": "База данни",
 	"Database": "База данни",
 	"December": "Декември",
 	"December": "Декември",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "ElevenLabs",
 	"ElevenLabs": "ElevenLabs",
 	"Email": "Имейл",
 	"Email": "Имейл",
 	"Embark on adventures": "Отправете се на приключения",
 	"Embark on adventures": "Отправете се на приключения",
+	"Embedding": "",
 	"Embedding Batch Size": "Размер на партидата за вграждане",
 	"Embedding Batch Size": "Размер на партидата за вграждане",
 	"Embedding Model": "Модел за вграждане",
 	"Embedding Model": "Модел за вграждане",
 	"Embedding Model Engine": "Двигател на модела за вграждане",
 	"Embedding Model Engine": "Двигател на модела за вграждане",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "Активиране на автоматично довършване за съобщения в чата",
 	"Enable autocomplete generation for chat messages": "Активиране на автоматично довършване за съобщения в чата",
 	"Enable Code Interpreter": "Активиране на интерпретатор на код",
 	"Enable Code Interpreter": "Активиране на интерпретатор на код",
 	"Enable Community Sharing": "Разрешаване на споделяне в общност",
 	"Enable Community Sharing": "Разрешаване на споделяне в общност",
-	"Enable Google Drive": "Активиране на Google Drive",
 	"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.": "Активиране на заключване на паметта (mlock), за да се предотврати изваждането на данните на модела от RAM. Тази опция заключва работния набор от страници на модела в RAM, гарантирайки, че няма да бъдат изхвърлени на диска. Това може да помогне за поддържане на производителността, като се избягват грешки в страниците и се осигурява бърз достъп до данните.",
 	"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.": "Активиране на заключване на паметта (mlock), за да се предотврати изваждането на данните на модела от RAM. Тази опция заключва работния набор от страници на модела в RAM, гарантирайки, че няма да бъдат изхвърлени на диска. Това може да помогне за поддържане на производителността, като се избягват грешки в страниците и се осигурява бърз достъп до данните.",
 	"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.": "Активиране на мапиране на паметта (mmap) за зареждане на данни на модела. Тази опция позволява на системата да използва дисковото пространство като разширение на RAM, третирайки дисковите файлове, сякаш са в RAM. Това може да подобри производителността на модела, като позволява по-бърз достъп до данните. Въпреки това, може да не работи правилно с всички системи и може да консумира значително количество дисково пространство.",
 	"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.": "Активиране на мапиране на паметта (mmap) за зареждане на данни на модела. Тази опция позволява на системата да използва дисковото пространство като разширение на RAM, третирайки дисковите файлове, сякаш са в RAM. Това може да подобри производителността на модела, като позволява по-бърз достъп до данните. Въпреки това, може да не работи правилно с всички системи и може да консумира значително количество дисково пространство.",
 	"Enable Message Rating": "Активиране на оценяване на съобщения",
 	"Enable Message Rating": "Активиране на оценяване на съобщения",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Активиране на Mirostat семплиране за контрол на перплексията. (По подразбиране: 0, 0 = Деактивирано, 1 = Mirostat, 2 = Mirostat 2.0)",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Активиране на Mirostat семплиране за контрол на перплексията. (По подразбиране: 0, 0 = Деактивирано, 1 = Mirostat, 2 = Mirostat 2.0)",
 	"Enable New Sign Ups": "Включване на нови регистрации",
 	"Enable New Sign Ups": "Включване на нови регистрации",
-	"Enable OneDrive": "",
-	"Enable Web Search": "Разрешаване на търсене в уеб",
 	"Enabled": "Активирано",
 	"Enabled": "Активирано",
-	"Engine": "Двигател",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Уверете се, че вашият CSV файл включва 4 колони в следния ред: Име, Имейл, Парола, Роля.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Уверете се, че вашият CSV файл включва 4 колони в следния ред: Име, Имейл, Парола, Роля.",
 	"Enter {{role}} message here": "Въведете съобщение за {{role}} тук",
 	"Enter {{role}} message here": "Въведете съобщение за {{role}} тук",
 	"Enter a detail about yourself for your LLMs to recall": "Въведете подробности за себе си, за да ги запомнят вашите LLMs",
 	"Enter a detail about yourself for your LLMs to recall": "Въведете подробности за себе си, за да ги запомнят вашите LLMs",
@@ -572,6 +572,7 @@
 	"Input commands": "Въведете команди",
 	"Input commands": "Въведете команди",
 	"Install from Github URL": "Инсталиране от URL адреса на Github",
 	"Install from Github URL": "Инсталиране от URL адреса на Github",
 	"Instant Auto-Send After Voice Transcription": "Незабавно автоматично изпращане след гласова транскрипция",
 	"Instant Auto-Send After Voice Transcription": "Незабавно автоматично изпращане след гласова транскрипция",
+	"Integration": "",
 	"Interface": "Интерфейс",
 	"Interface": "Интерфейс",
 	"Invalid file format.": "Невалиден формат на файла.",
 	"Invalid file format.": "Невалиден формат на файла.",
 	"Invalid Tag": "Невалиден таг",
 	"Invalid Tag": "Невалиден таг",
@@ -619,6 +620,7 @@
 	"Listening...": "Слушане...",
 	"Listening...": "Слушане...",
 	"Llama.cpp": "Llama.cpp",
 	"Llama.cpp": "Llama.cpp",
 	"LLMs can make mistakes. Verify important information.": "LLMs могат да правят грешки. Проверете важните данни.",
 	"LLMs can make mistakes. Verify important information.": "LLMs могат да правят грешки. Проверете важните данни.",
+	"Loader": "",
 	"Loading Kokoro.js...": "Зареждане на Kokoro.js...",
 	"Loading Kokoro.js...": "Зареждане на Kokoro.js...",
 	"Local": "Локално",
 	"Local": "Локално",
 	"Local Models": "Локални модели",
 	"Local Models": "Локални модели",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "Не е намерено HTML, CSS или JavaScript съдържание.",
 	"No HTML, CSS, or JavaScript content found.": "Не е намерено HTML, CSS или JavaScript съдържание.",
 	"No inference engine with management support found": "Не е намерен механизъм за извод с поддръжка на управление",
 	"No inference engine with management support found": "Не е намерен механизъм за извод с поддръжка на управление",
 	"No knowledge found": "Не са намерени знания",
 	"No knowledge found": "Не са намерени знания",
+	"No memories to clear": "",
 	"No model IDs": "Няма ИД-та на модели",
 	"No model IDs": "Няма ИД-та на модели",
 	"No models found": "Не са намерени модели",
 	"No models found": "Не са намерени модели",
 	"No models selected": "Няма избрани модели",
 	"No models selected": "Няма избрани модели",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "Промптът е актуализиран успешно",
 	"Prompt updated successfully": "Промптът е актуализиран успешно",
 	"Prompts": "Промптове",
 	"Prompts": "Промптове",
 	"Prompts Access": "Достъп до промптове",
 	"Prompts Access": "Достъп до промптове",
-	"Proxy URL": "URL на прокси",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Извади \"{{searchValue}}\" от Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Извади \"{{searchValue}}\" от Ollama.com",
 	"Pull a model from Ollama.com": "Издърпайте модел от Ollama.com",
 	"Pull a model from Ollama.com": "Издърпайте модел от Ollama.com",
 	"Query Generation Prompt": "Промпт за генериране на запитвания",
 	"Query Generation Prompt": "Промпт за генериране на запитвания",
-	"Query Params": "Параметри на запитването",
 	"RAG Template": "RAG Шаблон",
 	"RAG Template": "RAG Шаблон",
 	"Rating": "Оценка",
 	"Rating": "Оценка",
 	"Re-rank models by topic similarity": "Преоценка на моделите по сходство на темата",
 	"Re-rank models by topic similarity": "Преоценка на моделите по сходство на темата",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Известията за отговори не могат да бъдат активирани, тъй като разрешенията за уебсайта са отказани. Моля, посетете настройките на вашия браузър, за да дадете необходимия достъп.",
 	"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 splitting": "Разделяне на отговора",
 	"Result": "Резултат",
 	"Result": "Резултат",
+	"Retrieval": "",
 	"Retrieval Query Generation": "Генериране на заявка за извличане",
 	"Retrieval Query Generation": "Генериране на заявка за извличане",
 	"Rich Text Input for Chat": "Богат текстов вход за чат",
 	"Rich Text Input for Chat": "Богат текстов вход за чат",
 	"RK": "RK",
 	"RK": "RK",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Предупреждение: Изпълнението на Jupyter позволява произволно изпълнение на код, което представлява сериозни рискове за сигурността—продължете с изключително внимание.",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Предупреждение: Изпълнението на Jupyter позволява произволно изпълнение на код, което представлява сериозни рискове за сигурността—продължете с изключително внимание.",
 	"Web": "Уеб",
 	"Web": "Уеб",
 	"Web API": "Уеб API",
 	"Web API": "Уеб API",
-	"Web Loader Settings": "Настройки за зареждане на уеб",
 	"Web Search": "Търсене в уеб",
 	"Web Search": "Търсене в уеб",
 	"Web Search Engine": "Уеб търсачка",
 	"Web Search Engine": "Уеб търсачка",
 	"Web Search in Chat": "Уеб търсене в чата",
 	"Web Search in Chat": "Уеб търсене в чата",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "Статусът на вашия акаунт в момента очаква активиране.",
 	"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 не взима никакъв процент. Въпреки това, избраната платформа за финансиране може да има свои собствени такси.",
 	"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": "Youtube",
-	"Youtube Loader Settings": "Настройки за зареждане от Youtube"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/bn-BD/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "আর্কাইভ করুন সকল চ্যাট",
 	"Archive All Chats": "আর্কাইভ করুন সকল চ্যাট",
 	"Archived Chats": "চ্যাট ইতিহাস সংরক্ষণাগার",
 	"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 this channel?": "",
 	"Are you sure you want to delete this channel?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "",
 	"Bocha Search API Key": "",
 	"Brave Search API Key": "সাহসী অনুসন্ধান API কী",
 	"Brave Search API Key": "সাহসী অনুসন্ধান API কী",
 	"By {{name}}": "",
 	"By {{name}}": "",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "ওয়েবসাইটের জন্য SSL যাচাই বাতিল করুন",
 	"Bypass SSL verification for Websites": "ওয়েবসাইটের জন্য SSL যাচাই বাতিল করুন",
 	"Calendar": "",
 	"Calendar": "",
 	"Call": "",
 	"Call": "",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "নতুন আপডেট আছে কিনা চেক করা হচ্ছে...",
 	"Checking for updates...": "নতুন আপডেট আছে কিনা চেক করা হচ্ছে...",
 	"Choose a model before saving...": "সেভ করার আগে একটি মডেল নির্বাচন করুন",
 	"Choose a model before saving...": "সেভ করার আগে একটি মডেল নির্বাচন করুন",
 	"Chunk Overlap": "চাঙ্ক ওভারল্যাপ",
 	"Chunk Overlap": "চাঙ্ক ওভারল্যাপ",
-	"Chunk Params": "চাঙ্ক প্যারামিটার্স",
 	"Chunk Size": "চাঙ্ক সাইজ",
 	"Chunk Size": "চাঙ্ক সাইজ",
 	"Ciphers": "",
 	"Ciphers": "",
 	"Citation": "উদ্ধৃতি",
 	"Citation": "উদ্ধৃতি",
 	"Clear memory": "",
 	"Clear memory": "",
+	"Clear Memory": "",
 	"click here": "",
 	"click here": "",
 	"Click here for filter guides.": "",
 	"Click here for filter guides.": "",
 	"Click here for help.": "সাহায্যের জন্য এখানে ক্লিক করুন",
 	"Click here for help.": "সাহায্যের জন্য এখানে ক্লিক করুন",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Contact Admin for WebUI Access": "",
 	"Contact Admin for WebUI Access": "",
 	"Content": "বিষয়বস্তু",
 	"Content": "বিষয়বস্তু",
-	"Content Extraction": "",
+	"Content Extraction Engine": "",
 	"Context Length": "কনটেক্সটের দৈর্ঘ্য",
 	"Context Length": "কনটেক্সটের দৈর্ঘ্য",
 	"Continue Response": "যাচাই করুন",
 	"Continue Response": "যাচাই করুন",
 	"Continue with {{provider}}": "",
 	"Continue with {{provider}}": "",
@@ -246,6 +248,7 @@
 	"Current Model": "বর্তমান মডেল",
 	"Current Model": "বর্তমান মডেল",
 	"Current Password": "বর্তমান পাসওয়ার্ড",
 	"Current Password": "বর্তমান পাসওয়ার্ড",
 	"Custom": "কাস্টম",
 	"Custom": "কাস্টম",
+	"Danger Zone": "",
 	"Dark": "ডার্ক",
 	"Dark": "ডার্ক",
 	"Database": "ডেটাবেজ",
 	"Database": "ডেটাবেজ",
 	"December": "ডেসেম্বর",
 	"December": "ডেসেম্বর",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "",
 	"ElevenLabs": "",
 	"Email": "ইমেইল",
 	"Email": "ইমেইল",
 	"Embark on adventures": "",
 	"Embark on adventures": "",
+	"Embedding": "",
 	"Embedding Batch Size": "",
 	"Embedding Batch Size": "",
 	"Embedding Model": "ইমেজ ইমেবডিং মডেল",
 	"Embedding Model": "ইমেজ ইমেবডিং মডেল",
 	"Embedding Model Engine": "ইমেজ ইমেবডিং মডেল ইঞ্জিন",
 	"Embedding Model Engine": "ইমেজ ইমেবডিং মডেল ইঞ্জিন",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "সম্প্রদায় শেয়ারকরণ সক্ষম করুন",
 	"Enable Community Sharing": "সম্প্রদায় শেয়ারকরণ সক্ষম করুন",
-	"Enable Google Drive": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "নতুন সাইনআপ চালু করুন",
 	"Enable New Sign Ups": "নতুন সাইনআপ চালু করুন",
-	"Enable OneDrive": "",
-	"Enable Web Search": "ওয়েব অনুসন্ধান সক্ষম করুন",
 	"Enabled": "",
 	"Enabled": "",
-	"Engine": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "আপনার সিএসভি ফাইলটিতে এই ক্রমে 4 টি কলাম অন্তর্ভুক্ত রয়েছে তা নিশ্চিত করুন: নাম, ইমেল, পাসওয়ার্ড, ভূমিকা।.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "আপনার সিএসভি ফাইলটিতে এই ক্রমে 4 টি কলাম অন্তর্ভুক্ত রয়েছে তা নিশ্চিত করুন: নাম, ইমেল, পাসওয়ার্ড, ভূমিকা।.",
 	"Enter {{role}} message here": "{{role}} মেসেজ এখানে লিখুন",
 	"Enter {{role}} message here": "{{role}} মেসেজ এখানে লিখুন",
 	"Enter a detail about yourself for your LLMs to recall": "আপনার এলএলএমগুলি স্মরণ করার জন্য নিজের সম্পর্কে একটি বিশদ লিখুন",
 	"Enter a detail about yourself for your LLMs to recall": "আপনার এলএলএমগুলি স্মরণ করার জন্য নিজের সম্পর্কে একটি বিশদ লিখুন",
@@ -572,6 +572,7 @@
 	"Input commands": "ইনপুট কমান্ডস",
 	"Input commands": "ইনপুট কমান্ডস",
 	"Install from Github URL": "Github URL থেকে ইনস্টল করুন",
 	"Install from Github URL": "Github URL থেকে ইনস্টল করুন",
 	"Instant Auto-Send After Voice Transcription": "",
 	"Instant Auto-Send After Voice Transcription": "",
+	"Integration": "",
 	"Interface": "ইন্টারফেস",
 	"Interface": "ইন্টারফেস",
 	"Invalid file format.": "",
 	"Invalid file format.": "",
 	"Invalid Tag": "অবৈধ ট্যাগ",
 	"Invalid Tag": "অবৈধ ট্যাগ",
@@ -619,6 +620,7 @@
 	"Listening...": "",
 	"Listening...": "",
 	"Llama.cpp": "",
 	"Llama.cpp": "",
 	"LLMs can make mistakes. Verify important information.": "LLM ভুল করতে পারে। গুরুত্বপূর্ণ তথ্য যাচাই করে নিন।",
 	"LLMs can make mistakes. Verify important information.": "LLM ভুল করতে পারে। গুরুত্বপূর্ণ তথ্য যাচাই করে নিন।",
+	"Loader": "",
 	"Loading Kokoro.js...": "",
 	"Loading Kokoro.js...": "",
 	"Local": "",
 	"Local": "",
 	"Local Models": "",
 	"Local Models": "",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No inference engine with management support found": "",
 	"No inference engine with management support found": "",
 	"No knowledge found": "",
 	"No knowledge found": "",
+	"No memories to clear": "",
 	"No model IDs": "",
 	"No model IDs": "",
 	"No models found": "",
 	"No models found": "",
 	"No models selected": "",
 	"No models selected": "",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "প্রম্পটসমূহ",
 	"Prompts": "প্রম্পটসমূহ",
 	"Prompts Access": "",
 	"Prompts Access": "",
-	"Proxy URL": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com থেকে \"{{searchValue}}\" টানুন",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com থেকে \"{{searchValue}}\" টানুন",
 	"Pull a model from Ollama.com": "Ollama.com থেকে একটি টেনে আনুন আনুন",
 	"Pull a model from Ollama.com": "Ollama.com থেকে একটি টেনে আনুন আনুন",
 	"Query Generation Prompt": "",
 	"Query Generation Prompt": "",
-	"Query Params": "Query প্যারামিটারসমূহ",
 	"RAG Template": "RAG টেম্পলেট",
 	"RAG Template": "RAG টেম্পলেট",
 	"Rating": "",
 	"Rating": "",
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"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 splitting": "",
 	"Result": "",
 	"Result": "",
+	"Retrieval": "",
 	"Retrieval Query Generation": "",
 	"Retrieval Query Generation": "",
 	"Rich Text Input for Chat": "",
 	"Rich Text Input for Chat": "",
 	"RK": "",
 	"RK": "",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Web": "ওয়েব",
 	"Web": "ওয়েব",
 	"Web API": "",
 	"Web API": "",
-	"Web Loader Settings": "ওয়েব লোডার সেটিংস",
 	"Web Search": "ওয়েব অনুসন্ধান",
 	"Web Search": "ওয়েব অনুসন্ধান",
 	"Web Search Engine": "ওয়েব সার্চ ইঞ্জিন",
 	"Web Search Engine": "ওয়েব সার্চ ইঞ্জিন",
 	"Web Search in Chat": "",
 	"Web Search in Chat": "",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "",
 	"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.": "",
 	"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.": "",
 	"Youtube": "YouTube",
 	"Youtube": "YouTube",
-	"Youtube Loader Settings": "YouTube লোডার সেটিংস"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/ca-ES/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "Arxiva tots els xats",
 	"Archive All Chats": "Arxiva tots els xats",
 	"Archived Chats": "Xats arxivats",
 	"Archived Chats": "Xats arxivats",
 	"archived-chat-export": "archived-chat-export",
 	"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 this channel?": "Estàs segur que vols eliminar aquest canal?",
 	"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 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?",
 	"Are you sure you want to unarchive all archived chats?": "Estàs segur que vols desarxivar tots els xats arxivats?",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "Clau API de Bocha Search",
 	"Bocha Search API Key": "Clau API de Bocha Search",
 	"Brave Search API Key": "Clau API de Brave Search",
 	"Brave Search API Key": "Clau API de Brave Search",
 	"By {{name}}": "Per {{name}}",
 	"By {{name}}": "Per {{name}}",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "Desactivar la verificació SSL per a l'accés a Internet",
 	"Bypass SSL verification for Websites": "Desactivar la verificació SSL per a l'accés a Internet",
 	"Calendar": "Calendari",
 	"Calendar": "Calendari",
 	"Call": "Trucada",
 	"Call": "Trucada",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "Comprovant actualitzacions...",
 	"Checking for updates...": "Comprovant actualitzacions...",
 	"Choose a model before saving...": "Triar un model abans de desar...",
 	"Choose a model before saving...": "Triar un model abans de desar...",
 	"Chunk Overlap": "Solapament de blocs",
 	"Chunk Overlap": "Solapament de blocs",
-	"Chunk Params": "Paràmetres dels blocs",
 	"Chunk Size": "Mida del bloc",
 	"Chunk Size": "Mida del bloc",
 	"Ciphers": "Xifradors",
 	"Ciphers": "Xifradors",
 	"Citation": "Cita",
 	"Citation": "Cita",
 	"Clear memory": "Esborrar la memòria",
 	"Clear memory": "Esborrar la memòria",
+	"Clear Memory": "",
 	"click here": "prem aquí",
 	"click here": "prem aquí",
 	"Click here for filter guides.": "Clica aquí per filtrar les guies.",
 	"Click here for filter guides.": "Clica aquí per filtrar les guies.",
 	"Click here for help.": "Clica aquí per obtenir ajuda.",
 	"Click here for help.": "Clica aquí per obtenir ajuda.",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "Restringeix l'esforç de raonament dels models de raonament. Només aplicable a models de raonament de proveïdors específics que donen suport a l'esforç de raonament. (Per defecte: mitjà)",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "Restringeix l'esforç de raonament dels models de raonament. Només aplicable a models de raonament de proveïdors específics que donen suport a l'esforç de raonament. (Per defecte: mitjà)",
 	"Contact Admin for WebUI Access": "Posat en contacte amb l'administrador per accedir a WebUI",
 	"Contact Admin for WebUI Access": "Posat en contacte amb l'administrador per accedir a WebUI",
 	"Content": "Contingut",
 	"Content": "Contingut",
-	"Content Extraction": "Extracció de contingut",
+	"Content Extraction Engine": "",
 	"Context Length": "Mida del context",
 	"Context Length": "Mida del context",
 	"Continue Response": "Continuar la resposta",
 	"Continue Response": "Continuar la resposta",
 	"Continue with {{provider}}": "Continuar amb {{provider}}",
 	"Continue with {{provider}}": "Continuar amb {{provider}}",
@@ -246,6 +248,7 @@
 	"Current Model": "Model actual",
 	"Current Model": "Model actual",
 	"Current Password": "Contrasenya actual",
 	"Current Password": "Contrasenya actual",
 	"Custom": "Personalitzat",
 	"Custom": "Personalitzat",
+	"Danger Zone": "",
 	"Dark": "Fosc",
 	"Dark": "Fosc",
 	"Database": "Base de dades",
 	"Database": "Base de dades",
 	"December": "Desembre",
 	"December": "Desembre",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "ElevenLabs",
 	"ElevenLabs": "ElevenLabs",
 	"Email": "Correu electrònic",
 	"Email": "Correu electrònic",
 	"Embark on adventures": "Embarcar en aventures",
 	"Embark on adventures": "Embarcar en aventures",
+	"Embedding": "",
 	"Embedding Batch Size": "Mida del lot d'incrustació",
 	"Embedding Batch Size": "Mida del lot d'incrustació",
 	"Embedding Model": "Model d'incrustació",
 	"Embedding Model": "Model d'incrustació",
 	"Embedding Model Engine": "Motor de model d'incrustació",
 	"Embedding Model Engine": "Motor de model d'incrustació",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "Activar la generació automàtica per als missatges del xat",
 	"Enable autocomplete generation for chat messages": "Activar la generació automàtica per als missatges del xat",
 	"Enable Code Interpreter": "Activar l'intèrpret de codi",
 	"Enable Code Interpreter": "Activar l'intèrpret de codi",
 	"Enable Community Sharing": "Activar l'ús compartit amb la comunitat",
 	"Enable Community Sharing": "Activar l'ús compartit amb la comunitat",
-	"Enable Google Drive": "Activar Google Drive",
 	"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.": "Activar el bloqueig de memòria (mlock) per evitar que les dades del model s'intercanviïn fora de la memòria RAM. Aquesta opció bloqueja el conjunt de pàgines de treball del model a la memòria RAM, assegurant-se que no s'intercanviaran al disc. Això pot ajudar a mantenir el rendiment evitant errors de pàgina i garantint un accés ràpid a les dades.",
 	"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.": "Activar el bloqueig de memòria (mlock) per evitar que les dades del model s'intercanviïn fora de la memòria RAM. Aquesta opció bloqueja el conjunt de pàgines de treball del model a la memòria RAM, assegurant-se que no s'intercanviaran al disc. Això pot ajudar a mantenir el rendiment evitant errors de pàgina i garantint un accés ràpid a les dades.",
 	"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.": "Activar l'assignació de memòria (mmap) per carregar les dades del model. Aquesta opció permet que el sistema utilitzi l'emmagatzematge en disc com a extensió de la memòria RAM tractant els fitxers de disc com si estiguessin a la memòria RAM. Això pot millorar el rendiment del model permetent un accés més ràpid a les dades. Tanmateix, és possible que no funcioni correctament amb tots els sistemes i pot consumir una quantitat important d'espai en disc.",
 	"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.": "Activar l'assignació de memòria (mmap) per carregar les dades del model. Aquesta opció permet que el sistema utilitzi l'emmagatzematge en disc com a extensió de la memòria RAM tractant els fitxers de disc com si estiguessin a la memòria RAM. Això pot millorar el rendiment del model permetent un accés més ràpid a les dades. Tanmateix, és possible que no funcioni correctament amb tots els sistemes i pot consumir una quantitat important d'espai en disc.",
 	"Enable Message Rating": "Permetre la qualificació de missatges",
 	"Enable Message Rating": "Permetre la qualificació de missatges",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Activar el mostreig de Mirostat per controlar la perplexitat. (Per defecte: 0, 0 = Inhabilitat, 1 = Mirostat, 2 = Mirostat 2.0)",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Activar el mostreig de Mirostat per controlar la perplexitat. (Per defecte: 0, 0 = Inhabilitat, 1 = Mirostat, 2 = Mirostat 2.0)",
 	"Enable New Sign Ups": "Permetre nous registres",
 	"Enable New Sign Ups": "Permetre nous registres",
-	"Enable OneDrive": "",
-	"Enable Web Search": "Activar la cerca web",
 	"Enabled": "Habilitat",
 	"Enabled": "Habilitat",
-	"Engine": "Motor",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Assegura't que els teus fitxers CSV inclouen 4 columnes en aquest ordre: Nom, Correu electrònic, Contrasenya, Rol.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Assegura't que els teus fitxers CSV inclouen 4 columnes en aquest ordre: Nom, Correu electrònic, Contrasenya, Rol.",
 	"Enter {{role}} message here": "Introdueix aquí el missatge de {{role}}",
 	"Enter {{role}} message here": "Introdueix aquí el missatge de {{role}}",
 	"Enter a detail about yourself for your LLMs to recall": "Introdueix un detall sobre tu què els teus models de llenguatge puguin recordar",
 	"Enter a detail about yourself for your LLMs to recall": "Introdueix un detall sobre tu què els teus models de llenguatge puguin recordar",
@@ -572,6 +572,7 @@
 	"Input commands": "Entra comandes",
 	"Input commands": "Entra comandes",
 	"Install from Github URL": "Instal·lar des de l'URL de Github",
 	"Install from Github URL": "Instal·lar des de l'URL de Github",
 	"Instant Auto-Send After Voice Transcription": "Enviament automàtic després de la transcripció de veu",
 	"Instant Auto-Send After Voice Transcription": "Enviament automàtic després de la transcripció de veu",
+	"Integration": "",
 	"Interface": "Interfície",
 	"Interface": "Interfície",
 	"Invalid file format.": "Format d'arxiu no vàlid.",
 	"Invalid file format.": "Format d'arxiu no vàlid.",
 	"Invalid Tag": "Etiqueta no vàlida",
 	"Invalid Tag": "Etiqueta no vàlida",
@@ -619,6 +620,7 @@
 	"Listening...": "Escoltant...",
 	"Listening...": "Escoltant...",
 	"Llama.cpp": "Llama.cpp",
 	"Llama.cpp": "Llama.cpp",
 	"LLMs can make mistakes. Verify important information.": "Els models de llenguatge poden cometre errors. Verifica la informació important.",
 	"LLMs can make mistakes. Verify important information.": "Els models de llenguatge poden cometre errors. Verifica la informació important.",
+	"Loader": "",
 	"Loading Kokoro.js...": "Carregant Kokoro.js",
 	"Loading Kokoro.js...": "Carregant Kokoro.js",
 	"Local": "Local",
 	"Local": "Local",
 	"Local Models": "Models locals",
 	"Local Models": "Models locals",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "No s'ha trobat contingut HTML, CSS o JavaScript.",
 	"No HTML, CSS, or JavaScript content found.": "No s'ha trobat contingut HTML, CSS o JavaScript.",
 	"No inference engine with management support found": "No s'ha trobat un motor d'inferència amb suport de gestió",
 	"No inference engine with management support found": "No s'ha trobat un motor d'inferència amb suport de gestió",
 	"No knowledge found": "No s'ha trobat Coneixement",
 	"No knowledge found": "No s'ha trobat Coneixement",
+	"No memories to clear": "",
 	"No model IDs": "No hi ha IDs de model",
 	"No model IDs": "No hi ha IDs de model",
 	"No models found": "No s'han trobat models",
 	"No models found": "No s'han trobat models",
 	"No models selected": "No s'ha seleccionat cap model",
 	"No models selected": "No s'ha seleccionat cap model",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "Indicació actualitzada correctament",
 	"Prompt updated successfully": "Indicació actualitzada correctament",
 	"Prompts": "Indicacions",
 	"Prompts": "Indicacions",
 	"Prompts Access": "Accés a les indicacions",
 	"Prompts Access": "Accés a les indicacions",
-	"Proxy URL": "URL del proxy",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Obtenir \"{{searchValue}}\" de Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Obtenir \"{{searchValue}}\" de Ollama.com",
 	"Pull a model from Ollama.com": "Obtenir un model d'Ollama.com",
 	"Pull a model from Ollama.com": "Obtenir un model d'Ollama.com",
 	"Query Generation Prompt": "Indicació per a generació de consulta",
 	"Query Generation Prompt": "Indicació per a generació de consulta",
-	"Query Params": "Paràmetres de consulta",
 	"RAG Template": "Plantilla RAG",
 	"RAG Template": "Plantilla RAG",
 	"Rating": "Valoració",
 	"Rating": "Valoració",
 	"Re-rank models by topic similarity": "Reclassificar els models per similitud de temes",
 	"Re-rank models by topic similarity": "Reclassificar els models per similitud de temes",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Les notifications de resposta no es poden activar perquè els permisos del lloc web han estat rebutjats. Comprova les preferències del navegador per donar l'accés necessari.",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Les notifications de resposta no es poden activar perquè els permisos del lloc web han estat rebutjats. Comprova les preferències del navegador per donar l'accés necessari.",
 	"Response splitting": "Divisió de la resposta",
 	"Response splitting": "Divisió de la resposta",
 	"Result": "Resultat",
 	"Result": "Resultat",
+	"Retrieval": "",
 	"Retrieval Query Generation": "Generació de consultes Retrieval",
 	"Retrieval Query Generation": "Generació de consultes Retrieval",
 	"Rich Text Input for Chat": "Entrada de text ric per al xat",
 	"Rich Text Input for Chat": "Entrada de text ric per al xat",
 	"RK": "RK",
 	"RK": "RK",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Avís: l'execució de Jupyter permet l'execució de codi arbitrari, la qual cosa comporta greus riscos de seguretat; procediu amb extrema precaució.",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Avís: l'execució de Jupyter permet l'execució de codi arbitrari, la qual cosa comporta greus riscos de seguretat; procediu amb extrema precaució.",
 	"Web": "Web",
 	"Web": "Web",
 	"Web API": "Web API",
 	"Web API": "Web API",
-	"Web Loader Settings": "Preferències del carregador web",
 	"Web Search": "Cerca la web",
 	"Web Search": "Cerca la web",
 	"Web Search Engine": "Motor de cerca de la web",
 	"Web Search Engine": "Motor de cerca de la web",
 	"Web Search in Chat": "Cerca a internet al xat",
 	"Web Search in Chat": "Cerca a internet al xat",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "El compte està actualment pendent d'activació",
 	"Your account status is currently pending activation.": "El compte està actualment pendent d'activació",
 	"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.": "Tota la teva contribució anirà directament al desenvolupador del complement; Open WebUI no se'n queda cap percentatge. Tanmateix, la plataforma de finançament escollida pot tenir les seves pròpies comissions.",
 	"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.": "Tota la teva contribució anirà directament al desenvolupador del complement; Open WebUI no se'n queda cap percentatge. Tanmateix, la plataforma de finançament escollida pot tenir les seves pròpies comissions.",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
-	"Youtube Loader Settings": "Preferències del carregador de Youtube"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/ceb-PH/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "",
 	"Archive All Chats": "",
 	"Archived Chats": "pagrekord sa chat",
 	"Archived Chats": "pagrekord sa chat",
 	"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 this channel?": "",
 	"Are you sure you want to delete this channel?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "",
 	"Bocha Search API Key": "",
 	"Brave Search API Key": "",
 	"Brave Search API Key": "",
 	"By {{name}}": "",
 	"By {{name}}": "",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "",
 	"Bypass SSL verification for Websites": "",
 	"Calendar": "",
 	"Calendar": "",
 	"Call": "",
 	"Call": "",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "Pagsusi alang sa mga update...",
 	"Checking for updates...": "Pagsusi alang sa mga update...",
 	"Choose a model before saving...": "Pagpili og template sa dili pa i-save...",
 	"Choose a model before saving...": "Pagpili og template sa dili pa i-save...",
 	"Chunk Overlap": "Block overlap",
 	"Chunk Overlap": "Block overlap",
-	"Chunk Params": "Mga Setting sa Block",
 	"Chunk Size": "Gidak-on sa block",
 	"Chunk Size": "Gidak-on sa block",
 	"Ciphers": "",
 	"Ciphers": "",
 	"Citation": "Mga kinutlo",
 	"Citation": "Mga kinutlo",
 	"Clear memory": "",
 	"Clear memory": "",
+	"Clear Memory": "",
 	"click here": "",
 	"click here": "",
 	"Click here for filter guides.": "",
 	"Click here for filter guides.": "",
 	"Click here for help.": "I-klik dinhi alang sa tabang.",
 	"Click here for help.": "I-klik dinhi alang sa tabang.",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Contact Admin for WebUI Access": "",
 	"Contact Admin for WebUI Access": "",
 	"Content": "Kontento",
 	"Content": "Kontento",
-	"Content Extraction": "",
+	"Content Extraction Engine": "",
 	"Context Length": "Ang gitas-on sa konteksto",
 	"Context Length": "Ang gitas-on sa konteksto",
 	"Continue Response": "",
 	"Continue Response": "",
 	"Continue with {{provider}}": "",
 	"Continue with {{provider}}": "",
@@ -246,6 +248,7 @@
 	"Current Model": "Kasamtangang modelo",
 	"Current Model": "Kasamtangang modelo",
 	"Current Password": "Kasamtangang Password",
 	"Current Password": "Kasamtangang Password",
 	"Custom": "Custom",
 	"Custom": "Custom",
+	"Danger Zone": "",
 	"Dark": "Ngitngit",
 	"Dark": "Ngitngit",
 	"Database": "Database",
 	"Database": "Database",
 	"December": "",
 	"December": "",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "",
 	"ElevenLabs": "",
 	"Email": "E-mail",
 	"Email": "E-mail",
 	"Embark on adventures": "",
 	"Embark on adventures": "",
+	"Embedding": "",
 	"Embedding Batch Size": "",
 	"Embedding Batch Size": "",
 	"Embedding Model": "",
 	"Embedding Model": "",
 	"Embedding Model Engine": "",
 	"Embedding Model Engine": "",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "",
 	"Enable Community Sharing": "",
-	"Enable Google Drive": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "I-enable ang bag-ong mga rehistro",
 	"Enable New Sign Ups": "I-enable ang bag-ong mga rehistro",
-	"Enable OneDrive": "",
-	"Enable Web Search": "",
 	"Enabled": "",
 	"Enabled": "",
-	"Engine": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
 	"Enter {{role}} message here": "Pagsulod sa mensahe {{role}} dinhi",
 	"Enter {{role}} message here": "Pagsulod sa mensahe {{role}} dinhi",
 	"Enter a detail about yourself for your LLMs to recall": "",
 	"Enter a detail about yourself for your LLMs to recall": "",
@@ -572,6 +572,7 @@
 	"Input commands": "Pagsulod sa input commands",
 	"Input commands": "Pagsulod sa input commands",
 	"Install from Github URL": "",
 	"Install from Github URL": "",
 	"Instant Auto-Send After Voice Transcription": "",
 	"Instant Auto-Send After Voice Transcription": "",
+	"Integration": "",
 	"Interface": "Interface",
 	"Interface": "Interface",
 	"Invalid file format.": "",
 	"Invalid file format.": "",
 	"Invalid Tag": "",
 	"Invalid Tag": "",
@@ -619,6 +620,7 @@
 	"Listening...": "",
 	"Listening...": "",
 	"Llama.cpp": "",
 	"Llama.cpp": "",
 	"LLMs can make mistakes. Verify important information.": "Ang mga LLM mahimong masayop. ",
 	"LLMs can make mistakes. Verify important information.": "Ang mga LLM mahimong masayop. ",
+	"Loader": "",
 	"Loading Kokoro.js...": "",
 	"Loading Kokoro.js...": "",
 	"Local": "",
 	"Local": "",
 	"Local Models": "",
 	"Local Models": "",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No inference engine with management support found": "",
 	"No inference engine with management support found": "",
 	"No knowledge found": "",
 	"No knowledge found": "",
+	"No memories to clear": "",
 	"No model IDs": "",
 	"No model IDs": "",
 	"No models found": "",
 	"No models found": "",
 	"No models selected": "",
 	"No models selected": "",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "Mga aghat",
 	"Prompts": "Mga aghat",
 	"Prompts Access": "",
 	"Prompts Access": "",
-	"Proxy URL": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull a model from Ollama.com": "Pagkuha ug template gikan sa Ollama.com",
 	"Pull a model from Ollama.com": "Pagkuha ug template gikan sa Ollama.com",
 	"Query Generation Prompt": "",
 	"Query Generation Prompt": "",
-	"Query Params": "Mga parameter sa pangutana",
 	"RAG Template": "RAG nga modelo",
 	"RAG Template": "RAG nga modelo",
 	"Rating": "",
 	"Rating": "",
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"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 splitting": "",
 	"Result": "",
 	"Result": "",
+	"Retrieval": "",
 	"Retrieval Query Generation": "",
 	"Retrieval Query Generation": "",
 	"Rich Text Input for Chat": "",
 	"Rich Text Input for Chat": "",
 	"RK": "",
 	"RK": "",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Web": "Web",
 	"Web": "Web",
 	"Web API": "",
 	"Web API": "",
-	"Web Loader Settings": "",
 	"Web Search": "",
 	"Web Search": "",
 	"Web Search Engine": "",
 	"Web Search Engine": "",
 	"Web Search in Chat": "",
 	"Web Search in Chat": "",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "",
 	"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.": "",
 	"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.": "",
 	"Youtube": "",
 	"Youtube": "",
-	"Youtube Loader Settings": ""
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/cs-CZ/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "Archivovat všechny chaty",
 	"Archive All Chats": "Archivovat všechny chaty",
 	"Archived Chats": "Archivované chaty",
 	"Archived Chats": "Archivované chaty",
 	"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 this channel?": "",
 	"Are you sure you want to delete this channel?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "",
 	"Bocha Search API Key": "",
 	"Brave Search API Key": "Klíč API pro Brave Search",
 	"Brave Search API Key": "Klíč API pro Brave Search",
 	"By {{name}}": "",
 	"By {{name}}": "",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "Obcházení ověření SSL pro webové stránky",
 	"Bypass SSL verification for Websites": "Obcházení ověření SSL pro webové stránky",
 	"Calendar": "",
 	"Calendar": "",
 	"Call": "Volání",
 	"Call": "Volání",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "Kontrola aktualizací...",
 	"Checking for updates...": "Kontrola aktualizací...",
 	"Choose a model before saving...": "Vyberte model před uložením...",
 	"Choose a model before saving...": "Vyberte model před uložením...",
 	"Chunk Overlap": "",
 	"Chunk Overlap": "",
-	"Chunk Params": "",
 	"Chunk Size": "",
 	"Chunk Size": "",
 	"Ciphers": "",
 	"Ciphers": "",
 	"Citation": "Odkaz",
 	"Citation": "Odkaz",
 	"Clear memory": "Vymazat paměť",
 	"Clear memory": "Vymazat paměť",
+	"Clear Memory": "",
 	"click here": "",
 	"click here": "",
 	"Click here for filter guides.": "",
 	"Click here for filter guides.": "",
 	"Click here for help.": "Klikněte zde pro nápovědu.",
 	"Click here for help.": "Klikněte zde pro nápovědu.",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Contact Admin for WebUI Access": "Kontaktujte administrátora pro přístup k webovému rozhraní.",
 	"Contact Admin for WebUI Access": "Kontaktujte administrátora pro přístup k webovému rozhraní.",
 	"Content": "Obsah",
 	"Content": "Obsah",
-	"Content Extraction": "Extrahování obsahu",
+	"Content Extraction Engine": "",
 	"Context Length": "Délka kontextu",
 	"Context Length": "Délka kontextu",
 	"Continue Response": "Pokračovat v odpovědi",
 	"Continue Response": "Pokračovat v odpovědi",
 	"Continue with {{provider}}": "Pokračovat s {{provider}}",
 	"Continue with {{provider}}": "Pokračovat s {{provider}}",
@@ -246,6 +248,7 @@
 	"Current Model": "Aktuální model",
 	"Current Model": "Aktuální model",
 	"Current Password": "Aktuální heslo",
 	"Current Password": "Aktuální heslo",
 	"Custom": "Na míru",
 	"Custom": "Na míru",
+	"Danger Zone": "",
 	"Dark": "Tmavý",
 	"Dark": "Tmavý",
 	"Database": "Databáze",
 	"Database": "Databáze",
 	"December": "Prosinec",
 	"December": "Prosinec",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "ElevenLabs",
 	"ElevenLabs": "ElevenLabs",
 	"Email": "E-mail",
 	"Email": "E-mail",
 	"Embark on adventures": "",
 	"Embark on adventures": "",
+	"Embedding": "",
 	"Embedding Batch Size": "",
 	"Embedding Batch Size": "",
 	"Embedding Model": "Vkládací model (Embedding Model)",
 	"Embedding Model": "Vkládací model (Embedding Model)",
 	"Embedding Model Engine": "",
 	"Embedding Model Engine": "",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Povolit sdílení komunity",
 	"Enable Community Sharing": "Povolit sdílení komunity",
-	"Enable Google Drive": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"Enable Message Rating": "Povolit hodnocení zpráv",
 	"Enable Message Rating": "Povolit hodnocení zpráv",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Povolit nové registrace",
 	"Enable New Sign Ups": "Povolit nové registrace",
-	"Enable OneDrive": "",
-	"Enable Web Search": "Povolit webové vyhledávání",
 	"Enabled": "Povoleno",
 	"Enabled": "Povoleno",
-	"Engine": "Engine",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Ujistěte se, že váš CSV soubor obsahuje 4 sloupce v tomto pořadí: Name, Email, Password, Role.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Ujistěte se, že váš CSV soubor obsahuje 4 sloupce v tomto pořadí: Name, Email, Password, Role.",
 	"Enter {{role}} message here": "Zadejte zprávu {{role}} sem",
 	"Enter {{role}} message here": "Zadejte zprávu {{role}} sem",
 	"Enter a detail about yourself for your LLMs to recall": "Zadejte podrobnost o sobě, kterou si vaše LLM mají pamatovat.",
 	"Enter a detail about yourself for your LLMs to recall": "Zadejte podrobnost o sobě, kterou si vaše LLM mají pamatovat.",
@@ -572,6 +572,7 @@
 	"Input commands": "Vstupní příkazy",
 	"Input commands": "Vstupní příkazy",
 	"Install from Github URL": "Instalace z URL adresy Githubu",
 	"Install from Github URL": "Instalace z URL adresy Githubu",
 	"Instant Auto-Send After Voice Transcription": "Okamžité automatické odeslání po přepisu hlasu",
 	"Instant Auto-Send After Voice Transcription": "Okamžité automatické odeslání po přepisu hlasu",
+	"Integration": "",
 	"Interface": "Rozhraní",
 	"Interface": "Rozhraní",
 	"Invalid file format.": "Neplatný formát souboru.",
 	"Invalid file format.": "Neplatný formát souboru.",
 	"Invalid Tag": "Neplatný tag",
 	"Invalid Tag": "Neplatný tag",
@@ -619,6 +620,7 @@
 	"Listening...": "Poslouchání...",
 	"Listening...": "Poslouchání...",
 	"Llama.cpp": "",
 	"Llama.cpp": "",
 	"LLMs can make mistakes. Verify important information.": "LLM mohou dělat chyby. Ověřte si důležité informace.",
 	"LLMs can make mistakes. Verify important information.": "LLM mohou dělat chyby. Ověřte si důležité informace.",
+	"Loader": "",
 	"Loading Kokoro.js...": "",
 	"Loading Kokoro.js...": "",
 	"Local": "",
 	"Local": "",
 	"Local Models": "Lokální modely",
 	"Local Models": "Lokální modely",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "Nebyl nalezen žádný obsah HTML, CSS ani JavaScriptu.",
 	"No HTML, CSS, or JavaScript content found.": "Nebyl nalezen žádný obsah HTML, CSS ani JavaScriptu.",
 	"No inference engine with management support found": "",
 	"No inference engine with management support found": "",
 	"No knowledge found": "Nebyly nalezeny žádné znalosti",
 	"No knowledge found": "Nebyly nalezeny žádné znalosti",
+	"No memories to clear": "",
 	"No model IDs": "",
 	"No model IDs": "",
 	"No models found": "Nebyly nalezeny žádné modely",
 	"No models found": "Nebyly nalezeny žádné modely",
 	"No models selected": "",
 	"No models selected": "",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "Prompty",
 	"Prompts": "Prompty",
 	"Prompts Access": "",
 	"Prompts Access": "",
-	"Proxy URL": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Stáhněte \"{{searchValue}}\" z Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Stáhněte \"{{searchValue}}\" z Ollama.com",
 	"Pull a model from Ollama.com": "Stáhněte model z Ollama.com",
 	"Pull a model from Ollama.com": "Stáhněte model z Ollama.com",
 	"Query Generation Prompt": "",
 	"Query Generation Prompt": "",
-	"Query Params": "Parametry dotazu",
 	"RAG Template": "Šablona RAG",
 	"RAG Template": "Šablona RAG",
 	"Rating": "Hodnocení",
 	"Rating": "Hodnocení",
 	"Re-rank models by topic similarity": "Znovu seřaďte modely podle podobnosti témat.",
 	"Re-rank models by topic similarity": "Znovu seřaďte modely podle podobnosti témat.",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Oznámení o odpovědích nelze aktivovat, protože oprávnění webu byla zamítnuta. Navštivte nastavení svého prohlížeče a udělte potřebný přístup.",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Oznámení o odpovědích nelze aktivovat, protože oprávnění webu byla zamítnuta. Navštivte nastavení svého prohlížeče a udělte potřebný přístup.",
 	"Response splitting": "Rozdělení odpovědi",
 	"Response splitting": "Rozdělení odpovědi",
 	"Result": "Výsledek",
 	"Result": "Výsledek",
+	"Retrieval": "",
 	"Retrieval Query Generation": "",
 	"Retrieval Query Generation": "",
 	"Rich Text Input for Chat": "Vstup pro chat ve formátu Rich Text",
 	"Rich Text Input for Chat": "Vstup pro chat ve formátu Rich Text",
 	"RK": "RK",
 	"RK": "RK",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Web": "Web",
 	"Web": "Web",
 	"Web API": "Webové API",
 	"Web API": "Webové API",
-	"Web Loader Settings": "Nastavení Web Loaderu",
 	"Web Search": "Vyhledávání na webu",
 	"Web Search": "Vyhledávání na webu",
 	"Web Search Engine": "Webový vyhledávač",
 	"Web Search Engine": "Webový vyhledávač",
 	"Web Search in Chat": "",
 	"Web Search in Chat": "",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "Stav vašeho účtu je nyní čekající na aktivaci.",
 	"Your account status is currently pending activation.": "Stav vašeho účtu je nyní čekající na aktivaci.",
 	"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.": "Váš celý příspěvek půjde přímo vývojáři pluginu; Open WebUI si nebere žádné procento. Vybraná platforma pro financování však může mít vlastní poplatky.",
 	"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.": "Váš celý příspěvek půjde přímo vývojáři pluginu; Open WebUI si nebere žádné procento. Vybraná platforma pro financování však může mít vlastní poplatky.",
 	"Youtube": "YouTube",
 	"Youtube": "YouTube",
-	"Youtube Loader Settings": "Nastavení YouTube loaderu"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/da-DK/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "Arkiver alle chats",
 	"Archive All Chats": "Arkiver alle chats",
 	"Archived Chats": "Arkiverede chats",
 	"Archived Chats": "Arkiverede 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 this channel?": "",
 	"Are you sure you want to delete this channel?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "",
 	"Bocha Search API Key": "",
 	"Brave Search API Key": "Brave Search API nøgle",
 	"Brave Search API Key": "Brave Search API nøgle",
 	"By {{name}}": "",
 	"By {{name}}": "",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "Forbigå SSL verifikation på websider",
 	"Bypass SSL verification for Websites": "Forbigå SSL verifikation på websider",
 	"Calendar": "",
 	"Calendar": "",
 	"Call": "Opkald",
 	"Call": "Opkald",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "Søger efter opdateringer",
 	"Checking for updates...": "Søger efter opdateringer",
 	"Choose a model before saving...": "Vælg en model før du gemmer",
 	"Choose a model before saving...": "Vælg en model før du gemmer",
 	"Chunk Overlap": "Chunk overlap",
 	"Chunk Overlap": "Chunk overlap",
-	"Chunk Params": "Chunk parametre",
 	"Chunk Size": "Chunk størrelse",
 	"Chunk Size": "Chunk størrelse",
 	"Ciphers": "",
 	"Ciphers": "",
 	"Citation": "Citat",
 	"Citation": "Citat",
 	"Clear memory": "Slet hukommelse",
 	"Clear memory": "Slet hukommelse",
+	"Clear Memory": "",
 	"click here": "",
 	"click here": "",
 	"Click here for filter guides.": "",
 	"Click here for filter guides.": "",
 	"Click here for help.": "Klik her for hjælp",
 	"Click here for help.": "Klik her for hjælp",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Contact Admin for WebUI Access": "Kontakt din administrator for adgang til WebUI",
 	"Contact Admin for WebUI Access": "Kontakt din administrator for adgang til WebUI",
 	"Content": "Indhold",
 	"Content": "Indhold",
-	"Content Extraction": "Udtræk af indhold",
+	"Content Extraction Engine": "",
 	"Context Length": "Kontekst længde",
 	"Context Length": "Kontekst længde",
 	"Continue Response": "Fortsæt svar",
 	"Continue Response": "Fortsæt svar",
 	"Continue with {{provider}}": "Fortsæt med {{provider}}",
 	"Continue with {{provider}}": "Fortsæt med {{provider}}",
@@ -246,6 +248,7 @@
 	"Current Model": "Nuværende model",
 	"Current Model": "Nuværende model",
 	"Current Password": "Nuværende password",
 	"Current Password": "Nuværende password",
 	"Custom": "Custom",
 	"Custom": "Custom",
+	"Danger Zone": "",
 	"Dark": "Mørk",
 	"Dark": "Mørk",
 	"Database": "Database",
 	"Database": "Database",
 	"December": "december",
 	"December": "december",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "ElevenLabs",
 	"ElevenLabs": "ElevenLabs",
 	"Email": "Email",
 	"Email": "Email",
 	"Embark on adventures": "",
 	"Embark on adventures": "",
+	"Embedding": "",
 	"Embedding Batch Size": "Embedding Batch størrelse",
 	"Embedding Batch Size": "Embedding Batch størrelse",
 	"Embedding Model": "Embedding Model",
 	"Embedding Model": "Embedding Model",
 	"Embedding Model Engine": "Embedding Model engine",
 	"Embedding Model Engine": "Embedding Model engine",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Aktiver deling til Community",
 	"Enable Community Sharing": "Aktiver deling til Community",
-	"Enable Google Drive": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"Enable Message Rating": "Aktiver rating af besked",
 	"Enable Message Rating": "Aktiver rating af besked",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Aktiver nye signups",
 	"Enable New Sign Ups": "Aktiver nye signups",
-	"Enable OneDrive": "",
-	"Enable Web Search": "Aktiver websøgning",
 	"Enabled": "Aktiveret",
 	"Enabled": "Aktiveret",
-	"Engine": "engine",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Sørg for at din CSV-fil indeholder 4 kolonner in denne rækkefølge: Name, Email, Password, Role.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Sørg for at din CSV-fil indeholder 4 kolonner in denne rækkefølge: Name, Email, Password, Role.",
 	"Enter {{role}} message here": "Indtast {{role}} besked her",
 	"Enter {{role}} message here": "Indtast {{role}} besked her",
 	"Enter a detail about yourself for your LLMs to recall": "Indtast en detalje om dig selv, som dine LLMs kan huske",
 	"Enter a detail about yourself for your LLMs to recall": "Indtast en detalje om dig selv, som dine LLMs kan huske",
@@ -572,6 +572,7 @@
 	"Input commands": "Inputkommandoer",
 	"Input commands": "Inputkommandoer",
 	"Install from Github URL": "Installer fra Github URL",
 	"Install from Github URL": "Installer fra Github URL",
 	"Instant Auto-Send After Voice Transcription": "Øjeblikkelig automatisk afsendelse efter stemmetransskription",
 	"Instant Auto-Send After Voice Transcription": "Øjeblikkelig automatisk afsendelse efter stemmetransskription",
+	"Integration": "",
 	"Interface": "Grænseflade",
 	"Interface": "Grænseflade",
 	"Invalid file format.": "",
 	"Invalid file format.": "",
 	"Invalid Tag": "Ugyldigt tag",
 	"Invalid Tag": "Ugyldigt tag",
@@ -619,6 +620,7 @@
 	"Listening...": "Lytter...",
 	"Listening...": "Lytter...",
 	"Llama.cpp": "",
 	"Llama.cpp": "",
 	"LLMs can make mistakes. Verify important information.": "LLM'er kan lave fejl. Bekræft vigtige oplysninger.",
 	"LLMs can make mistakes. Verify important information.": "LLM'er kan lave fejl. Bekræft vigtige oplysninger.",
+	"Loader": "",
 	"Loading Kokoro.js...": "",
 	"Loading Kokoro.js...": "",
 	"Local": "",
 	"Local": "",
 	"Local Models": "Lokale modeller",
 	"Local Models": "Lokale modeller",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "Intet HTML-, CSS- eller JavaScript-indhold fundet.",
 	"No HTML, CSS, or JavaScript content found.": "Intet HTML-, CSS- eller JavaScript-indhold fundet.",
 	"No inference engine with management support found": "",
 	"No inference engine with management support found": "",
 	"No knowledge found": "Ingen viden fundet",
 	"No knowledge found": "Ingen viden fundet",
+	"No memories to clear": "",
 	"No model IDs": "",
 	"No model IDs": "",
 	"No models found": "",
 	"No models found": "",
 	"No models selected": "",
 	"No models selected": "",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "Prompts",
 	"Prompts": "Prompts",
 	"Prompts Access": "",
 	"Prompts Access": "",
-	"Proxy URL": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Hent \"{{searchValue}}\" fra Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Hent \"{{searchValue}}\" fra Ollama.com",
 	"Pull a model from Ollama.com": "Hent en model fra Ollama.com",
 	"Pull a model from Ollama.com": "Hent en model fra Ollama.com",
 	"Query Generation Prompt": "",
 	"Query Generation Prompt": "",
-	"Query Params": "Forespørgselsparametre",
 	"RAG Template": "RAG-skabelon",
 	"RAG Template": "RAG-skabelon",
 	"Rating": "",
 	"Rating": "",
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Svarnotifikationer kan ikke aktiveres, da webstedets tilladelser er blevet nægtet. Besøg dine browserindstillinger for at give den nødvendige adgang.",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Svarnotifikationer kan ikke aktiveres, da webstedets tilladelser er blevet nægtet. Besøg dine browserindstillinger for at give den nødvendige adgang.",
 	"Response splitting": "Svaropdeling",
 	"Response splitting": "Svaropdeling",
 	"Result": "",
 	"Result": "",
+	"Retrieval": "",
 	"Retrieval Query Generation": "",
 	"Retrieval Query Generation": "",
 	"Rich Text Input for Chat": "",
 	"Rich Text Input for Chat": "",
 	"RK": "",
 	"RK": "",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Web": "Web",
 	"Web": "Web",
 	"Web API": "Web API",
 	"Web API": "Web API",
-	"Web Loader Settings": "Web Loader-indstillinger",
 	"Web Search": "Websøgning",
 	"Web Search": "Websøgning",
 	"Web Search Engine": "Websøgemaskine",
 	"Web Search Engine": "Websøgemaskine",
 	"Web Search in Chat": "",
 	"Web Search in Chat": "",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "Din kontostatus afventer i øjeblikket aktivering.",
 	"Your account status is currently pending activation.": "Din kontostatus afventer i øjeblikket aktivering.",
 	"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.": "Hele dit bidrag går direkte til plugin-udvikleren; Open WebUI tager ikke nogen procentdel. Den valgte finansieringsplatform kan dog have sine egne gebyrer.",
 	"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.": "Hele dit bidrag går direkte til plugin-udvikleren; Open WebUI tager ikke nogen procentdel. Den valgte finansieringsplatform kan dog have sine egne gebyrer.",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
-	"Youtube Loader Settings": "Youtube Loader-indstillinger"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/de-DE/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "Alle Unterhaltungen archivieren",
 	"Archive All Chats": "Alle Unterhaltungen archivieren",
 	"Archived Chats": "Archivierte Unterhaltungen",
 	"Archived Chats": "Archivierte Unterhaltungen",
 	"archived-chat-export": "archivierter-chat-export",
 	"archived-chat-export": "archivierter-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?": "Sind Sie sicher, dass Sie diesen Kanal löschen möchten?",
 	"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 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 Unterhaltungen wiederherstellen möchten?",
 	"Are you sure you want to unarchive all archived chats?": "Sind Sie sicher, dass Sie alle archivierten Unterhaltungen wiederherstellen möchten?",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "",
 	"Bocha Search API Key": "",
 	"Brave Search API Key": "Brave Search API-Schlüssel",
 	"Brave Search API Key": "Brave Search API-Schlüssel",
 	"By {{name}}": "Von {{name}}",
 	"By {{name}}": "Von {{name}}",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "SSL-Überprüfung für Webseiten umgehen",
 	"Bypass SSL verification for Websites": "SSL-Überprüfung für Webseiten umgehen",
 	"Calendar": "",
 	"Calendar": "",
 	"Call": "Anrufen",
 	"Call": "Anrufen",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "Sucht nach Updates...",
 	"Checking for updates...": "Sucht nach Updates...",
 	"Choose a model before saving...": "Wählen Sie ein Modell, bevor Sie speichern...",
 	"Choose a model before saving...": "Wählen Sie ein Modell, bevor Sie speichern...",
 	"Chunk Overlap": "Blocküberlappung",
 	"Chunk Overlap": "Blocküberlappung",
-	"Chunk Params": "Blockparameter",
 	"Chunk Size": "Blockgröße",
 	"Chunk Size": "Blockgröße",
 	"Ciphers": "Verschlüsselungen",
 	"Ciphers": "Verschlüsselungen",
 	"Citation": "Zitate",
 	"Citation": "Zitate",
 	"Clear memory": "Alle Erinnerungen entfernen",
 	"Clear memory": "Alle Erinnerungen entfernen",
+	"Clear Memory": "",
 	"click here": "hier klicken",
 	"click here": "hier klicken",
 	"Click here for filter guides.": "Klicken Sie hier für Filteranleitungen.",
 	"Click here for filter guides.": "Klicken Sie hier für Filteranleitungen.",
 	"Click here for help.": "Klicken Sie hier für Hilfe.",
 	"Click here for help.": "Klicken Sie hier für Hilfe.",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "Beschränkt den Aufwand für das Schlussfolgern bei Schlussfolgerungsmodellen. Nur anwendbar auf Schlussfolgerungsmodelle von spezifischen Anbietern, die den Schlussfolgerungsaufwand unterstützen. (Standard: medium)",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "Beschränkt den Aufwand für das Schlussfolgern bei Schlussfolgerungsmodellen. Nur anwendbar auf Schlussfolgerungsmodelle von spezifischen Anbietern, die den Schlussfolgerungsaufwand unterstützen. (Standard: medium)",
 	"Contact Admin for WebUI Access": "Kontaktieren Sie den Administrator für den Zugriff auf die Weboberfläche",
 	"Contact Admin for WebUI Access": "Kontaktieren Sie den Administrator für den Zugriff auf die Weboberfläche",
 	"Content": "Info",
 	"Content": "Info",
-	"Content Extraction": "Inhaltsextraktion",
+	"Content Extraction Engine": "",
 	"Context Length": "Kontextlänge",
 	"Context Length": "Kontextlänge",
 	"Continue Response": "Antwort fortsetzen",
 	"Continue Response": "Antwort fortsetzen",
 	"Continue with {{provider}}": "Mit {{provider}} fortfahren",
 	"Continue with {{provider}}": "Mit {{provider}} fortfahren",
@@ -246,6 +248,7 @@
 	"Current Model": "Aktuelles Modell",
 	"Current Model": "Aktuelles Modell",
 	"Current Password": "Aktuelles Passwort",
 	"Current Password": "Aktuelles Passwort",
 	"Custom": "Benutzerdefiniert",
 	"Custom": "Benutzerdefiniert",
+	"Danger Zone": "",
 	"Dark": "Dunkel",
 	"Dark": "Dunkel",
 	"Database": "Datenbank",
 	"Database": "Datenbank",
 	"December": "Dezember",
 	"December": "Dezember",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "ElevenLabs",
 	"ElevenLabs": "ElevenLabs",
 	"Email": "E-Mail",
 	"Email": "E-Mail",
 	"Embark on adventures": "Abenteuer erleben",
 	"Embark on adventures": "Abenteuer erleben",
+	"Embedding": "",
 	"Embedding Batch Size": "Embedding-Stapelgröße",
 	"Embedding Batch Size": "Embedding-Stapelgröße",
 	"Embedding Model": "Embedding-Modell",
 	"Embedding Model": "Embedding-Modell",
 	"Embedding Model Engine": "Embedding-Modell-Engine",
 	"Embedding Model Engine": "Embedding-Modell-Engine",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "Automatische Vervollständigung für Chat-Nachrichten aktivieren",
 	"Enable autocomplete generation for chat messages": "Automatische Vervollständigung für Chat-Nachrichten aktivieren",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Community-Freigabe aktivieren",
 	"Enable Community Sharing": "Community-Freigabe aktivieren",
-	"Enable Google Drive": "Google Drive aktivieren",
 	"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.": "Aktiviere Memory Locking (mlock), um zu verhindern, dass Modelldaten aus dem RAM ausgelagert werden. Diese Option sperrt die Arbeitsseiten des Modells im RAM, um sicherzustellen, dass sie nicht auf die Festplatte ausgelagert werden. Dies kann die Leistung verbessern, indem Page Faults vermieden und ein schneller Datenzugriff sichergestellt werden.",
 	"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.": "Aktiviere Memory Locking (mlock), um zu verhindern, dass Modelldaten aus dem RAM ausgelagert werden. Diese Option sperrt die Arbeitsseiten des Modells im RAM, um sicherzustellen, dass sie nicht auf die Festplatte ausgelagert werden. Dies kann die Leistung verbessern, indem Page Faults vermieden und ein schneller Datenzugriff sichergestellt werden.",
 	"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.": "Aktiviere Memory Mapping (mmap), um Modelldaten zu laden. Diese Option ermöglicht es dem System, den Festplattenspeicher als Erweiterung des RAM zu verwenden, indem Festplattendateien so behandelt werden, als ob sie im RAM wären. Dies kann die Modellleistung verbessern, indem ein schnellerer Datenzugriff ermöglicht wird. Es kann jedoch nicht auf allen Systemen korrekt funktionieren und einen erheblichen Teil des Festplattenspeichers beanspruchen.",
 	"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.": "Aktiviere Memory Mapping (mmap), um Modelldaten zu laden. Diese Option ermöglicht es dem System, den Festplattenspeicher als Erweiterung des RAM zu verwenden, indem Festplattendateien so behandelt werden, als ob sie im RAM wären. Dies kann die Modellleistung verbessern, indem ein schnellerer Datenzugriff ermöglicht wird. Es kann jedoch nicht auf allen Systemen korrekt funktionieren und einen erheblichen Teil des Festplattenspeichers beanspruchen.",
 	"Enable Message Rating": "Nachrichtenbewertung aktivieren",
 	"Enable Message Rating": "Nachrichtenbewertung aktivieren",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Mirostat Sampling zur Steuerung der Perplexität aktivieren. (Standard: 0, 0 = Deaktiviert, 1 = Mirostat, 2 = Mirostat 2.0)",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Mirostat Sampling zur Steuerung der Perplexität aktivieren. (Standard: 0, 0 = Deaktiviert, 1 = Mirostat, 2 = Mirostat 2.0)",
 	"Enable New Sign Ups": "Registrierung erlauben",
 	"Enable New Sign Ups": "Registrierung erlauben",
-	"Enable OneDrive": "",
-	"Enable Web Search": "Websuche aktivieren",
 	"Enabled": "Aktiviert",
 	"Enabled": "Aktiviert",
-	"Engine": "Engine",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Stellen Sie sicher, dass Ihre CSV-Datei 4 Spalten in dieser Reihenfolge enthält: Name, E-Mail, Passwort, Rolle.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Stellen Sie sicher, dass Ihre CSV-Datei 4 Spalten in dieser Reihenfolge enthält: Name, E-Mail, Passwort, Rolle.",
 	"Enter {{role}} message here": "Geben Sie die {{role}}-Nachricht hier ein",
 	"Enter {{role}} message here": "Geben Sie die {{role}}-Nachricht hier ein",
 	"Enter a detail about yourself for your LLMs to recall": "Geben Sie ein Detail über sich selbst ein, das Ihre Sprachmodelle (LLMs) sich merken sollen",
 	"Enter a detail about yourself for your LLMs to recall": "Geben Sie ein Detail über sich selbst ein, das Ihre Sprachmodelle (LLMs) sich merken sollen",
@@ -572,6 +572,7 @@
 	"Input commands": "Eingabebefehle",
 	"Input commands": "Eingabebefehle",
 	"Install from Github URL": "Installiere von der Github-URL",
 	"Install from Github URL": "Installiere von der Github-URL",
 	"Instant Auto-Send After Voice Transcription": "Spracherkennung direkt absenden",
 	"Instant Auto-Send After Voice Transcription": "Spracherkennung direkt absenden",
+	"Integration": "",
 	"Interface": "Benutzeroberfläche",
 	"Interface": "Benutzeroberfläche",
 	"Invalid file format.": "Ungültiges Dateiformat.",
 	"Invalid file format.": "Ungültiges Dateiformat.",
 	"Invalid Tag": "Ungültiger Tag",
 	"Invalid Tag": "Ungültiger Tag",
@@ -619,6 +620,7 @@
 	"Listening...": "Höre zu...",
 	"Listening...": "Höre zu...",
 	"Llama.cpp": "Llama.cpp",
 	"Llama.cpp": "Llama.cpp",
 	"LLMs can make mistakes. Verify important information.": "LLMs können Fehler machen. Überprüfe wichtige Informationen.",
 	"LLMs can make mistakes. Verify important information.": "LLMs können Fehler machen. Überprüfe wichtige Informationen.",
+	"Loader": "",
 	"Loading Kokoro.js...": "",
 	"Loading Kokoro.js...": "",
 	"Local": "Lokal",
 	"Local": "Lokal",
 	"Local Models": "Lokale Modelle",
 	"Local Models": "Lokale Modelle",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "Keine HTML-, CSS- oder JavaScript-Inhalte gefunden.",
 	"No HTML, CSS, or JavaScript content found.": "Keine HTML-, CSS- oder JavaScript-Inhalte gefunden.",
 	"No inference engine with management support found": "Keine Inferenz-Engine mit Management-Unterstützung gefunden",
 	"No inference engine with management support found": "Keine Inferenz-Engine mit Management-Unterstützung gefunden",
 	"No knowledge found": "Kein Wissen gefunden",
 	"No knowledge found": "Kein Wissen gefunden",
+	"No memories to clear": "",
 	"No model IDs": "Keine Modell-IDs",
 	"No model IDs": "Keine Modell-IDs",
 	"No models found": "Keine Modelle gefunden",
 	"No models found": "Keine Modelle gefunden",
 	"No models selected": "Keine Modelle ausgewählt",
 	"No models selected": "Keine Modelle ausgewählt",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "Prompt erfolgreich aktualisiert",
 	"Prompt updated successfully": "Prompt erfolgreich aktualisiert",
 	"Prompts": "Prompts",
 	"Prompts": "Prompts",
 	"Prompts Access": "Prompt-Zugriff",
 	"Prompts Access": "Prompt-Zugriff",
-	"Proxy URL": "Proxy-URL",
 	"Pull \"{{searchValue}}\" from Ollama.com": "\"{{searchValue}}\" von Ollama.com beziehen",
 	"Pull \"{{searchValue}}\" from Ollama.com": "\"{{searchValue}}\" von Ollama.com beziehen",
 	"Pull a model from Ollama.com": "Modell von Ollama.com beziehen",
 	"Pull a model from Ollama.com": "Modell von Ollama.com beziehen",
 	"Query Generation Prompt": "Abfragegenerierungsprompt",
 	"Query Generation Prompt": "Abfragegenerierungsprompt",
-	"Query Params": "Abfrageparameter",
 	"RAG Template": "RAG-Vorlage",
 	"RAG Template": "RAG-Vorlage",
 	"Rating": "Bewertung",
 	"Rating": "Bewertung",
 	"Re-rank models by topic similarity": "Modelle nach thematischer Ähnlichkeit neu ordnen",
 	"Re-rank models by topic similarity": "Modelle nach thematischer Ähnlichkeit neu ordnen",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Benachrichtigungen können nicht aktiviert werden, da die Website-Berechtigungen abgelehnt wurden. Bitte besuchen Sie Ihre Browser-Einstellungen, um den erforderlichen Zugriff zu gewähren.",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Benachrichtigungen können nicht aktiviert werden, da die Website-Berechtigungen abgelehnt wurden. Bitte besuchen Sie Ihre Browser-Einstellungen, um den erforderlichen Zugriff zu gewähren.",
 	"Response splitting": "Antwortaufteilung",
 	"Response splitting": "Antwortaufteilung",
 	"Result": "Ergebnis",
 	"Result": "Ergebnis",
+	"Retrieval": "",
 	"Retrieval Query Generation": "Abfragegenerierung",
 	"Retrieval Query Generation": "Abfragegenerierung",
 	"Rich Text Input for Chat": "Rich-Text-Eingabe für Unterhaltungen",
 	"Rich Text Input for Chat": "Rich-Text-Eingabe für Unterhaltungen",
 	"RK": "RK",
 	"RK": "RK",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Web": "Web",
 	"Web": "Web",
 	"Web API": "Web-API",
 	"Web API": "Web-API",
-	"Web Loader Settings": "Web Loader Einstellungen",
 	"Web Search": "Websuche",
 	"Web Search": "Websuche",
 	"Web Search Engine": "Suchmaschine",
 	"Web Search Engine": "Suchmaschine",
 	"Web Search in Chat": "Websuche im Chat",
 	"Web Search in Chat": "Websuche im Chat",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "Ihr Kontostatus ist derzeit ausstehend und wartet auf Aktivierung.",
 	"Your account status is currently pending activation.": "Ihr Kontostatus ist derzeit ausstehend und wartet auf Aktivierung.",
 	"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.": "Ihr gesamter Beitrag geht direkt an den Plugin-Entwickler; Open WebUI behält keinen Prozentsatz ein. Die gewählte Finanzierungsplattform kann jedoch eigene Gebühren haben.",
 	"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.": "Ihr gesamter Beitrag geht direkt an den Plugin-Entwickler; Open WebUI behält keinen Prozentsatz ein. Die gewählte Finanzierungsplattform kann jedoch eigene Gebühren haben.",
 	"Youtube": "YouTube",
 	"Youtube": "YouTube",
-	"Youtube Loader Settings": "YouTube-Ladeeinstellungen"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/dg-DG/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "",
 	"Archive All Chats": "",
 	"Archived Chats": "",
 	"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 this channel?": "",
 	"Are you sure you want to delete this channel?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "",
 	"Bocha Search API Key": "",
 	"Brave Search API Key": "",
 	"Brave Search API Key": "",
 	"By {{name}}": "",
 	"By {{name}}": "",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "",
 	"Bypass SSL verification for Websites": "",
 	"Calendar": "",
 	"Calendar": "",
 	"Call": "",
 	"Call": "",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "Checking for updates... Such anticipation...",
 	"Checking for updates...": "Checking for updates... Such anticipation...",
 	"Choose a model before saving...": "Choose model before saving... Wow choose first.",
 	"Choose a model before saving...": "Choose model before saving... Wow choose first.",
 	"Chunk Overlap": "Chunk Overlap",
 	"Chunk Overlap": "Chunk Overlap",
-	"Chunk Params": "Chunk Params",
 	"Chunk Size": "Chunk Size",
 	"Chunk Size": "Chunk Size",
 	"Ciphers": "",
 	"Ciphers": "",
 	"Citation": "",
 	"Citation": "",
 	"Clear memory": "",
 	"Clear memory": "",
+	"Clear Memory": "",
 	"click here": "",
 	"click here": "",
 	"Click here for filter guides.": "",
 	"Click here for filter guides.": "",
 	"Click here for help.": "Click for help. Much assist.",
 	"Click here for help.": "Click for help. Much assist.",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Contact Admin for WebUI Access": "",
 	"Contact Admin for WebUI Access": "",
 	"Content": "Content",
 	"Content": "Content",
-	"Content Extraction": "",
+	"Content Extraction Engine": "",
 	"Context Length": "Context Length",
 	"Context Length": "Context Length",
 	"Continue Response": "",
 	"Continue Response": "",
 	"Continue with {{provider}}": "",
 	"Continue with {{provider}}": "",
@@ -246,6 +248,7 @@
 	"Current Model": "Current Model",
 	"Current Model": "Current Model",
 	"Current Password": "Current Password",
 	"Current Password": "Current Password",
 	"Custom": "Custom",
 	"Custom": "Custom",
+	"Danger Zone": "",
 	"Dark": "Dark",
 	"Dark": "Dark",
 	"Database": "Database",
 	"Database": "Database",
 	"December": "",
 	"December": "",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "",
 	"ElevenLabs": "",
 	"Email": "Email",
 	"Email": "Email",
 	"Embark on adventures": "",
 	"Embark on adventures": "",
+	"Embedding": "",
 	"Embedding Batch Size": "",
 	"Embedding Batch Size": "",
 	"Embedding Model": "",
 	"Embedding Model": "",
 	"Embedding Model Engine": "",
 	"Embedding Model Engine": "",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "",
 	"Enable Community Sharing": "",
-	"Enable Google Drive": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Enable New Bark Ups",
 	"Enable New Sign Ups": "Enable New Bark Ups",
-	"Enable OneDrive": "",
-	"Enable Web Search": "",
 	"Enabled": "",
 	"Enabled": "",
-	"Engine": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
 	"Enter {{role}} message here": "Enter {{role}} bork here",
 	"Enter {{role}} message here": "Enter {{role}} bork here",
 	"Enter a detail about yourself for your LLMs to recall": "",
 	"Enter a detail about yourself for your LLMs to recall": "",
@@ -572,6 +572,7 @@
 	"Input commands": "Input commands",
 	"Input commands": "Input commands",
 	"Install from Github URL": "",
 	"Install from Github URL": "",
 	"Instant Auto-Send After Voice Transcription": "",
 	"Instant Auto-Send After Voice Transcription": "",
+	"Integration": "",
 	"Interface": "Interface",
 	"Interface": "Interface",
 	"Invalid file format.": "",
 	"Invalid file format.": "",
 	"Invalid Tag": "",
 	"Invalid Tag": "",
@@ -619,6 +620,7 @@
 	"Listening...": "",
 	"Listening...": "",
 	"Llama.cpp": "",
 	"Llama.cpp": "",
 	"LLMs can make mistakes. Verify important information.": "LLMs can make borks. Verify important info.",
 	"LLMs can make mistakes. Verify important information.": "LLMs can make borks. Verify important info.",
+	"Loader": "",
 	"Loading Kokoro.js...": "",
 	"Loading Kokoro.js...": "",
 	"Local": "",
 	"Local": "",
 	"Local Models": "",
 	"Local Models": "",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No inference engine with management support found": "",
 	"No inference engine with management support found": "",
 	"No knowledge found": "",
 	"No knowledge found": "",
+	"No memories to clear": "",
 	"No model IDs": "",
 	"No model IDs": "",
 	"No models found": "",
 	"No models found": "",
 	"No models selected": "",
 	"No models selected": "",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "Promptos",
 	"Prompts": "Promptos",
 	"Prompts Access": "",
 	"Prompts Access": "",
-	"Proxy URL": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull a model from Ollama.com": "Pull a wowdel from Ollama.com",
 	"Pull a model from Ollama.com": "Pull a wowdel from Ollama.com",
 	"Query Generation Prompt": "",
 	"Query Generation Prompt": "",
-	"Query Params": "Query Bark",
 	"RAG Template": "RAG Template",
 	"RAG Template": "RAG Template",
 	"Rating": "",
 	"Rating": "",
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"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 splitting": "",
 	"Result": "",
 	"Result": "",
+	"Retrieval": "",
 	"Retrieval Query Generation": "",
 	"Retrieval Query Generation": "",
 	"Rich Text Input for Chat": "",
 	"Rich Text Input for Chat": "",
 	"RK": "",
 	"RK": "",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Web": "Web very web",
 	"Web": "Web very web",
 	"Web API": "",
 	"Web API": "",
-	"Web Loader Settings": "",
 	"Web Search": "",
 	"Web Search": "",
 	"Web Search Engine": "",
 	"Web Search Engine": "",
 	"Web Search in Chat": "",
 	"Web Search in Chat": "",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "",
 	"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.": "",
 	"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.": "",
 	"Youtube": "",
 	"Youtube": "",
-	"Youtube Loader Settings": ""
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/el-GR/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "Αρχειοθέτηση Όλων των Συνομιλιών",
 	"Archive All Chats": "Αρχειοθέτηση Όλων των Συνομιλιών",
 	"Archived Chats": "Αρχειοθετημένες Συνομιλίες",
 	"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 this channel?": "",
 	"Are you sure you want to delete this channel?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "Είστε σίγουροι ότι θέλετε να απο-αρχειοθετήσετε όλες τις αρχειοθετημένες συνομιλίες;",
 	"Are you sure you want to unarchive all archived chats?": "Είστε σίγουροι ότι θέλετε να απο-αρχειοθετήσετε όλες τις αρχειοθετημένες συνομιλίες;",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "",
 	"Bocha Search API Key": "",
 	"Brave Search API Key": "Κλειδί API Brave Search",
 	"Brave Search API Key": "Κλειδί API Brave Search",
 	"By {{name}}": "Από {{name}}",
 	"By {{name}}": "Από {{name}}",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "Παράκαμψη επαλήθευσης SSL για Ιστότοπους",
 	"Bypass SSL verification for Websites": "Παράκαμψη επαλήθευσης SSL για Ιστότοπους",
 	"Calendar": "",
 	"Calendar": "",
 	"Call": "Κλήση",
 	"Call": "Κλήση",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "Ελέγχεται για ενημερώσεις...",
 	"Checking for updates...": "Ελέγχεται για ενημερώσεις...",
 	"Choose a model before saving...": "Επιλέξτε ένα μοντέλο πριν αποθηκεύσετε...",
 	"Choose a model before saving...": "Επιλέξτε ένα μοντέλο πριν αποθηκεύσετε...",
 	"Chunk Overlap": "Επικάλυψη Τμημάτων",
 	"Chunk Overlap": "Επικάλυψη Τμημάτων",
-	"Chunk Params": "Παράμετροι Τμημάτων",
 	"Chunk Size": "Μέγεθος Τμημάτων",
 	"Chunk Size": "Μέγεθος Τμημάτων",
 	"Ciphers": "Κρυπτογραφήσεις",
 	"Ciphers": "Κρυπτογραφήσεις",
 	"Citation": "Παράθεση",
 	"Citation": "Παράθεση",
 	"Clear memory": "Καθαρισμός μνήμης",
 	"Clear memory": "Καθαρισμός μνήμης",
+	"Clear Memory": "",
 	"click here": "κλικ εδώ",
 	"click here": "κλικ εδώ",
 	"Click here for filter guides.": "Κάντε κλικ εδώ για οδηγούς φίλτρων.",
 	"Click here for filter guides.": "Κάντε κλικ εδώ για οδηγούς φίλτρων.",
 	"Click here for help.": "Κάντε κλικ εδώ για βοήθεια.",
 	"Click here for help.": "Κάντε κλικ εδώ για βοήθεια.",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Contact Admin for WebUI Access": "Επικοινωνήστε με τον Διαχειριστή για Πρόσβαση στο WebUI",
 	"Contact Admin for WebUI Access": "Επικοινωνήστε με τον Διαχειριστή για Πρόσβαση στο WebUI",
 	"Content": "Περιεχόμενο",
 	"Content": "Περιεχόμενο",
-	"Content Extraction": "Εξαγωγή Περιεχομένου",
+	"Content Extraction Engine": "",
 	"Context Length": "Μήκος Πλαισίου",
 	"Context Length": "Μήκος Πλαισίου",
 	"Continue Response": "Συνέχεια Απάντησης",
 	"Continue Response": "Συνέχεια Απάντησης",
 	"Continue with {{provider}}": "Συνέχεια με {{provider}}",
 	"Continue with {{provider}}": "Συνέχεια με {{provider}}",
@@ -246,6 +248,7 @@
 	"Current Model": "Τρέχον Μοντέλο",
 	"Current Model": "Τρέχον Μοντέλο",
 	"Current Password": "Τρέχων Κωδικός",
 	"Current Password": "Τρέχων Κωδικός",
 	"Custom": "Προσαρμοσμένο",
 	"Custom": "Προσαρμοσμένο",
+	"Danger Zone": "",
 	"Dark": "Σκούρο",
 	"Dark": "Σκούρο",
 	"Database": "Βάση Δεδομένων",
 	"Database": "Βάση Δεδομένων",
 	"December": "Δεκέμβριος",
 	"December": "Δεκέμβριος",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "ElevenLabs",
 	"ElevenLabs": "ElevenLabs",
 	"Email": "Email",
 	"Email": "Email",
 	"Embark on adventures": "Ξεκινήστε περιπέτειες",
 	"Embark on adventures": "Ξεκινήστε περιπέτειες",
+	"Embedding": "",
 	"Embedding Batch Size": "Μέγεθος Παρτίδας Ενσωμάτωσης",
 	"Embedding Batch Size": "Μέγεθος Παρτίδας Ενσωμάτωσης",
 	"Embedding Model": "Μοντέλο Ενσωμάτωσης",
 	"Embedding Model": "Μοντέλο Ενσωμάτωσης",
 	"Embedding Model Engine": "Μηχανή Μοντέλου Ενσωμάτωσης",
 	"Embedding Model Engine": "Μηχανή Μοντέλου Ενσωμάτωσης",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Ενεργοποίηση Κοινοτικής Κοινής Χρήσης",
 	"Enable Community Sharing": "Ενεργοποίηση Κοινοτικής Κοινής Χρήσης",
-	"Enable Google Drive": "",
 	"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.": "Ενεργοποίηση Κλείδωσης Μνήμης (mlock) για την αποτροπή της ανταλλαγής δεδομένων του μοντέλου από τη μνήμη RAM. Αυτή η επιλογή κλειδώνει το σύνολο εργασίας των σελίδων του μοντέλου στη μνήμη RAM, διασφαλίζοντας ότι δεν θα ανταλλαχθούν στο δίσκο. Αυτό μπορεί να βοηθήσει στη διατήρηση της απόδοσης αποφεύγοντας σφάλματα σελίδων και διασφαλίζοντας γρήγορη πρόσβαση στα δεδομένα.",
 	"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.": "Ενεργοποίηση Κλείδωσης Μνήμης (mlock) για την αποτροπή της ανταλλαγής δεδομένων του μοντέλου από τη μνήμη RAM. Αυτή η επιλογή κλειδώνει το σύνολο εργασίας των σελίδων του μοντέλου στη μνήμη RAM, διασφαλίζοντας ότι δεν θα ανταλλαχθούν στο δίσκο. Αυτό μπορεί να βοηθήσει στη διατήρηση της απόδοσης αποφεύγοντας σφάλματα σελίδων και διασφαλίζοντας γρήγορη πρόσβαση στα δεδομένα.",
 	"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.": "Ενεργοποίηση Χαρτογράφησης Μνήμης (mmap) για φόρτωση δεδομένων μοντέλου. Αυτή η επιλογή επιτρέπει στο σύστημα να χρησιμοποιεί αποθήκευση δίσκου ως επέκταση της μνήμης RAM, αντιμετωπίζοντας αρχεία δίσκου σαν να ήταν στη μνήμη RAM. Αυτό μπορεί να βελτιώσει την απόδοση του μοντέλου επιτρέποντας γρηγορότερη πρόσβαση στα δεδομένα. Ωστόσο, μπορεί να μην λειτουργεί σωστά με όλα τα συστήματα και να καταναλώνει σημαντικό χώρο στο δίσκο.",
 	"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.": "Ενεργοποίηση Χαρτογράφησης Μνήμης (mmap) για φόρτωση δεδομένων μοντέλου. Αυτή η επιλογή επιτρέπει στο σύστημα να χρησιμοποιεί αποθήκευση δίσκου ως επέκταση της μνήμης RAM, αντιμετωπίζοντας αρχεία δίσκου σαν να ήταν στη μνήμη RAM. Αυτό μπορεί να βελτιώσει την απόδοση του μοντέλου επιτρέποντας γρηγορότερη πρόσβαση στα δεδομένα. Ωστόσο, μπορεί να μην λειτουργεί σωστά με όλα τα συστήματα και να καταναλώνει σημαντικό χώρο στο δίσκο.",
 	"Enable Message Rating": "Ενεργοποίηση Αξιολόγησης Μηνυμάτων",
 	"Enable Message Rating": "Ενεργοποίηση Αξιολόγησης Μηνυμάτων",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Ενεργοποίηση δειγματοληψίας Mirostat για έλεγχο της περιπλοκότητας. (Προεπιλογή: 0, 0 = Απενεργοποιημένο, 1 = Mirostat, 2 = Mirostat 2.0)",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Ενεργοποίηση δειγματοληψίας Mirostat για έλεγχο της περιπλοκότητας. (Προεπιλογή: 0, 0 = Απενεργοποιημένο, 1 = Mirostat, 2 = Mirostat 2.0)",
 	"Enable New Sign Ups": "Ενεργοποίηση Νέων Εγγραφών",
 	"Enable New Sign Ups": "Ενεργοποίηση Νέων Εγγραφών",
-	"Enable OneDrive": "",
-	"Enable Web Search": "Ενεργοποίηση Αναζήτησης στο Διαδίκτυο",
 	"Enabled": "Ενεργοποιημένο",
 	"Enabled": "Ενεργοποιημένο",
-	"Engine": "Μηχανή",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Βεβαιωθείτε ότι το αρχείο CSV σας περιλαμβάνει 4 στήλες με αυτή τη σειρά: Όνομα, Email, Κωδικός, Ρόλος.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Βεβαιωθείτε ότι το αρχείο CSV σας περιλαμβάνει 4 στήλες με αυτή τη σειρά: Όνομα, Email, Κωδικός, Ρόλος.",
 	"Enter {{role}} message here": "Εισάγετε το μήνυμα {{role}} εδώ",
 	"Enter {{role}} message here": "Εισάγετε το μήνυμα {{role}} εδώ",
 	"Enter a detail about yourself for your LLMs to recall": "Εισάγετε μια λεπτομέρεια για τον εαυτό σας ώστε τα LLMs να την ανακαλούν",
 	"Enter a detail about yourself for your LLMs to recall": "Εισάγετε μια λεπτομέρεια για τον εαυτό σας ώστε τα LLMs να την ανακαλούν",
@@ -572,6 +572,7 @@
 	"Input commands": "Εισαγωγή εντολών",
 	"Input commands": "Εισαγωγή εντολών",
 	"Install from Github URL": "Εγκατάσταση από URL Github",
 	"Install from Github URL": "Εγκατάσταση από URL Github",
 	"Instant Auto-Send After Voice Transcription": "Άμεση Αυτόματη Αποστολή μετά τη μεταγραφή φωνής",
 	"Instant Auto-Send After Voice Transcription": "Άμεση Αυτόματη Αποστολή μετά τη μεταγραφή φωνής",
+	"Integration": "",
 	"Interface": "Διεπαφή",
 	"Interface": "Διεπαφή",
 	"Invalid file format.": "Μη έγκυρη μορφή αρχείου.",
 	"Invalid file format.": "Μη έγκυρη μορφή αρχείου.",
 	"Invalid Tag": "Μη έγκυρη Ετικέτα",
 	"Invalid Tag": "Μη έγκυρη Ετικέτα",
@@ -619,6 +620,7 @@
 	"Listening...": "Ακούγεται...",
 	"Listening...": "Ακούγεται...",
 	"Llama.cpp": "",
 	"Llama.cpp": "",
 	"LLMs can make mistakes. Verify important information.": "Τα LLM μπορούν να κάνουν λάθη. Επαληθεύστε σημαντικές πληροφορίες.",
 	"LLMs can make mistakes. Verify important information.": "Τα LLM μπορούν να κάνουν λάθη. Επαληθεύστε σημαντικές πληροφορίες.",
+	"Loader": "",
 	"Loading Kokoro.js...": "",
 	"Loading Kokoro.js...": "",
 	"Local": "Τοπικό",
 	"Local": "Τοπικό",
 	"Local Models": "Τοπικά Μοντέλα",
 	"Local Models": "Τοπικά Μοντέλα",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "Δεν βρέθηκε περιεχόμενο HTML, CSS ή JavaScript.",
 	"No HTML, CSS, or JavaScript content found.": "Δεν βρέθηκε περιεχόμενο HTML, CSS ή JavaScript.",
 	"No inference engine with management support found": "",
 	"No inference engine with management support found": "",
 	"No knowledge found": "Δεν βρέθηκε γνώση",
 	"No knowledge found": "Δεν βρέθηκε γνώση",
+	"No memories to clear": "",
 	"No model IDs": "Δεν υπάρχουν IDs μοντέλων",
 	"No model IDs": "Δεν υπάρχουν IDs μοντέλων",
 	"No models found": "Δεν βρέθηκαν μοντέλα",
 	"No models found": "Δεν βρέθηκαν μοντέλα",
 	"No models selected": "Δεν έχουν επιλεγεί μοντέλα",
 	"No models selected": "Δεν έχουν επιλεγεί μοντέλα",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "Η προτροπή ενημερώθηκε με επιτυχία",
 	"Prompt updated successfully": "Η προτροπή ενημερώθηκε με επιτυχία",
 	"Prompts": "Προτροπές",
 	"Prompts": "Προτροπές",
 	"Prompts Access": "Πρόσβαση Προτροπών",
 	"Prompts Access": "Πρόσβαση Προτροπών",
-	"Proxy URL": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Τραβήξτε \"{{searchValue}}\" από το Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Τραβήξτε \"{{searchValue}}\" από το Ollama.com",
 	"Pull a model from Ollama.com": "Τραβήξτε ένα μοντέλο από το Ollama.com",
 	"Pull a model from Ollama.com": "Τραβήξτε ένα μοντέλο από το Ollama.com",
 	"Query Generation Prompt": "Προτροπή Δημιουργίας Ερωτήσεων",
 	"Query Generation Prompt": "Προτροπή Δημιουργίας Ερωτήσεων",
-	"Query Params": "Παράμετροι Ερωτήσεων",
 	"RAG Template": "Πρότυπο RAG",
 	"RAG Template": "Πρότυπο RAG",
 	"Rating": "Βαθμολογία",
 	"Rating": "Βαθμολογία",
 	"Re-rank models by topic similarity": "Επανατάξη μοντέλων κατά ομοιότητα θέματος",
 	"Re-rank models by topic similarity": "Επανατάξη μοντέλων κατά ομοιότητα θέματος",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Οι ειδοποιήσεις απάντησης δεν μπορούν να ενεργοποιηθούν καθώς οι άδειες του ιστότοπου έχουν αρνηθεί. Παρακαλώ επισκεφτείτε τις ρυθμίσεις του περιηγητή σας για να δώσετε την απαραίτητη πρόσβαση.",
 	"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 splitting": "Διαχωρισμός απάντησης",
 	"Result": "Αποτέλεσμα",
 	"Result": "Αποτέλεσμα",
+	"Retrieval": "",
 	"Retrieval Query Generation": "",
 	"Retrieval Query Generation": "",
 	"Rich Text Input for Chat": "Πλούσιο Εισαγωγή Κειμένου για Συνομιλία",
 	"Rich Text Input for Chat": "Πλούσιο Εισαγωγή Κειμένου για Συνομιλία",
 	"RK": "RK",
 	"RK": "RK",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Web": "Διαδίκτυο",
 	"Web": "Διαδίκτυο",
 	"Web API": "Web API",
 	"Web API": "Web API",
-	"Web Loader Settings": "Ρυθμίσεις Φόρτωσης Web",
 	"Web Search": "Αναζήτηση στο Διαδίκτυο",
 	"Web Search": "Αναζήτηση στο Διαδίκτυο",
 	"Web Search Engine": "Μηχανή Αναζήτησης στο Διαδίκτυο",
 	"Web Search Engine": "Μηχανή Αναζήτησης στο Διαδίκτυο",
 	"Web Search in Chat": "",
 	"Web Search in Chat": "",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "Η κατάσταση του λογαριασμού σας είναι αυτή τη στιγμή σε εκκρεμότητα ενεργοποίησης.",
 	"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.": "Η ολόκληρη η συνεισφορά σας θα πάει απευθείας στον προγραμματιστή του plugin· το Open WebUI δεν παίρνει κανένα ποσοστό. Ωστόσο, η επιλεγμένη πλατφόρμα χρηματοδότησης μπορεί να έχει τα δικά της τέλη.",
 	"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.": "Η ολόκληρη η συνεισφορά σας θα πάει απευθείας στον προγραμματιστή του plugin· το Open WebUI δεν παίρνει κανένα ποσοστό. Ωστόσο, η επιλεγμένη πλατφόρμα χρηματοδότησης μπορεί να έχει τα δικά της τέλη.",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
-	"Youtube Loader Settings": "Ρυθμίσεις Φόρτωσης Youtube"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/en-GB/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "",
 	"Archive All Chats": "",
 	"Archived Chats": "",
 	"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 this channel?": "",
 	"Are you sure you want to delete this channel?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "",
 	"Bocha Search API Key": "",
 	"Brave Search API Key": "",
 	"Brave Search API Key": "",
 	"By {{name}}": "",
 	"By {{name}}": "",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "",
 	"Bypass SSL verification for Websites": "",
 	"Calendar": "",
 	"Calendar": "",
 	"Call": "",
 	"Call": "",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "",
 	"Checking for updates...": "",
 	"Choose a model before saving...": "",
 	"Choose a model before saving...": "",
 	"Chunk Overlap": "",
 	"Chunk Overlap": "",
-	"Chunk Params": "",
 	"Chunk Size": "",
 	"Chunk Size": "",
 	"Ciphers": "",
 	"Ciphers": "",
 	"Citation": "",
 	"Citation": "",
 	"Clear memory": "",
 	"Clear memory": "",
+	"Clear Memory": "",
 	"click here": "",
 	"click here": "",
 	"Click here for filter guides.": "",
 	"Click here for filter guides.": "",
 	"Click here for help.": "",
 	"Click here for help.": "",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Contact Admin for WebUI Access": "",
 	"Contact Admin for WebUI Access": "",
 	"Content": "",
 	"Content": "",
-	"Content Extraction": "",
+	"Content Extraction Engine": "",
 	"Context Length": "",
 	"Context Length": "",
 	"Continue Response": "",
 	"Continue Response": "",
 	"Continue with {{provider}}": "",
 	"Continue with {{provider}}": "",
@@ -246,6 +248,7 @@
 	"Current Model": "",
 	"Current Model": "",
 	"Current Password": "",
 	"Current Password": "",
 	"Custom": "",
 	"Custom": "",
+	"Danger Zone": "",
 	"Dark": "",
 	"Dark": "",
 	"Database": "",
 	"Database": "",
 	"December": "",
 	"December": "",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "",
 	"ElevenLabs": "",
 	"Email": "",
 	"Email": "",
 	"Embark on adventures": "",
 	"Embark on adventures": "",
+	"Embedding": "",
 	"Embedding Batch Size": "",
 	"Embedding Batch Size": "",
 	"Embedding Model": "",
 	"Embedding Model": "",
 	"Embedding Model Engine": "",
 	"Embedding Model Engine": "",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "",
 	"Enable Community Sharing": "",
-	"Enable Google Drive": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "",
 	"Enable New Sign Ups": "",
-	"Enable OneDrive": "",
-	"Enable Web Search": "",
 	"Enabled": "",
 	"Enabled": "",
-	"Engine": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
 	"Enter {{role}} message here": "",
 	"Enter {{role}} message here": "",
 	"Enter a detail about yourself for your LLMs to recall": "",
 	"Enter a detail about yourself for your LLMs to recall": "",
@@ -572,6 +572,7 @@
 	"Input commands": "",
 	"Input commands": "",
 	"Install from Github URL": "",
 	"Install from Github URL": "",
 	"Instant Auto-Send After Voice Transcription": "",
 	"Instant Auto-Send After Voice Transcription": "",
+	"Integration": "",
 	"Interface": "",
 	"Interface": "",
 	"Invalid file format.": "",
 	"Invalid file format.": "",
 	"Invalid Tag": "",
 	"Invalid Tag": "",
@@ -619,6 +620,7 @@
 	"Listening...": "",
 	"Listening...": "",
 	"Llama.cpp": "",
 	"Llama.cpp": "",
 	"LLMs can make mistakes. Verify important information.": "",
 	"LLMs can make mistakes. Verify important information.": "",
+	"Loader": "",
 	"Loading Kokoro.js...": "",
 	"Loading Kokoro.js...": "",
 	"Local": "",
 	"Local": "",
 	"Local Models": "",
 	"Local Models": "",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No inference engine with management support found": "",
 	"No inference engine with management support found": "",
 	"No knowledge found": "",
 	"No knowledge found": "",
+	"No memories to clear": "",
 	"No model IDs": "",
 	"No model IDs": "",
 	"No models found": "",
 	"No models found": "",
 	"No models selected": "",
 	"No models selected": "",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "",
 	"Prompts": "",
 	"Prompts Access": "",
 	"Prompts Access": "",
-	"Proxy URL": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull a model from Ollama.com": "",
 	"Pull a model from Ollama.com": "",
 	"Query Generation Prompt": "",
 	"Query Generation Prompt": "",
-	"Query Params": "",
 	"RAG Template": "",
 	"RAG Template": "",
 	"Rating": "",
 	"Rating": "",
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"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 splitting": "",
 	"Result": "",
 	"Result": "",
+	"Retrieval": "",
 	"Retrieval Query Generation": "",
 	"Retrieval Query Generation": "",
 	"Rich Text Input for Chat": "",
 	"Rich Text Input for Chat": "",
 	"RK": "",
 	"RK": "",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Web": "",
 	"Web": "",
 	"Web API": "",
 	"Web API": "",
-	"Web Loader Settings": "",
 	"Web Search": "",
 	"Web Search": "",
 	"Web Search Engine": "",
 	"Web Search Engine": "",
 	"Web Search in Chat": "",
 	"Web Search in Chat": "",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "",
 	"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.": "",
 	"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.": "",
 	"Youtube": "",
 	"Youtube": "",
-	"Youtube Loader Settings": ""
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/en-US/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "",
 	"Archive All Chats": "",
 	"Archived Chats": "",
 	"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 this channel?": "",
 	"Are you sure you want to delete this channel?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "",
 	"Bocha Search API Key": "",
 	"Brave Search API Key": "",
 	"Brave Search API Key": "",
 	"By {{name}}": "",
 	"By {{name}}": "",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "",
 	"Bypass SSL verification for Websites": "",
 	"Calendar": "",
 	"Calendar": "",
 	"Call": "",
 	"Call": "",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "",
 	"Checking for updates...": "",
 	"Choose a model before saving...": "",
 	"Choose a model before saving...": "",
 	"Chunk Overlap": "",
 	"Chunk Overlap": "",
-	"Chunk Params": "",
 	"Chunk Size": "",
 	"Chunk Size": "",
 	"Ciphers": "",
 	"Ciphers": "",
 	"Citation": "",
 	"Citation": "",
 	"Clear memory": "",
 	"Clear memory": "",
+	"Clear Memory": "",
 	"click here": "",
 	"click here": "",
 	"Click here for filter guides.": "",
 	"Click here for filter guides.": "",
 	"Click here for help.": "",
 	"Click here for help.": "",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Contact Admin for WebUI Access": "",
 	"Contact Admin for WebUI Access": "",
 	"Content": "",
 	"Content": "",
-	"Content Extraction": "",
+	"Content Extraction Engine": "",
 	"Context Length": "",
 	"Context Length": "",
 	"Continue Response": "",
 	"Continue Response": "",
 	"Continue with {{provider}}": "",
 	"Continue with {{provider}}": "",
@@ -246,6 +248,7 @@
 	"Current Model": "",
 	"Current Model": "",
 	"Current Password": "",
 	"Current Password": "",
 	"Custom": "",
 	"Custom": "",
+	"Danger Zone": "",
 	"Dark": "",
 	"Dark": "",
 	"Database": "",
 	"Database": "",
 	"December": "",
 	"December": "",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "",
 	"ElevenLabs": "",
 	"Email": "",
 	"Email": "",
 	"Embark on adventures": "",
 	"Embark on adventures": "",
+	"Embedding": "",
 	"Embedding Batch Size": "",
 	"Embedding Batch Size": "",
 	"Embedding Model": "",
 	"Embedding Model": "",
 	"Embedding Model Engine": "",
 	"Embedding Model Engine": "",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "",
 	"Enable Community Sharing": "",
-	"Enable Google Drive": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "",
 	"Enable New Sign Ups": "",
-	"Enable OneDrive": "",
-	"Enable Web Search": "",
 	"Enabled": "",
 	"Enabled": "",
-	"Engine": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
 	"Enter {{role}} message here": "",
 	"Enter {{role}} message here": "",
 	"Enter a detail about yourself for your LLMs to recall": "",
 	"Enter a detail about yourself for your LLMs to recall": "",
@@ -572,6 +572,7 @@
 	"Input commands": "",
 	"Input commands": "",
 	"Install from Github URL": "",
 	"Install from Github URL": "",
 	"Instant Auto-Send After Voice Transcription": "",
 	"Instant Auto-Send After Voice Transcription": "",
+	"Integration": "",
 	"Interface": "",
 	"Interface": "",
 	"Invalid file format.": "",
 	"Invalid file format.": "",
 	"Invalid Tag": "",
 	"Invalid Tag": "",
@@ -619,6 +620,7 @@
 	"Listening...": "",
 	"Listening...": "",
 	"Llama.cpp": "",
 	"Llama.cpp": "",
 	"LLMs can make mistakes. Verify important information.": "",
 	"LLMs can make mistakes. Verify important information.": "",
+	"Loader": "",
 	"Loading Kokoro.js...": "",
 	"Loading Kokoro.js...": "",
 	"Local": "",
 	"Local": "",
 	"Local Models": "",
 	"Local Models": "",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No inference engine with management support found": "",
 	"No inference engine with management support found": "",
 	"No knowledge found": "",
 	"No knowledge found": "",
+	"No memories to clear": "",
 	"No model IDs": "",
 	"No model IDs": "",
 	"No models found": "",
 	"No models found": "",
 	"No models selected": "",
 	"No models selected": "",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "",
 	"Prompts": "",
 	"Prompts Access": "",
 	"Prompts Access": "",
-	"Proxy URL": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull a model from Ollama.com": "",
 	"Pull a model from Ollama.com": "",
 	"Query Generation Prompt": "",
 	"Query Generation Prompt": "",
-	"Query Params": "",
 	"RAG Template": "",
 	"RAG Template": "",
 	"Rating": "",
 	"Rating": "",
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"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 splitting": "",
 	"Result": "",
 	"Result": "",
+	"Retrieval": "",
 	"Retrieval Query Generation": "",
 	"Retrieval Query Generation": "",
 	"Rich Text Input for Chat": "",
 	"Rich Text Input for Chat": "",
 	"RK": "",
 	"RK": "",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Web": "",
 	"Web": "",
 	"Web API": "",
 	"Web API": "",
-	"Web Loader Settings": "",
 	"Web Search": "",
 	"Web Search": "",
 	"Web Search Engine": "",
 	"Web Search Engine": "",
 	"Web Search in Chat": "",
 	"Web Search in Chat": "",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "",
 	"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.": "",
 	"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.": "",
 	"Youtube": "",
 	"Youtube": "",
-	"Youtube Loader Settings": ""
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/es-ES/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "Archivar todos los chats",
 	"Archive All Chats": "Archivar todos los chats",
 	"Archived Chats": "Chats archivados",
 	"Archived Chats": "Chats archivados",
 	"archived-chat-export": "Exportación de chats archivados",
 	"archived-chat-export": "Exportación de chats archivados",
+	"Are you sure you want to clear all memories? This action cannot be undone.": "",
 	"Are you sure you want to delete this channel?": "¿Seguro de que quieres eliminar este canal?",
 	"Are you sure you want to delete this channel?": "¿Seguro de que quieres eliminar este canal?",
 	"Are you sure you want to delete this message?": "¿Seguro de que quieres eliminar este mensaje? ",
 	"Are you sure you want to delete this message?": "¿Seguro de que quieres eliminar este mensaje? ",
 	"Are you sure you want to unarchive all archived chats?": "¿Estás seguro de que quieres desarchivar todos los chats archivados?",
 	"Are you sure you want to unarchive all archived chats?": "¿Estás seguro de que quieres desarchivar todos los chats archivados?",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "",
 	"Bocha Search API Key": "",
 	"Brave Search API Key": "Clave de API de Brave Search",
 	"Brave Search API Key": "Clave de API de Brave Search",
 	"By {{name}}": "Por {{name}}",
 	"By {{name}}": "Por {{name}}",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "Desactivar la verificación SSL para sitios web",
 	"Bypass SSL verification for Websites": "Desactivar la verificación SSL para sitios web",
 	"Calendar": "",
 	"Calendar": "",
 	"Call": "Llamada",
 	"Call": "Llamada",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "Verificando actualizaciones...",
 	"Checking for updates...": "Verificando actualizaciones...",
 	"Choose a model before saving...": "Escoge un modelo antes de guardar los cambios...",
 	"Choose a model before saving...": "Escoge un modelo antes de guardar los cambios...",
 	"Chunk Overlap": "Superposición de fragmentos",
 	"Chunk Overlap": "Superposición de fragmentos",
-	"Chunk Params": "Parámetros de fragmentos",
 	"Chunk Size": "Tamaño de fragmentos",
 	"Chunk Size": "Tamaño de fragmentos",
 	"Ciphers": "Cifrado",
 	"Ciphers": "Cifrado",
 	"Citation": "Cita",
 	"Citation": "Cita",
 	"Clear memory": "Liberar memoria",
 	"Clear memory": "Liberar memoria",
+	"Clear Memory": "",
 	"click here": "Clic aquí",
 	"click here": "Clic aquí",
 	"Click here for filter guides.": "Clic aquí para guías de filtros",
 	"Click here for filter guides.": "Clic aquí para guías de filtros",
 	"Click here for help.": "Presiona aquí para obtener ayuda.",
 	"Click here for help.": "Presiona aquí para obtener ayuda.",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": " Restringe el esfuerzo en la razonamiento para los modelos de razonamiento. Solo aplicable a los modelos de razonamiento de proveedores específicos que admiten el esfuerzo de razonamiento. (Por defecto: medio)",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": " Restringe el esfuerzo en la razonamiento para los modelos de razonamiento. Solo aplicable a los modelos de razonamiento de proveedores específicos que admiten el esfuerzo de razonamiento. (Por defecto: medio)",
 	"Contact Admin for WebUI Access": "Contacta el administrador para obtener acceso al WebUI",
 	"Contact Admin for WebUI Access": "Contacta el administrador para obtener acceso al WebUI",
 	"Content": "Contenido",
 	"Content": "Contenido",
-	"Content Extraction": "Extracción de contenido",
+	"Content Extraction Engine": "",
 	"Context Length": "Longitud del contexto",
 	"Context Length": "Longitud del contexto",
 	"Continue Response": "Continuar Respuesta",
 	"Continue Response": "Continuar Respuesta",
 	"Continue with {{provider}}": "Continuar con {{provider}}",
 	"Continue with {{provider}}": "Continuar con {{provider}}",
@@ -246,6 +248,7 @@
 	"Current Model": "Modelo Actual",
 	"Current Model": "Modelo Actual",
 	"Current Password": "Contraseña Actual",
 	"Current Password": "Contraseña Actual",
 	"Custom": "Personalizado",
 	"Custom": "Personalizado",
+	"Danger Zone": "",
 	"Dark": "Oscuro",
 	"Dark": "Oscuro",
 	"Database": "Base de datos",
 	"Database": "Base de datos",
 	"December": "Diciembre",
 	"December": "Diciembre",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "ElevenLabs",
 	"ElevenLabs": "ElevenLabs",
 	"Email": "Email",
 	"Email": "Email",
 	"Embark on adventures": "Emprende aventuras",
 	"Embark on adventures": "Emprende aventuras",
+	"Embedding": "",
 	"Embedding Batch Size": "Tamaño de Embedding",
 	"Embedding Batch Size": "Tamaño de Embedding",
 	"Embedding Model": "Modelo de Embedding",
 	"Embedding Model": "Modelo de Embedding",
 	"Embedding Model Engine": "Motor de Modelo de Embedding",
 	"Embedding Model Engine": "Motor de Modelo de Embedding",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "Habilitar generación de autocompletado para mensajes de chat",
 	"Enable autocomplete generation for chat messages": "Habilitar generación de autocompletado para mensajes de chat",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Habilitar el uso compartido de la comunidad",
 	"Enable Community Sharing": "Habilitar el uso compartido de la comunidad",
-	"Enable Google Drive": "Habilitar Google Drive",
 	"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.": "Habilitar bloqueo de memoria (mlock) para evitar que los datos del modelo se intercambien fuera de la RAM. Esta opción bloquea el conjunto de páginas de trabajo del modelo en la RAM, asegurando que no se intercambiarán fuera del disco. Esto puede ayudar a mantener el rendimiento evitando fallos de página y asegurando un acceso rápido a los datos.",
 	"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.": "Habilitar bloqueo de memoria (mlock) para evitar que los datos del modelo se intercambien fuera de la RAM. Esta opción bloquea el conjunto de páginas de trabajo del modelo en la RAM, asegurando que no se intercambiarán fuera del disco. Esto puede ayudar a mantener el rendimiento evitando fallos de página y asegurando un acceso rápido a los datos.",
 	"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.": "Habilitar asignación de memoria (mmap) para cargar datos del modelo. Esta opción permite al sistema usar el almacenamiento en disco como una extensión de la RAM al tratar los archivos en disco como si estuvieran en la RAM. Esto puede mejorar el rendimiento del modelo permitiendo un acceso más rápido a los datos. Sin embargo, puede no funcionar correctamente con todos los sistemas y puede consumir una cantidad significativa de espacio en disco.",
 	"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.": "Habilitar asignación de memoria (mmap) para cargar datos del modelo. Esta opción permite al sistema usar el almacenamiento en disco como una extensión de la RAM al tratar los archivos en disco como si estuvieran en la RAM. Esto puede mejorar el rendimiento del modelo permitiendo un acceso más rápido a los datos. Sin embargo, puede no funcionar correctamente con todos los sistemas y puede consumir una cantidad significativa de espacio en disco.",
 	"Enable Message Rating": "Habilitar la calificación de los mensajes",
 	"Enable Message Rating": "Habilitar la calificación de los mensajes",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Habilitar muestreo Mirostat para controlar la perplejidad. (Predeterminado: 0, 0 = Deshabilitado, 1 = Mirostat, 2 = Mirostat 2.0)",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Habilitar muestreo Mirostat para controlar la perplejidad. (Predeterminado: 0, 0 = Deshabilitado, 1 = Mirostat, 2 = Mirostat 2.0)",
 	"Enable New Sign Ups": "Habilitar Nuevos Registros",
 	"Enable New Sign Ups": "Habilitar Nuevos Registros",
-	"Enable OneDrive": "",
-	"Enable Web Search": "Habilitar la búsqueda web",
 	"Enabled": "Activado",
 	"Enabled": "Activado",
-	"Engine": "Motor",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Asegúrese de que su archivo CSV incluya 4 columnas en este orden: Nombre, Correo Electrónico, Contraseña, Rol.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Asegúrese de que su archivo CSV incluya 4 columnas en este orden: Nombre, Correo Electrónico, Contraseña, Rol.",
 	"Enter {{role}} message here": "Ingrese el mensaje {{role}} aquí",
 	"Enter {{role}} message here": "Ingrese el mensaje {{role}} aquí",
 	"Enter a detail about yourself for your LLMs to recall": "Ingrese un detalle sobre usted para que sus LLMs recuerden",
 	"Enter a detail about yourself for your LLMs to recall": "Ingrese un detalle sobre usted para que sus LLMs recuerden",
@@ -572,6 +572,7 @@
 	"Input commands": "Ingresar comandos",
 	"Input commands": "Ingresar comandos",
 	"Install from Github URL": "Instalar desde la URL de Github",
 	"Install from Github URL": "Instalar desde la URL de Github",
 	"Instant Auto-Send After Voice Transcription": "Auto-Enviar Después de la Transcripción de Voz",
 	"Instant Auto-Send After Voice Transcription": "Auto-Enviar Después de la Transcripción de Voz",
+	"Integration": "",
 	"Interface": "Interfaz",
 	"Interface": "Interfaz",
 	"Invalid file format.": "Formato de archivo inválido.",
 	"Invalid file format.": "Formato de archivo inválido.",
 	"Invalid Tag": "Etiqueta Inválida",
 	"Invalid Tag": "Etiqueta Inválida",
@@ -619,6 +620,7 @@
 	"Listening...": "Escuchando...",
 	"Listening...": "Escuchando...",
 	"Llama.cpp": "Llama.cpp",
 	"Llama.cpp": "Llama.cpp",
 	"LLMs can make mistakes. Verify important information.": "Los LLM pueden cometer errores. Verifica la información importante.",
 	"LLMs can make mistakes. Verify important information.": "Los LLM pueden cometer errores. Verifica la información importante.",
+	"Loader": "",
 	"Loading Kokoro.js...": "",
 	"Loading Kokoro.js...": "",
 	"Local": "Local",
 	"Local": "Local",
 	"Local Models": "Modelos locales",
 	"Local Models": "Modelos locales",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "No se encontró contenido HTML, CSS, o JavaScript.",
 	"No HTML, CSS, or JavaScript content found.": "No se encontró contenido HTML, CSS, o JavaScript.",
 	"No inference engine with management support found": "No se encontró un motor de inferencia con soporte de gestión",
 	"No inference engine with management support found": "No se encontró un motor de inferencia con soporte de gestión",
 	"No knowledge found": "No se encontró ningún conocimiento",
 	"No knowledge found": "No se encontró ningún conocimiento",
+	"No memories to clear": "",
 	"No model IDs": "No hay IDs de modelos",
 	"No model IDs": "No hay IDs de modelos",
 	"No models found": "No se encontraron modelos",
 	"No models found": "No se encontraron modelos",
 	"No models selected": "No se seleccionaron modelos",
 	"No models selected": "No se seleccionaron modelos",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "Prompt actualizado exitosamente",
 	"Prompt updated successfully": "Prompt actualizado exitosamente",
 	"Prompts": "Prompts",
 	"Prompts": "Prompts",
 	"Prompts Access": "Acceso a Prompts",
 	"Prompts Access": "Acceso a Prompts",
-	"Proxy URL": "URL del proxy",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Extraer \"{{searchValue}}\" de Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Extraer \"{{searchValue}}\" de Ollama.com",
 	"Pull a model from Ollama.com": "Obtener un modelo de Ollama.com",
 	"Pull a model from Ollama.com": "Obtener un modelo de Ollama.com",
 	"Query Generation Prompt": "Prompt de generación de consulta",
 	"Query Generation Prompt": "Prompt de generación de consulta",
-	"Query Params": "Parámetros de consulta",
 	"RAG Template": "Plantilla de RAG",
 	"RAG Template": "Plantilla de RAG",
 	"Rating": "Calificación",
 	"Rating": "Calificación",
 	"Re-rank models by topic similarity": "Re-clasificar modelos por similitud de tema",
 	"Re-rank models by topic similarity": "Re-clasificar modelos por similitud de tema",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Las notificaciones de respuesta no pueden activarse debido a que los permisos del sitio web han sido denegados. Por favor, visite las configuraciones de su navegador para otorgar el acceso necesario.",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Las notificaciones de respuesta no pueden activarse debido a que los permisos del sitio web han sido denegados. Por favor, visite las configuraciones de su navegador para otorgar el acceso necesario.",
 	"Response splitting": "División de respuestas",
 	"Response splitting": "División de respuestas",
 	"Result": "Resultado",
 	"Result": "Resultado",
+	"Retrieval": "",
 	"Retrieval Query Generation": "Generación de consulta de recuperación",
 	"Retrieval Query Generation": "Generación de consulta de recuperación",
 	"Rich Text Input for Chat": "Entrada de texto enriquecido para chat",
 	"Rich Text Input for Chat": "Entrada de texto enriquecido para chat",
 	"RK": "RK",
 	"RK": "RK",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Web": "Web",
 	"Web": "Web",
 	"Web API": "API Web",
 	"Web API": "API Web",
-	"Web Loader Settings": "Configuración del cargador web",
 	"Web Search": "Búsqueda en la Web",
 	"Web Search": "Búsqueda en la Web",
 	"Web Search Engine": "Motor de búsqueda web",
 	"Web Search Engine": "Motor de búsqueda web",
 	"Web Search in Chat": "Búsqueda web en chat",
 	"Web Search in Chat": "Búsqueda web en chat",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "El estado de su cuenta actualmente se encuentra pendiente de activación.",
 	"Your account status is currently pending activation.": "El estado de su cuenta actualmente se encuentra pendiente de activación.",
 	"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.": "Su contribución completa irá directamente a el desarrollador del plugin; Open WebUI no toma ningun porcentaje. Sin embargo, la plataforma de financiación elegida podría tener sus propias tarifas.",
 	"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.": "Su contribución completa irá directamente a el desarrollador del plugin; Open WebUI no toma ningun porcentaje. Sin embargo, la plataforma de financiación elegida podría tener sus propias tarifas.",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
-	"Youtube Loader Settings": "Configuración del cargador de Youtube"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/eu-ES/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "Artxibatu Txat Guztiak",
 	"Archive All Chats": "Artxibatu Txat Guztiak",
 	"Archived Chats": "Artxibatutako Txatak",
 	"Archived Chats": "Artxibatutako Txatak",
 	"archived-chat-export": "artxibatutako-txat-esportazioa",
 	"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 this channel?": "",
 	"Are you sure you want to delete this channel?": "",
 	"Are you sure you want to delete this message?": "",
 	"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?",
 	"Are you sure you want to unarchive all archived chats?": "Ziur zaude artxibatutako txat guztiak desartxibatu nahi dituzula?",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "",
 	"Bocha Search API Key": "",
 	"Brave Search API Key": "Brave Bilaketa API Gakoa",
 	"Brave Search API Key": "Brave Bilaketa API Gakoa",
 	"By {{name}}": "{{name}}-k",
 	"By {{name}}": "{{name}}-k",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "Saihestu SSL egiaztapena Webguneentzat",
 	"Bypass SSL verification for Websites": "Saihestu SSL egiaztapena Webguneentzat",
 	"Calendar": "",
 	"Calendar": "",
 	"Call": "Deia",
 	"Call": "Deia",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "Eguneraketak bilatzen...",
 	"Checking for updates...": "Eguneraketak bilatzen...",
 	"Choose a model before saving...": "Aukeratu eredu bat gorde aurretik...",
 	"Choose a model before saving...": "Aukeratu eredu bat gorde aurretik...",
 	"Chunk Overlap": "Zatien Gainjartzea",
 	"Chunk Overlap": "Zatien Gainjartzea",
-	"Chunk Params": "Zatien Parametroak",
 	"Chunk Size": "Zati Tamaina",
 	"Chunk Size": "Zati Tamaina",
 	"Ciphers": "Zifratuak",
 	"Ciphers": "Zifratuak",
 	"Citation": "Aipamena",
 	"Citation": "Aipamena",
 	"Clear memory": "Garbitu memoria",
 	"Clear memory": "Garbitu memoria",
+	"Clear Memory": "",
 	"click here": "klikatu hemen",
 	"click here": "klikatu hemen",
 	"Click here for filter guides.": "Klikatu hemen iragazkien gidak ikusteko.",
 	"Click here for filter guides.": "Klikatu hemen iragazkien gidak ikusteko.",
 	"Click here for help.": "Klikatu hemen laguntzarako.",
 	"Click here for help.": "Klikatu hemen laguntzarako.",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Contact Admin for WebUI Access": "Jarri harremanetan Administratzailearekin WebUI Sarbiderako",
 	"Contact Admin for WebUI Access": "Jarri harremanetan Administratzailearekin WebUI Sarbiderako",
 	"Content": "Edukia",
 	"Content": "Edukia",
-	"Content Extraction": "Eduki Erauzketa",
+	"Content Extraction Engine": "",
 	"Context Length": "Testuinguru Luzera",
 	"Context Length": "Testuinguru Luzera",
 	"Continue Response": "Jarraitu Erantzuna",
 	"Continue Response": "Jarraitu Erantzuna",
 	"Continue with {{provider}}": "Jarraitu {{provider}}-rekin",
 	"Continue with {{provider}}": "Jarraitu {{provider}}-rekin",
@@ -246,6 +248,7 @@
 	"Current Model": "Uneko Eredua",
 	"Current Model": "Uneko Eredua",
 	"Current Password": "Uneko Pasahitza",
 	"Current Password": "Uneko Pasahitza",
 	"Custom": "Pertsonalizatua",
 	"Custom": "Pertsonalizatua",
+	"Danger Zone": "",
 	"Dark": "Iluna",
 	"Dark": "Iluna",
 	"Database": "Datu-basea",
 	"Database": "Datu-basea",
 	"December": "Abendua",
 	"December": "Abendua",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "ElevenLabs",
 	"ElevenLabs": "ElevenLabs",
 	"Email": "Posta elektronikoa",
 	"Email": "Posta elektronikoa",
 	"Embark on adventures": "Hasi abenturak",
 	"Embark on adventures": "Hasi abenturak",
+	"Embedding": "",
 	"Embedding Batch Size": "Embedding Batch Tamaina",
 	"Embedding Batch Size": "Embedding Batch Tamaina",
 	"Embedding Model": "Embedding Eredua",
 	"Embedding Model": "Embedding Eredua",
 	"Embedding Model Engine": "Embedding Eredu Motorea",
 	"Embedding Model Engine": "Embedding Eredu Motorea",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Gaitu Komunitatearen Partekatzea",
 	"Enable Community Sharing": "Gaitu Komunitatearen Partekatzea",
-	"Enable Google Drive": "",
 	"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.": "Gaitu Memoria Blokeatzea (mlock) ereduaren datuak RAM memoriatik kanpo ez trukatzeko. Aukera honek ereduaren lan-orri multzoa RAMean blokatzen du, diskora ez direla trukatuko ziurtatuz. Honek errendimendua mantentzen lagun dezake, orri-hutsegiteak saihestuz eta datuen sarbide azkarra bermatuz.",
 	"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.": "Gaitu Memoria Blokeatzea (mlock) ereduaren datuak RAM memoriatik kanpo ez trukatzeko. Aukera honek ereduaren lan-orri multzoa RAMean blokatzen du, diskora ez direla trukatuko ziurtatuz. Honek errendimendua mantentzen lagun dezake, orri-hutsegiteak saihestuz eta datuen sarbide azkarra bermatuz.",
 	"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.": "Gaitu Memoria Mapaketa (mmap) ereduaren datuak kargatzeko. Aukera honek sistemari disko-biltegiratzea RAM memoriaren luzapen gisa erabiltzea ahalbidetzen dio, diskoko fitxategiak RAMean baleude bezala tratatuz. Honek ereduaren errendimendua hobe dezake, datuen sarbide azkarragoa ahalbidetuz. Hala ere, baliteke sistema guztietan behar bezala ez funtzionatzea eta disko-espazio handia kontsumitu dezake.",
 	"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.": "Gaitu Memoria Mapaketa (mmap) ereduaren datuak kargatzeko. Aukera honek sistemari disko-biltegiratzea RAM memoriaren luzapen gisa erabiltzea ahalbidetzen dio, diskoko fitxategiak RAMean baleude bezala tratatuz. Honek ereduaren errendimendua hobe dezake, datuen sarbide azkarragoa ahalbidetuz. Hala ere, baliteke sistema guztietan behar bezala ez funtzionatzea eta disko-espazio handia kontsumitu dezake.",
 	"Enable Message Rating": "Gaitu Mezuen Balorazioa",
 	"Enable Message Rating": "Gaitu Mezuen Balorazioa",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Gaitu Mirostat laginketa nahasmena kontrolatzeko. (Lehenetsia: 0, 0 = Desgaituta, 1 = Mirostat, 2 = Mirostat 2.0)",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Gaitu Mirostat laginketa nahasmena kontrolatzeko. (Lehenetsia: 0, 0 = Desgaituta, 1 = Mirostat, 2 = Mirostat 2.0)",
 	"Enable New Sign Ups": "Gaitu Izena Emate Berriak",
 	"Enable New Sign Ups": "Gaitu Izena Emate Berriak",
-	"Enable OneDrive": "",
-	"Enable Web Search": "Gaitu Web Bilaketa",
 	"Enabled": "Gaituta",
 	"Enabled": "Gaituta",
-	"Engine": "Motorea",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Ziurtatu zure CSV fitxategiak 4 zutabe dituela ordena honetan: Izena, Posta elektronikoa, Pasahitza, Rola.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Ziurtatu zure CSV fitxategiak 4 zutabe dituela ordena honetan: Izena, Posta elektronikoa, Pasahitza, Rola.",
 	"Enter {{role}} message here": "Sartu {{role}} mezua hemen",
 	"Enter {{role}} message here": "Sartu {{role}} mezua hemen",
 	"Enter a detail about yourself for your LLMs to recall": "Sartu zure buruari buruzko xehetasun bat LLMek gogoratzeko",
 	"Enter a detail about yourself for your LLMs to recall": "Sartu zure buruari buruzko xehetasun bat LLMek gogoratzeko",
@@ -572,6 +572,7 @@
 	"Input commands": "Sartu komandoak",
 	"Input commands": "Sartu komandoak",
 	"Install from Github URL": "Instalatu Github URLtik",
 	"Install from Github URL": "Instalatu Github URLtik",
 	"Instant Auto-Send After Voice Transcription": "Bidalketa Automatiko Berehalakoa Ahots Transkripzioaren Ondoren",
 	"Instant Auto-Send After Voice Transcription": "Bidalketa Automatiko Berehalakoa Ahots Transkripzioaren Ondoren",
+	"Integration": "",
 	"Interface": "Interfazea",
 	"Interface": "Interfazea",
 	"Invalid file format.": "Fitxategi formatu baliogabea.",
 	"Invalid file format.": "Fitxategi formatu baliogabea.",
 	"Invalid Tag": "Etiketa Baliogabea",
 	"Invalid Tag": "Etiketa Baliogabea",
@@ -619,6 +620,7 @@
 	"Listening...": "Entzuten...",
 	"Listening...": "Entzuten...",
 	"Llama.cpp": "",
 	"Llama.cpp": "",
 	"LLMs can make mistakes. Verify important information.": "LLMek akatsak egin ditzakete. Egiaztatu informazio garrantzitsua.",
 	"LLMs can make mistakes. Verify important information.": "LLMek akatsak egin ditzakete. Egiaztatu informazio garrantzitsua.",
+	"Loader": "",
 	"Loading Kokoro.js...": "",
 	"Loading Kokoro.js...": "",
 	"Local": "Lokala",
 	"Local": "Lokala",
 	"Local Models": "Modelo lokalak",
 	"Local Models": "Modelo lokalak",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "Ez da HTML, CSS, edo JavaScript edukirik aurkitu.",
 	"No HTML, CSS, or JavaScript content found.": "Ez da HTML, CSS, edo JavaScript edukirik aurkitu.",
 	"No inference engine with management support found": "",
 	"No inference engine with management support found": "",
 	"No knowledge found": "Ez da ezagutzarik aurkitu",
 	"No knowledge found": "Ez da ezagutzarik aurkitu",
+	"No memories to clear": "",
 	"No model IDs": "Ez dago modelo IDrik",
 	"No model IDs": "Ez dago modelo IDrik",
 	"No models found": "Ez da modelorik aurkitu",
 	"No models found": "Ez da modelorik aurkitu",
 	"No models selected": "Ez da modelorik hautatu",
 	"No models selected": "Ez da modelorik hautatu",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "Prompt-a ongi eguneratu da",
 	"Prompt updated successfully": "Prompt-a ongi eguneratu da",
 	"Prompts": "Prompt-ak",
 	"Prompts": "Prompt-ak",
 	"Prompts Access": "Prompt sarbidea",
 	"Prompts Access": "Prompt sarbidea",
-	"Proxy URL": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Ekarri \"{{searchValue}}\" Ollama.com-etik",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Ekarri \"{{searchValue}}\" Ollama.com-etik",
 	"Pull a model from Ollama.com": "Ekarri modelo bat Ollama.com-etik",
 	"Pull a model from Ollama.com": "Ekarri modelo bat Ollama.com-etik",
 	"Query Generation Prompt": "Kontsulta sortzeko prompt-a",
 	"Query Generation Prompt": "Kontsulta sortzeko prompt-a",
-	"Query Params": "Kontsulta parametroak",
 	"RAG Template": "RAG txantiloia",
 	"RAG Template": "RAG txantiloia",
 	"Rating": "Balorazioa",
 	"Rating": "Balorazioa",
 	"Re-rank models by topic similarity": "Berrantolatu modeloak gai antzekotasunaren arabera",
 	"Re-rank models by topic similarity": "Berrantolatu modeloak gai antzekotasunaren arabera",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Erantzunen jakinarazpenak ezin dira aktibatu webgunearen baimenak ukatu direlako. Mesedez, bisitatu zure nabigatzailearen ezarpenak beharrezko sarbidea emateko.",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Erantzunen jakinarazpenak ezin dira aktibatu webgunearen baimenak ukatu direlako. Mesedez, bisitatu zure nabigatzailearen ezarpenak beharrezko sarbidea emateko.",
 	"Response splitting": "Erantzun banaketa",
 	"Response splitting": "Erantzun banaketa",
 	"Result": "Emaitza",
 	"Result": "Emaitza",
+	"Retrieval": "",
 	"Retrieval Query Generation": "",
 	"Retrieval Query Generation": "",
 	"Rich Text Input for Chat": "Testu aberastuko sarrera txaterako",
 	"Rich Text Input for Chat": "Testu aberastuko sarrera txaterako",
 	"RK": "RK",
 	"RK": "RK",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Web": "Weba",
 	"Web": "Weba",
 	"Web API": "Web APIa",
 	"Web API": "Web APIa",
-	"Web Loader Settings": "Web kargatzailearen ezarpenak",
 	"Web Search": "Web bilaketa",
 	"Web Search": "Web bilaketa",
 	"Web Search Engine": "Web bilaketa motorra",
 	"Web Search Engine": "Web bilaketa motorra",
 	"Web Search in Chat": "",
 	"Web Search in Chat": "",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "Zure kontuaren egoera aktibazio zain dago.",
 	"Your account status is currently pending activation.": "Zure kontuaren egoera aktibazio zain dago.",
 	"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.": "Zure ekarpen osoa zuzenean plugin garatzaileari joango zaio; Open WebUI-k ez du ehunekorik hartzen. Hala ere, aukeratutako finantzaketa plataformak bere komisioak izan ditzake.",
 	"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.": "Zure ekarpen osoa zuzenean plugin garatzaileari joango zaio; Open WebUI-k ez du ehunekorik hartzen. Hala ere, aukeratutako finantzaketa plataformak bere komisioak izan ditzake.",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
-	"Youtube Loader Settings": "Youtube kargatzailearen ezarpenak"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/fa-IR/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "بایگانی همه گفتگوها",
 	"Archive All Chats": "بایگانی همه گفتگوها",
 	"Archived Chats": "گفتگوهای بایگانی\u200cشده",
 	"Archived Chats": "گفتگوهای بایگانی\u200cشده",
 	"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 this channel?": "",
 	"Are you sure you want to delete this channel?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "",
 	"Bocha Search API Key": "",
 	"Brave Search API Key": "کلید API جستجوی شجاع",
 	"Brave Search API Key": "کلید API جستجوی شجاع",
 	"By {{name}}": "",
 	"By {{name}}": "",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "عبور از تأیید SSL برای وب سایت ها",
 	"Bypass SSL verification for Websites": "عبور از تأیید SSL برای وب سایت ها",
 	"Calendar": "",
 	"Calendar": "",
 	"Call": "",
 	"Call": "",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "در حال بررسی برای به\u200cروزرسانی..",
 	"Checking for updates...": "در حال بررسی برای به\u200cروزرسانی..",
 	"Choose a model before saving...": "قبل از ذخیره یک مدل را انتخاب کنید...",
 	"Choose a model before saving...": "قبل از ذخیره یک مدل را انتخاب کنید...",
 	"Chunk Overlap": "همپوشانی تکه",
 	"Chunk Overlap": "همپوشانی تکه",
-	"Chunk Params": "پارامترهای تکه",
 	"Chunk Size": "اندازه تکه",
 	"Chunk Size": "اندازه تکه",
 	"Ciphers": "",
 	"Ciphers": "",
 	"Citation": "استناد",
 	"Citation": "استناد",
 	"Clear memory": "پاک کردن حافظه",
 	"Clear memory": "پاک کردن حافظه",
+	"Clear Memory": "",
 	"click here": "",
 	"click here": "",
 	"Click here for filter guides.": "",
 	"Click here for filter guides.": "",
 	"Click here for help.": "برای کمک اینجا را کلیک کنید.",
 	"Click here for help.": "برای کمک اینجا را کلیک کنید.",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Contact Admin for WebUI Access": "برای دسترسی به WebUI با مدیر تماس بگیرید",
 	"Contact Admin for WebUI Access": "برای دسترسی به WebUI با مدیر تماس بگیرید",
 	"Content": "محتوا",
 	"Content": "محتوا",
-	"Content Extraction": "استخراج محتوا",
+	"Content Extraction Engine": "",
 	"Context Length": "طول زمینه",
 	"Context Length": "طول زمینه",
 	"Continue Response": "ادامه پاسخ",
 	"Continue Response": "ادامه پاسخ",
 	"Continue with {{provider}}": "با {{provider}} ادامه دهید",
 	"Continue with {{provider}}": "با {{provider}} ادامه دهید",
@@ -246,6 +248,7 @@
 	"Current Model": "مدل فعلی",
 	"Current Model": "مدل فعلی",
 	"Current Password": "رمز عبور فعلی",
 	"Current Password": "رمز عبور فعلی",
 	"Custom": "دلخواه",
 	"Custom": "دلخواه",
+	"Danger Zone": "",
 	"Dark": "تیره",
 	"Dark": "تیره",
 	"Database": "پایگاه داده",
 	"Database": "پایگاه داده",
 	"December": "دسامبر",
 	"December": "دسامبر",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "",
 	"ElevenLabs": "",
 	"Email": "ایمیل",
 	"Email": "ایمیل",
 	"Embark on adventures": "",
 	"Embark on adventures": "",
+	"Embedding": "",
 	"Embedding Batch Size": "",
 	"Embedding Batch Size": "",
 	"Embedding Model": "مدل پیدائش",
 	"Embedding Model": "مدل پیدائش",
 	"Embedding Model Engine": "محرک مدل پیدائش",
 	"Embedding Model Engine": "محرک مدل پیدائش",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "فعالسازی اشتراک انجمن",
 	"Enable Community Sharing": "فعالسازی اشتراک انجمن",
-	"Enable Google Drive": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "فعال کردن ثبت نام\u200cهای جدید",
 	"Enable New Sign Ups": "فعال کردن ثبت نام\u200cهای جدید",
-	"Enable OneDrive": "",
-	"Enable Web Search": "فعالسازی جستجوی وب",
 	"Enabled": "",
 	"Enabled": "",
-	"Engine": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "اطمینان حاصل کنید که فایل CSV شما شامل چهار ستون در این ترتیب است: نام، ایمیل، رمز عبور، نقش.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "اطمینان حاصل کنید که فایل CSV شما شامل چهار ستون در این ترتیب است: نام، ایمیل، رمز عبور، نقش.",
 	"Enter {{role}} message here": "پیام {{role}} را اینجا وارد کنید",
 	"Enter {{role}} message here": "پیام {{role}} را اینجا وارد کنید",
 	"Enter a detail about yourself for your LLMs to recall": "برای ذخیره سازی اطلاعات خود، یک توضیح کوتاه درباره خود را وارد کنید",
 	"Enter a detail about yourself for your LLMs to recall": "برای ذخیره سازی اطلاعات خود، یک توضیح کوتاه درباره خود را وارد کنید",
@@ -572,6 +572,7 @@
 	"Input commands": "ورودی دستورات",
 	"Input commands": "ورودی دستورات",
 	"Install from Github URL": "نصب از ادرس Github",
 	"Install from Github URL": "نصب از ادرس Github",
 	"Instant Auto-Send After Voice Transcription": "",
 	"Instant Auto-Send After Voice Transcription": "",
+	"Integration": "",
 	"Interface": "رابط",
 	"Interface": "رابط",
 	"Invalid file format.": "",
 	"Invalid file format.": "",
 	"Invalid Tag": "تگ نامعتبر",
 	"Invalid Tag": "تگ نامعتبر",
@@ -619,6 +620,7 @@
 	"Listening...": "",
 	"Listening...": "",
 	"Llama.cpp": "",
 	"Llama.cpp": "",
 	"LLMs can make mistakes. Verify important information.": "مدل\u200cهای زبانی بزرگ می\u200cتوانند اشتباه کنند. اطلاعات مهم را راستی\u200cآزمایی کنید.",
 	"LLMs can make mistakes. Verify important information.": "مدل\u200cهای زبانی بزرگ می\u200cتوانند اشتباه کنند. اطلاعات مهم را راستی\u200cآزمایی کنید.",
+	"Loader": "",
 	"Loading Kokoro.js...": "",
 	"Loading Kokoro.js...": "",
 	"Local": "",
 	"Local": "",
 	"Local Models": "",
 	"Local Models": "",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No inference engine with management support found": "",
 	"No inference engine with management support found": "",
 	"No knowledge found": "",
 	"No knowledge found": "",
+	"No memories to clear": "",
 	"No model IDs": "",
 	"No model IDs": "",
 	"No models found": "",
 	"No models found": "",
 	"No models selected": "",
 	"No models selected": "",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "پرامپت\u200cها",
 	"Prompts": "پرامپت\u200cها",
 	"Prompts Access": "",
 	"Prompts Access": "",
-	"Proxy URL": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "بازگرداندن \"{{searchValue}}\" از Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "بازگرداندن \"{{searchValue}}\" از Ollama.com",
 	"Pull a model from Ollama.com": "دریافت یک مدل از Ollama.com",
 	"Pull a model from Ollama.com": "دریافت یک مدل از Ollama.com",
 	"Query Generation Prompt": "",
 	"Query Generation Prompt": "",
-	"Query Params": "پارامترهای پرس و جو",
 	"RAG Template": "RAG الگوی",
 	"RAG Template": "RAG الگوی",
 	"Rating": "",
 	"Rating": "",
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"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 splitting": "",
 	"Result": "نتیجه",
 	"Result": "نتیجه",
+	"Retrieval": "",
 	"Retrieval Query Generation": "",
 	"Retrieval Query Generation": "",
 	"Rich Text Input for Chat": "",
 	"Rich Text Input for Chat": "",
 	"RK": "",
 	"RK": "",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Web": "وب",
 	"Web": "وب",
 	"Web API": "",
 	"Web API": "",
-	"Web Loader Settings": "تنظیمات لودر وب",
 	"Web Search": "جستجوی وب",
 	"Web Search": "جستجوی وب",
 	"Web Search Engine": "موتور جستجوی وب",
 	"Web Search Engine": "موتور جستجوی وب",
 	"Web Search in Chat": "",
 	"Web Search in Chat": "",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "",
 	"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.": "",
 	"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.": "",
 	"Youtube": "یوتیوب",
 	"Youtube": "یوتیوب",
-	"Youtube Loader Settings": "تنظیمات لودر یوتیوب"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/fi-FI/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "Arkistoi kaikki keskustelut",
 	"Archive All Chats": "Arkistoi kaikki keskustelut",
 	"Archived Chats": "Arkistoidut keskustelut",
 	"Archived Chats": "Arkistoidut keskustelut",
 	"archived-chat-export": "arkistoitu-keskustelu-vienti",
 	"archived-chat-export": "arkistoitu-keskustelu-vienti",
+	"Are you sure you want to clear all memories? This action cannot be undone.": "",
 	"Are you sure you want to delete this channel?": "Haluatko varmasti poistaa tämän kanavan?",
 	"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 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?",
 	"Are you sure you want to unarchive all archived chats?": "Haluatko varmasti purkaa kaikkien arkistoitujen keskustelujen arkistoinnin?",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "Bocha Search API -avain",
 	"Bocha Search API Key": "Bocha Search API -avain",
 	"Brave Search API Key": "Brave Search API -avain",
 	"Brave Search API Key": "Brave Search API -avain",
 	"By {{name}}": "Tekijä {{name}}",
 	"By {{name}}": "Tekijä {{name}}",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "Ohita SSL-varmennus verkkosivustoille",
 	"Bypass SSL verification for Websites": "Ohita SSL-varmennus verkkosivustoille",
 	"Calendar": "Kalenteri",
 	"Calendar": "Kalenteri",
 	"Call": "Puhelu",
 	"Call": "Puhelu",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "Tarkistetaan päivityksiä...",
 	"Checking for updates...": "Tarkistetaan päivityksiä...",
 	"Choose a model before saving...": "Valitse malli ennen tallentamista...",
 	"Choose a model before saving...": "Valitse malli ennen tallentamista...",
 	"Chunk Overlap": "Päällekkäisten osien määrä",
 	"Chunk Overlap": "Päällekkäisten osien määrä",
-	"Chunk Params": "Osien parametrit",
 	"Chunk Size": "Osien koko",
 	"Chunk Size": "Osien koko",
 	"Ciphers": "Salausalgoritmi",
 	"Ciphers": "Salausalgoritmi",
 	"Citation": "Lähdeviite",
 	"Citation": "Lähdeviite",
 	"Clear memory": "Tyhjennä muisti",
 	"Clear memory": "Tyhjennä muisti",
+	"Clear Memory": "",
 	"click here": "klikkaa tästä",
 	"click here": "klikkaa tästä",
 	"Click here for filter guides.": "Katso suodatinohjeita klikkaamalla tästä.",
 	"Click here for filter guides.": "Katso suodatinohjeita klikkaamalla tästä.",
 	"Click here for help.": "Klikkaa tästä saadaksesi apua.",
 	"Click here for help.": "Klikkaa tästä saadaksesi apua.",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Contact Admin for WebUI Access": "Ota yhteyttä ylläpitäjään WebUI-käyttöä varten",
 	"Contact Admin for WebUI Access": "Ota yhteyttä ylläpitäjään WebUI-käyttöä varten",
 	"Content": "Sisältö",
 	"Content": "Sisältö",
-	"Content Extraction": "Sisällön erottelu",
+	"Content Extraction Engine": "",
 	"Context Length": "Kontekstin pituus",
 	"Context Length": "Kontekstin pituus",
 	"Continue Response": "Jatka vastausta",
 	"Continue Response": "Jatka vastausta",
 	"Continue with {{provider}}": "Jatka palvelulla {{provider}}",
 	"Continue with {{provider}}": "Jatka palvelulla {{provider}}",
@@ -246,6 +248,7 @@
 	"Current Model": "Nykyinen malli",
 	"Current Model": "Nykyinen malli",
 	"Current Password": "Nykyinen salasana",
 	"Current Password": "Nykyinen salasana",
 	"Custom": "Mukautettu",
 	"Custom": "Mukautettu",
+	"Danger Zone": "",
 	"Dark": "Tumma",
 	"Dark": "Tumma",
 	"Database": "Tietokanta",
 	"Database": "Tietokanta",
 	"December": "joulukuu",
 	"December": "joulukuu",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "ElevenLabs",
 	"ElevenLabs": "ElevenLabs",
 	"Email": "Sähköposti",
 	"Email": "Sähköposti",
 	"Embark on adventures": "Lähde seikkailuille",
 	"Embark on adventures": "Lähde seikkailuille",
+	"Embedding": "",
 	"Embedding Batch Size": "Upotuksen eräkoko",
 	"Embedding Batch Size": "Upotuksen eräkoko",
 	"Embedding Model": "Upotusmalli",
 	"Embedding Model": "Upotusmalli",
 	"Embedding Model Engine": "Upotusmallin moottori",
 	"Embedding Model Engine": "Upotusmallin moottori",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "Ota automaattinen täydennys käyttöön keskusteluviesteissä",
 	"Enable autocomplete generation for chat messages": "Ota automaattinen täydennys käyttöön keskusteluviesteissä",
 	"Enable Code Interpreter": "Ota ohjelmatulkki käyttöön",
 	"Enable Code Interpreter": "Ota ohjelmatulkki käyttöön",
 	"Enable Community Sharing": "Ota yhteisön jakaminen käyttöön",
 	"Enable Community Sharing": "Ota yhteisön jakaminen käyttöön",
-	"Enable Google Drive": "Salli Google Drive",
 	"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.": "Ota Memory Locking (mlock) käyttöön estääksesi mallidatan vaihtamisen pois RAM-muistista. Tämä lukitsee mallin työsivut RAM-muistiin, varmistaen että niitä ei vaihdeta levylle. Tämä voi parantaa suorituskykyä välttämällä sivuvikoja ja varmistamalla nopean tietojen käytön.",
 	"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.": "Ota Memory Locking (mlock) käyttöön estääksesi mallidatan vaihtamisen pois RAM-muistista. Tämä lukitsee mallin työsivut RAM-muistiin, varmistaen että niitä ei vaihdeta levylle. Tämä voi parantaa suorituskykyä välttämällä sivuvikoja ja varmistamalla nopean tietojen käytön.",
 	"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.": "Ota Memory Mapping (mmap) käyttöön ladataksesi mallidataa. Tämä vaihtoehto sallii järjestelmän käyttää levytilaa RAM-laajennuksena käsittelemällä levytiedostoja kuin ne olisivat RAM-muistissa. Tämä voi parantaa mallin suorituskykyä sallimalla nopeamman tietojen käytön. Kuitenkin se ei välttämättä toimi oikein kaikissa järjestelmissä ja voi kuluttaa huomattavasti levytilaa.",
 	"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.": "Ota Memory Mapping (mmap) käyttöön ladataksesi mallidataa. Tämä vaihtoehto sallii järjestelmän käyttää levytilaa RAM-laajennuksena käsittelemällä levytiedostoja kuin ne olisivat RAM-muistissa. Tämä voi parantaa mallin suorituskykyä sallimalla nopeamman tietojen käytön. Kuitenkin se ei välttämättä toimi oikein kaikissa järjestelmissä ja voi kuluttaa huomattavasti levytilaa.",
 	"Enable Message Rating": "Ota viestiarviointi käyttöön",
 	"Enable Message Rating": "Ota viestiarviointi käyttöön",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Ota Mirostat-näytteenotto käyttöön hallinnan monimerkityksellisyydelle. (Oletus: 0, 0 = Ei käytössä, 1 = Mirostat, 2 = Mirostat 2.0)",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Ota Mirostat-näytteenotto käyttöön hallinnan monimerkityksellisyydelle. (Oletus: 0, 0 = Ei käytössä, 1 = Mirostat, 2 = Mirostat 2.0)",
 	"Enable New Sign Ups": "Salli uudet rekisteröitymiset",
 	"Enable New Sign Ups": "Salli uudet rekisteröitymiset",
-	"Enable OneDrive": "",
-	"Enable Web Search": "Ota verkkohaku käyttöön",
 	"Enabled": "Käytössä",
 	"Enabled": "Käytössä",
-	"Engine": "Moottori",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Varmista, että CSV-tiedostossasi on 4 saraketta tässä järjestyksessä: Nimi, Sähköposti, Salasana, Rooli.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Varmista, että CSV-tiedostossasi on 4 saraketta tässä järjestyksessä: Nimi, Sähköposti, Salasana, Rooli.",
 	"Enter {{role}} message here": "Kirjoita {{role}}-viesti tähän",
 	"Enter {{role}} message here": "Kirjoita {{role}}-viesti tähän",
 	"Enter a detail about yourself for your LLMs to recall": "Kirjoita yksityiskohta itsestäsi, jonka LLM-ohjelmat voivat muistaa",
 	"Enter a detail about yourself for your LLMs to recall": "Kirjoita yksityiskohta itsestäsi, jonka LLM-ohjelmat voivat muistaa",
@@ -572,6 +572,7 @@
 	"Input commands": "Syötekäskyt",
 	"Input commands": "Syötekäskyt",
 	"Install from Github URL": "Asenna Github-URL:stä",
 	"Install from Github URL": "Asenna Github-URL:stä",
 	"Instant Auto-Send After Voice Transcription": "Heti automaattinen lähetys äänitunnistuksen jälkeen",
 	"Instant Auto-Send After Voice Transcription": "Heti automaattinen lähetys äänitunnistuksen jälkeen",
+	"Integration": "",
 	"Interface": "Käyttöliittymä",
 	"Interface": "Käyttöliittymä",
 	"Invalid file format.": "Virheellinen tiedostomuoto.",
 	"Invalid file format.": "Virheellinen tiedostomuoto.",
 	"Invalid Tag": "Virheellinen tagi",
 	"Invalid Tag": "Virheellinen tagi",
@@ -619,6 +620,7 @@
 	"Listening...": "Kuuntelee...",
 	"Listening...": "Kuuntelee...",
 	"Llama.cpp": "Llama.cpp",
 	"Llama.cpp": "Llama.cpp",
 	"LLMs can make mistakes. Verify important information.": "Kielimallit voivat tehdä virheitä. Tarkista tärkeät tiedot.",
 	"LLMs can make mistakes. Verify important information.": "Kielimallit voivat tehdä virheitä. Tarkista tärkeät tiedot.",
+	"Loader": "",
 	"Loading Kokoro.js...": "Ladataan Kokoro.js...",
 	"Loading Kokoro.js...": "Ladataan Kokoro.js...",
 	"Local": "Paikallinen",
 	"Local": "Paikallinen",
 	"Local Models": "Paikalliset mallit",
 	"Local Models": "Paikalliset mallit",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "HTML-, CSS- tai JavaScript-sisältöä ei löytynyt.",
 	"No HTML, CSS, or JavaScript content found.": "HTML-, CSS- tai JavaScript-sisältöä ei löytynyt.",
 	"No inference engine with management support found": "",
 	"No inference engine with management support found": "",
 	"No knowledge found": "Tietoa ei löytynyt",
 	"No knowledge found": "Tietoa ei löytynyt",
+	"No memories to clear": "",
 	"No model IDs": "Ei mallitunnuksia",
 	"No model IDs": "Ei mallitunnuksia",
 	"No models found": "Malleja ei löytynyt",
 	"No models found": "Malleja ei löytynyt",
 	"No models selected": "Malleja ei ole valittu",
 	"No models selected": "Malleja ei ole valittu",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "Kehote päivitetty onnistuneesti",
 	"Prompt updated successfully": "Kehote päivitetty onnistuneesti",
 	"Prompts": "Kehotteet",
 	"Prompts": "Kehotteet",
 	"Prompts Access": "Kehoitteiden käyttöoikeudet",
 	"Prompts Access": "Kehoitteiden käyttöoikeudet",
-	"Proxy URL": "Välityspalvelimen verkko-osoite",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Lataa \"{{searchValue}}\" Ollama.comista",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Lataa \"{{searchValue}}\" Ollama.comista",
 	"Pull a model from Ollama.com": "Lataa malli Ollama.comista",
 	"Pull a model from Ollama.com": "Lataa malli Ollama.comista",
 	"Query Generation Prompt": "Kyselytulosten luontikehote",
 	"Query Generation Prompt": "Kyselytulosten luontikehote",
-	"Query Params": "Kyselyparametrit",
 	"RAG Template": "RAG-malline",
 	"RAG Template": "RAG-malline",
 	"Rating": "Arviointi",
 	"Rating": "Arviointi",
 	"Re-rank models by topic similarity": "Uudelleenjärjestä mallit aiheyhteyden mukaan",
 	"Re-rank models by topic similarity": "Uudelleenjärjestä mallit aiheyhteyden mukaan",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Vastausilmoituksia ei voida ottaa käyttöön, koska verkkosivuston käyttöoikeudet on evätty. Myönnä tarvittavat käyttöoikeudet selaimesi asetuksista.",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Vastausilmoituksia ei voida ottaa käyttöön, koska verkkosivuston käyttöoikeudet on evätty. Myönnä tarvittavat käyttöoikeudet selaimesi asetuksista.",
 	"Response splitting": "Vastauksen jakaminen",
 	"Response splitting": "Vastauksen jakaminen",
 	"Result": "Tulos",
 	"Result": "Tulos",
+	"Retrieval": "",
 	"Retrieval Query Generation": "Hakukyselyn luominen",
 	"Retrieval Query Generation": "Hakukyselyn luominen",
 	"Rich Text Input for Chat": "Rikasteksti-syöte chattiin",
 	"Rich Text Input for Chat": "Rikasteksti-syöte chattiin",
 	"RK": "RK",
 	"RK": "RK",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Varoitus: Jupyter käyttö voi mahdollistaa mielivaltaiseen koodin suorittamiseen, mikä voi aiheuttaa tietoturvariskejä - käytä äärimmäisen varoen.",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Varoitus: Jupyter käyttö voi mahdollistaa mielivaltaiseen koodin suorittamiseen, mikä voi aiheuttaa tietoturvariskejä - käytä äärimmäisen varoen.",
 	"Web": "Web",
 	"Web": "Web",
 	"Web API": "Web-API",
 	"Web API": "Web-API",
-	"Web Loader Settings": "Web Loader -asetukset",
 	"Web Search": "Verkkohaku",
 	"Web Search": "Verkkohaku",
 	"Web Search Engine": "Hakukoneet",
 	"Web Search Engine": "Hakukoneet",
 	"Web Search in Chat": "Verkkohaku keskustelussa",
 	"Web Search in Chat": "Verkkohaku keskustelussa",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "Tilisi tila on tällä hetkellä odottaa aktivointia.",
 	"Your account status is currently pending activation.": "Tilisi tila on tällä hetkellä odottaa aktivointia.",
 	"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.": "Koko panoksesi menee suoraan lisäosan kehittäjälle; Open WebUI ei pidätä prosenttiosuutta. Valittu rahoitusalusta voi kuitenkin periä omia maksujaan.",
 	"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.": "Koko panoksesi menee suoraan lisäosan kehittäjälle; Open WebUI ei pidätä prosenttiosuutta. Valittu rahoitusalusta voi kuitenkin periä omia maksujaan.",
 	"Youtube": "YouTube",
 	"Youtube": "YouTube",
-	"Youtube Loader Settings": "YouTube Loader -asetukset"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/fr-CA/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "Archiver toutes les conversations",
 	"Archive All Chats": "Archiver toutes les conversations",
 	"Archived Chats": "Conversations archivées",
 	"Archived Chats": "Conversations archivées",
 	"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 this channel?": "",
 	"Are you sure you want to delete this channel?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "",
 	"Bocha Search API Key": "",
 	"Brave Search API Key": "Clé API Brave Search",
 	"Brave Search API Key": "Clé API Brave Search",
 	"By {{name}}": "",
 	"By {{name}}": "",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "Bypasser la vérification SSL pour les sites web",
 	"Bypass SSL verification for Websites": "Bypasser la vérification SSL pour les sites web",
 	"Calendar": "",
 	"Calendar": "",
 	"Call": "Appeler",
 	"Call": "Appeler",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "Recherche de mises à jour...",
 	"Checking for updates...": "Recherche de mises à jour...",
 	"Choose a model before saving...": "Choisissez un modèle avant de sauvegarder...",
 	"Choose a model before saving...": "Choisissez un modèle avant de sauvegarder...",
 	"Chunk Overlap": "Chevauchement de blocs",
 	"Chunk Overlap": "Chevauchement de blocs",
-	"Chunk Params": "Paramètres d'encombrement",
 	"Chunk Size": "Taille de bloc",
 	"Chunk Size": "Taille de bloc",
 	"Ciphers": "",
 	"Ciphers": "",
 	"Citation": "Citation",
 	"Citation": "Citation",
 	"Clear memory": "Libérer la mémoire",
 	"Clear memory": "Libérer la mémoire",
+	"Clear Memory": "",
 	"click here": "",
 	"click here": "",
 	"Click here for filter guides.": "",
 	"Click here for filter guides.": "",
 	"Click here for help.": "Cliquez ici pour obtenir de l'aide.",
 	"Click here for help.": "Cliquez ici pour obtenir de l'aide.",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Contact Admin for WebUI Access": "Contacter l'administrateur pour l'accès à l'interface Web",
 	"Contact Admin for WebUI Access": "Contacter l'administrateur pour l'accès à l'interface Web",
 	"Content": "Contenu",
 	"Content": "Contenu",
-	"Content Extraction": "",
+	"Content Extraction Engine": "",
 	"Context Length": "Longueur du contexte",
 	"Context Length": "Longueur du contexte",
 	"Continue Response": "Continuer la réponse",
 	"Continue Response": "Continuer la réponse",
 	"Continue with {{provider}}": "Continuer avec {{provider}}",
 	"Continue with {{provider}}": "Continuer avec {{provider}}",
@@ -246,6 +248,7 @@
 	"Current Model": "Modèle actuel amélioré",
 	"Current Model": "Modèle actuel amélioré",
 	"Current Password": "Mot de passe actuel",
 	"Current Password": "Mot de passe actuel",
 	"Custom": "Sur mesure",
 	"Custom": "Sur mesure",
+	"Danger Zone": "",
 	"Dark": "Obscur",
 	"Dark": "Obscur",
 	"Database": "Base de données",
 	"Database": "Base de données",
 	"December": "Décembre",
 	"December": "Décembre",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "",
 	"ElevenLabs": "",
 	"Email": "E-mail",
 	"Email": "E-mail",
 	"Embark on adventures": "",
 	"Embark on adventures": "",
+	"Embedding": "",
 	"Embedding Batch Size": "Taille du lot d'encodage",
 	"Embedding Batch Size": "Taille du lot d'encodage",
 	"Embedding Model": "Modèle d'embedding",
 	"Embedding Model": "Modèle d'embedding",
 	"Embedding Model Engine": "Moteur de modèle d'encodage",
 	"Embedding Model Engine": "Moteur de modèle d'encodage",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Activer le partage communautaire",
 	"Enable Community Sharing": "Activer le partage communautaire",
-	"Enable Google Drive": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Activer les nouvelles inscriptions",
 	"Enable New Sign Ups": "Activer les nouvelles inscriptions",
-	"Enable OneDrive": "",
-	"Enable Web Search": "Activer la recherche sur le Web",
 	"Enabled": "",
 	"Enabled": "",
-	"Engine": "Moteur",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Vérifiez que votre fichier CSV comprenne les 4 colonnes dans cet ordre : Name, Email, Password, Role.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Vérifiez que votre fichier CSV comprenne les 4 colonnes dans cet ordre : Name, Email, Password, Role.",
 	"Enter {{role}} message here": "Entrez le message {{role}} ici",
 	"Enter {{role}} message here": "Entrez le message {{role}} ici",
 	"Enter a detail about yourself for your LLMs to recall": "Saisissez un détail sur vous-même que vos LLMs pourront se rappeler",
 	"Enter a detail about yourself for your LLMs to recall": "Saisissez un détail sur vous-même que vos LLMs pourront se rappeler",
@@ -572,6 +572,7 @@
 	"Input commands": "Entrez les commandes",
 	"Input commands": "Entrez les commandes",
 	"Install from Github URL": "Installer depuis l'URL GitHub",
 	"Install from Github URL": "Installer depuis l'URL GitHub",
 	"Instant Auto-Send After Voice Transcription": "Envoi automatique instantané après transcription vocale",
 	"Instant Auto-Send After Voice Transcription": "Envoi automatique instantané après transcription vocale",
+	"Integration": "",
 	"Interface": "Interface utilisateur",
 	"Interface": "Interface utilisateur",
 	"Invalid file format.": "",
 	"Invalid file format.": "",
 	"Invalid Tag": "Étiquette non valide",
 	"Invalid Tag": "Étiquette non valide",
@@ -619,6 +620,7 @@
 	"Listening...": "En train d'écouter...",
 	"Listening...": "En train d'écouter...",
 	"Llama.cpp": "",
 	"Llama.cpp": "",
 	"LLMs can make mistakes. Verify important information.": "Les LLM peuvent faire des erreurs. Vérifiez les informations importantes.",
 	"LLMs can make mistakes. Verify important information.": "Les LLM peuvent faire des erreurs. Vérifiez les informations importantes.",
+	"Loader": "",
 	"Loading Kokoro.js...": "",
 	"Loading Kokoro.js...": "",
 	"Local": "",
 	"Local": "",
 	"Local Models": "Modèles locaux",
 	"Local Models": "Modèles locaux",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No inference engine with management support found": "",
 	"No inference engine with management support found": "",
 	"No knowledge found": "",
 	"No knowledge found": "",
+	"No memories to clear": "",
 	"No model IDs": "",
 	"No model IDs": "",
 	"No models found": "",
 	"No models found": "",
 	"No models selected": "",
 	"No models selected": "",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "Prompts",
 	"Prompts": "Prompts",
 	"Prompts Access": "",
 	"Prompts Access": "",
-	"Proxy URL": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Récupérer « {{searchValue}} » depuis Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Récupérer « {{searchValue}} » depuis Ollama.com",
 	"Pull a model from Ollama.com": "Télécharger un modèle depuis Ollama.com",
 	"Pull a model from Ollama.com": "Télécharger un modèle depuis Ollama.com",
 	"Query Generation Prompt": "",
 	"Query Generation Prompt": "",
-	"Query Params": "Paramètres de requête",
 	"RAG Template": "Modèle RAG",
 	"RAG Template": "Modèle RAG",
 	"Rating": "",
 	"Rating": "",
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Les notifications de réponse ne peuvent pas être activées car les autorisations du site web ont été refusées. Veuillez visiter les paramètres de votre navigateur pour accorder l'accès nécessaire.",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Les notifications de réponse ne peuvent pas être activées car les autorisations du site web ont été refusées. Veuillez visiter les paramètres de votre navigateur pour accorder l'accès nécessaire.",
 	"Response splitting": "Fractionnement de la réponse",
 	"Response splitting": "Fractionnement de la réponse",
 	"Result": "",
 	"Result": "",
+	"Retrieval": "",
 	"Retrieval Query Generation": "",
 	"Retrieval Query Generation": "",
 	"Rich Text Input for Chat": "",
 	"Rich Text Input for Chat": "",
 	"RK": "",
 	"RK": "",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Web": "Web",
 	"Web": "Web",
 	"Web API": "API Web",
 	"Web API": "API Web",
-	"Web Loader Settings": "Paramètres du chargeur web",
 	"Web Search": "Recherche Web",
 	"Web Search": "Recherche Web",
 	"Web Search Engine": "Moteur de recherche Web",
 	"Web Search Engine": "Moteur de recherche Web",
 	"Web Search in Chat": "",
 	"Web Search in Chat": "",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "Votre statut de compte est actuellement en attente d'activation.",
 	"Your account status is currently pending activation.": "Votre statut de compte est actuellement en attente d'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.": "",
 	"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.": "",
 	"Youtube": "YouTube",
 	"Youtube": "YouTube",
-	"Youtube Loader Settings": "Paramètres de l'outil de téléchargement YouTube"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/fr-FR/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "Archiver toutes les conversations",
 	"Archive All Chats": "Archiver toutes les conversations",
 	"Archived Chats": "Conversations archivées",
 	"Archived Chats": "Conversations archivées",
 	"archived-chat-export": "exportation de conversation archivée",
 	"archived-chat-export": "exportation de conversation archivée",
+	"Are you sure you want to clear all memories? This action cannot be undone.": "",
 	"Are you sure you want to delete this channel?": "Êtes-vous sûr de vouloir supprimer ce canal ?",
 	"Are you sure you want to delete this 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 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?",
 	"Are you sure you want to unarchive all archived chats?": "Êtes-vous sûr de vouloir désarchiver toutes les conversations archivées?",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "",
 	"Bocha Search API Key": "",
 	"Brave Search API Key": "Clé API Brave Search",
 	"Brave Search API Key": "Clé API Brave Search",
 	"By {{name}}": "Par {{name}}",
 	"By {{name}}": "Par {{name}}",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "Bypasser la vérification SSL pour les sites web",
 	"Bypass SSL verification for Websites": "Bypasser la vérification SSL pour les sites web",
 	"Calendar": "",
 	"Calendar": "",
 	"Call": "Appeler",
 	"Call": "Appeler",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "Recherche de mises à jour...",
 	"Checking for updates...": "Recherche de mises à jour...",
 	"Choose a model before saving...": "Choisissez un modèle avant de sauvegarder...",
 	"Choose a model before saving...": "Choisissez un modèle avant de sauvegarder...",
 	"Chunk Overlap": "Chevauchement des chunks",
 	"Chunk Overlap": "Chevauchement des chunks",
-	"Chunk Params": "Paramètres des chunks",
 	"Chunk Size": "Taille des chunks",
 	"Chunk Size": "Taille des chunks",
 	"Ciphers": "Chiffres",
 	"Ciphers": "Chiffres",
 	"Citation": "Citation",
 	"Citation": "Citation",
 	"Clear memory": "Effacer la mémoire",
 	"Clear memory": "Effacer la mémoire",
+	"Clear Memory": "",
 	"click here": "cliquez ici",
 	"click here": "cliquez ici",
 	"Click here for filter guides.": "Cliquez ici pour les guides de filtrage.",
 	"Click here for filter guides.": "Cliquez ici pour les guides de filtrage.",
 	"Click here for help.": "Cliquez ici pour obtenir de l'aide.",
 	"Click here for help.": "Cliquez ici pour obtenir de l'aide.",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "Contraint l'effort de raisonnement pour les modèles de raisonnement. Applicable uniquement aux modèles de raisonnement de fournisseurs spécifiques qui prennent en charge l'effort de raisonnement. (Par défaut : medium)",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "Contraint l'effort de raisonnement pour les modèles de raisonnement. Applicable uniquement aux modèles de raisonnement de fournisseurs spécifiques qui prennent en charge l'effort de raisonnement. (Par défaut : medium)",
 	"Contact Admin for WebUI Access": "Contacter l'administrateur pour obtenir l'accès à WebUI",
 	"Contact Admin for WebUI Access": "Contacter l'administrateur pour obtenir l'accès à WebUI",
 	"Content": "Contenu",
 	"Content": "Contenu",
-	"Content Extraction": "Extraction du contenu",
+	"Content Extraction Engine": "",
 	"Context Length": "Longueur du contexte",
 	"Context Length": "Longueur du contexte",
 	"Continue Response": "Continuer la réponse",
 	"Continue Response": "Continuer la réponse",
 	"Continue with {{provider}}": "Continuer avec {{provider}}",
 	"Continue with {{provider}}": "Continuer avec {{provider}}",
@@ -246,6 +248,7 @@
 	"Current Model": "Modèle actuel",
 	"Current Model": "Modèle actuel",
 	"Current Password": "Mot de passe actuel",
 	"Current Password": "Mot de passe actuel",
 	"Custom": "Sur mesure",
 	"Custom": "Sur mesure",
+	"Danger Zone": "",
 	"Dark": "Sombre",
 	"Dark": "Sombre",
 	"Database": "Base de données",
 	"Database": "Base de données",
 	"December": "Décembre",
 	"December": "Décembre",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "ElevenLabs",
 	"ElevenLabs": "ElevenLabs",
 	"Email": "E-mail",
 	"Email": "E-mail",
 	"Embark on adventures": "Embarquez pour des aventures",
 	"Embark on adventures": "Embarquez pour des aventures",
+	"Embedding": "",
 	"Embedding Batch Size": "Taille du lot d'embedding",
 	"Embedding Batch Size": "Taille du lot d'embedding",
 	"Embedding Model": "Modèle d'embedding",
 	"Embedding Model": "Modèle d'embedding",
 	"Embedding Model Engine": "Moteur de modèle d'embedding",
 	"Embedding Model Engine": "Moteur de modèle d'embedding",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "Activer la génération des suggestions pour les messages",
 	"Enable autocomplete generation for chat messages": "Activer la génération des suggestions pour les messages",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Activer le partage communautaire",
 	"Enable Community Sharing": "Activer le partage communautaire",
-	"Enable Google Drive": "Activer Google Drive",
 	"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.": "Activer le verrouillage de la mémoire (mlock) pour empêcher les données du modèle d'être échangées de la RAM. Cette option verrouille l'ensemble de pages de travail du modèle en RAM, garantissant qu'elles ne seront pas échangées vers le disque. Cela peut aider à maintenir les performances en évitant les défauts de page et en assurant un accès rapide aux données.",
 	"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.": "Activer le verrouillage de la mémoire (mlock) pour empêcher les données du modèle d'être échangées de la RAM. Cette option verrouille l'ensemble de pages de travail du modèle en RAM, garantissant qu'elles ne seront pas échangées vers le disque. Cela peut aider à maintenir les performances en évitant les défauts de page et en assurant un accès rapide aux données.",
 	"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.": "Activer le mappage de la mémoire (mmap) pour charger les données du modèle. Cette option permet au système d'utiliser le stockage disque comme une extension de la RAM en traitant les fichiers disque comme s'ils étaient en RAM. Cela peut améliorer les performances du modèle en permettant un accès plus rapide aux données. Cependant, cela peut ne pas fonctionner correctement avec tous les systèmes et peut consommer une quantité significative d'espace disque.",
 	"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.": "Activer le mappage de la mémoire (mmap) pour charger les données du modèle. Cette option permet au système d'utiliser le stockage disque comme une extension de la RAM en traitant les fichiers disque comme s'ils étaient en RAM. Cela peut améliorer les performances du modèle en permettant un accès plus rapide aux données. Cependant, cela peut ne pas fonctionner correctement avec tous les systèmes et peut consommer une quantité significative d'espace disque.",
 	"Enable Message Rating": "Activer l'évaluation des messages",
 	"Enable Message Rating": "Activer l'évaluation des messages",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Activer l'échantillonnage Mirostat pour contrôler la perplexité. (Par défaut : 0, 0 = Désactivé, 1 = Mirostat, 2 = Mirostat 2.0)",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Activer l'échantillonnage Mirostat pour contrôler la perplexité. (Par défaut : 0, 0 = Désactivé, 1 = Mirostat, 2 = Mirostat 2.0)",
 	"Enable New Sign Ups": "Activer les nouvelles inscriptions",
 	"Enable New Sign Ups": "Activer les nouvelles inscriptions",
-	"Enable OneDrive": "",
-	"Enable Web Search": "Activer la recherche Web",
 	"Enabled": "Activé",
 	"Enabled": "Activé",
-	"Engine": "Moteur",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Vérifiez que votre fichier CSV comprenne les 4 colonnes dans cet ordre : Name, Email, Password, Role.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Vérifiez que votre fichier CSV comprenne les 4 colonnes dans cet ordre : Name, Email, Password, Role.",
 	"Enter {{role}} message here": "Entrez le message {{role}} ici",
 	"Enter {{role}} message here": "Entrez le message {{role}} ici",
 	"Enter a detail about yourself for your LLMs to recall": "Saisissez un détail sur vous-même que vos LLMs pourront se rappeler",
 	"Enter a detail about yourself for your LLMs to recall": "Saisissez un détail sur vous-même que vos LLMs pourront se rappeler",
@@ -572,6 +572,7 @@
 	"Input commands": "Commandes d'entrée",
 	"Input commands": "Commandes d'entrée",
 	"Install from Github URL": "Installer depuis une URL GitHub",
 	"Install from Github URL": "Installer depuis une URL GitHub",
 	"Instant Auto-Send After Voice Transcription": "Envoi automatique après la transcription",
 	"Instant Auto-Send After Voice Transcription": "Envoi automatique après la transcription",
+	"Integration": "",
 	"Interface": "Interface utilisateur",
 	"Interface": "Interface utilisateur",
 	"Invalid file format.": "Format de fichier non valide.",
 	"Invalid file format.": "Format de fichier non valide.",
 	"Invalid Tag": "Tag non valide",
 	"Invalid Tag": "Tag non valide",
@@ -619,6 +620,7 @@
 	"Listening...": "Écoute en cours...",
 	"Listening...": "Écoute en cours...",
 	"Llama.cpp": "Llama.cpp",
 	"Llama.cpp": "Llama.cpp",
 	"LLMs can make mistakes. Verify important information.": "Les LLM peuvent faire des erreurs. Vérifiez les informations importantes.",
 	"LLMs can make mistakes. Verify important information.": "Les LLM peuvent faire des erreurs. Vérifiez les informations importantes.",
+	"Loader": "",
 	"Loading Kokoro.js...": "",
 	"Loading Kokoro.js...": "",
 	"Local": "Local",
 	"Local": "Local",
 	"Local Models": "Modèles locaux",
 	"Local Models": "Modèles locaux",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "Aucun contenu HTML, CSS ou JavaScript trouvé.",
 	"No HTML, CSS, or JavaScript content found.": "Aucun contenu HTML, CSS ou JavaScript trouvé.",
 	"No inference engine with management support found": "Aucun moteur d'inférence avec support trouvé",
 	"No inference engine with management support found": "Aucun moteur d'inférence avec support trouvé",
 	"No knowledge found": "Aucune connaissance trouvée",
 	"No knowledge found": "Aucune connaissance trouvée",
+	"No memories to clear": "",
 	"No model IDs": "Aucun ID de modèle",
 	"No model IDs": "Aucun ID de modèle",
 	"No models found": "Aucun modèle trouvé",
 	"No models found": "Aucun modèle trouvé",
 	"No models selected": "Aucun modèle sélectionné",
 	"No models selected": "Aucun modèle sélectionné",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "Prompt mis à jour avec succès",
 	"Prompt updated successfully": "Prompt mis à jour avec succès",
 	"Prompts": "Prompts",
 	"Prompts": "Prompts",
 	"Prompts Access": "Accès aux prompts",
 	"Prompts Access": "Accès aux prompts",
-	"Proxy URL": "URL du proxy",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Récupérer « {{searchValue}} » depuis Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Récupérer « {{searchValue}} » depuis Ollama.com",
 	"Pull a model from Ollama.com": "Télécharger un modèle depuis Ollama.com",
 	"Pull a model from Ollama.com": "Télécharger un modèle depuis Ollama.com",
 	"Query Generation Prompt": "Prompt de génération de requête",
 	"Query Generation Prompt": "Prompt de génération de requête",
-	"Query Params": "Paramètres de requête",
 	"RAG Template": "Modèle RAG",
 	"RAG Template": "Modèle RAG",
 	"Rating": "Note",
 	"Rating": "Note",
 	"Re-rank models by topic similarity": "Reclasser les modèles par similarité de sujet",
 	"Re-rank models by topic similarity": "Reclasser les modèles par similarité de sujet",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Les notifications de réponse ne peuvent pas être activées car les autorisations du site web ont été refusées. Veuillez vérifier les paramètres de votre navigateur pour accorder l'accès nécessaire.",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Les notifications de réponse ne peuvent pas être activées car les autorisations du site web ont été refusées. Veuillez vérifier les paramètres de votre navigateur pour accorder l'accès nécessaire.",
 	"Response splitting": "Fractionnement de la réponse",
 	"Response splitting": "Fractionnement de la réponse",
 	"Result": "Résultat",
 	"Result": "Résultat",
+	"Retrieval": "",
 	"Retrieval Query Generation": "Génération de requête de RAG",
 	"Retrieval Query Generation": "Génération de requête de RAG",
 	"Rich Text Input for Chat": "Saisie de texte enrichi pour le chat",
 	"Rich Text Input for Chat": "Saisie de texte enrichi pour le chat",
 	"RK": "Rang",
 	"RK": "Rang",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Web": "Web",
 	"Web": "Web",
 	"Web API": "API Web",
 	"Web API": "API Web",
-	"Web Loader Settings": "Paramètres du Web Loader",
 	"Web Search": "Recherche Web",
 	"Web Search": "Recherche Web",
 	"Web Search Engine": "Moteur de recherche Web",
 	"Web Search Engine": "Moteur de recherche Web",
 	"Web Search in Chat": "",
 	"Web Search in Chat": "",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "Votre statut de compte est actuellement en attente d'activation.",
 	"Your account status is currently pending activation.": "Votre statut de compte est actuellement en attente d'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.": "L'intégralité de votre contribution ira directement au développeur du plugin ; Open WebUI ne prend aucun pourcentage. Cependant, la plateforme de financement choisie peut avoir ses propres frais.",
 	"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.": "L'intégralité de votre contribution ira directement au développeur du plugin ; Open WebUI ne prend aucun pourcentage. Cependant, la plateforme de financement choisie peut avoir ses propres frais.",
 	"Youtube": "YouTube",
 	"Youtube": "YouTube",
-	"Youtube Loader Settings": "Paramètres de l'outil de téléchargement YouTube"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/he-IL/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "אחסן בארכיון את כל הצ'אטים",
 	"Archive All Chats": "אחסן בארכיון את כל הצ'אטים",
 	"Archived Chats": "צ'אטים מאורכבים",
 	"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 this channel?": "",
 	"Are you sure you want to delete this channel?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "",
 	"Bocha Search API Key": "",
 	"Brave Search API Key": "מפתח API של חיפוש אמיץ",
 	"Brave Search API Key": "מפתח API של חיפוש אמיץ",
 	"By {{name}}": "",
 	"By {{name}}": "",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "עקוף אימות SSL עבור אתרים",
 	"Bypass SSL verification for Websites": "עקוף אימות SSL עבור אתרים",
 	"Calendar": "",
 	"Calendar": "",
 	"Call": "",
 	"Call": "",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "בודק עדכונים...",
 	"Checking for updates...": "בודק עדכונים...",
 	"Choose a model before saving...": "בחר מודל לפני השמירה...",
 	"Choose a model before saving...": "בחר מודל לפני השמירה...",
 	"Chunk Overlap": "חפיפת נתונים",
 	"Chunk Overlap": "חפיפת נתונים",
-	"Chunk Params": "פרמטרי נתונים",
 	"Chunk Size": "גודל נתונים",
 	"Chunk Size": "גודל נתונים",
 	"Ciphers": "",
 	"Ciphers": "",
 	"Citation": "ציטוט",
 	"Citation": "ציטוט",
 	"Clear memory": "",
 	"Clear memory": "",
+	"Clear Memory": "",
 	"click here": "",
 	"click here": "",
 	"Click here for filter guides.": "",
 	"Click here for filter guides.": "",
 	"Click here for help.": "לחץ כאן לעזרה.",
 	"Click here for help.": "לחץ כאן לעזרה.",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Contact Admin for WebUI Access": "",
 	"Contact Admin for WebUI Access": "",
 	"Content": "תוכן",
 	"Content": "תוכן",
-	"Content Extraction": "",
+	"Content Extraction Engine": "",
 	"Context Length": "אורך הקשר",
 	"Context Length": "אורך הקשר",
 	"Continue Response": "המשך תגובה",
 	"Continue Response": "המשך תגובה",
 	"Continue with {{provider}}": "",
 	"Continue with {{provider}}": "",
@@ -246,6 +248,7 @@
 	"Current Model": "המודל הנוכחי",
 	"Current Model": "המודל הנוכחי",
 	"Current Password": "הסיסמה הנוכחית",
 	"Current Password": "הסיסמה הנוכחית",
 	"Custom": "מותאם אישית",
 	"Custom": "מותאם אישית",
+	"Danger Zone": "",
 	"Dark": "כהה",
 	"Dark": "כהה",
 	"Database": "מסד נתונים",
 	"Database": "מסד נתונים",
 	"December": "דצמבר",
 	"December": "דצמבר",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "",
 	"ElevenLabs": "",
 	"Email": "דוא\"ל",
 	"Email": "דוא\"ל",
 	"Embark on adventures": "",
 	"Embark on adventures": "",
+	"Embedding": "",
 	"Embedding Batch Size": "",
 	"Embedding Batch Size": "",
 	"Embedding Model": "מודל הטמעה",
 	"Embedding Model": "מודל הטמעה",
 	"Embedding Model Engine": "מנוע מודל הטמעה",
 	"Embedding Model Engine": "מנוע מודל הטמעה",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "הפיכת שיתוף קהילה לזמין",
 	"Enable Community Sharing": "הפיכת שיתוף קהילה לזמין",
-	"Enable Google Drive": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "אפשר הרשמות חדשות",
 	"Enable New Sign Ups": "אפשר הרשמות חדשות",
-	"Enable OneDrive": "",
-	"Enable Web Search": "הפיכת חיפוש באינטרנט לזמין",
 	"Enabled": "",
 	"Enabled": "",
-	"Engine": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ודא שקובץ ה-CSV שלך כולל 4 עמודות בסדר הבא: שם, דוא\"ל, סיסמה, תפקיד.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ודא שקובץ ה-CSV שלך כולל 4 עמודות בסדר הבא: שם, דוא\"ל, סיסמה, תפקיד.",
 	"Enter {{role}} message here": "הזן הודעת {{role}} כאן",
 	"Enter {{role}} message here": "הזן הודעת {{role}} כאן",
 	"Enter a detail about yourself for your LLMs to recall": "הזן פרטים על עצמך כדי שLLMs יזכור",
 	"Enter a detail about yourself for your LLMs to recall": "הזן פרטים על עצמך כדי שLLMs יזכור",
@@ -572,6 +572,7 @@
 	"Input commands": "פקודות קלט",
 	"Input commands": "פקודות קלט",
 	"Install from Github URL": "התקן מכתובת URL של Github",
 	"Install from Github URL": "התקן מכתובת URL של Github",
 	"Instant Auto-Send After Voice Transcription": "",
 	"Instant Auto-Send After Voice Transcription": "",
+	"Integration": "",
 	"Interface": "ממשק",
 	"Interface": "ממשק",
 	"Invalid file format.": "",
 	"Invalid file format.": "",
 	"Invalid Tag": "תג לא חוקי",
 	"Invalid Tag": "תג לא חוקי",
@@ -619,6 +620,7 @@
 	"Listening...": "",
 	"Listening...": "",
 	"Llama.cpp": "",
 	"Llama.cpp": "",
 	"LLMs can make mistakes. Verify important information.": "מודלים בשפה טבעית יכולים לטעות. אמת מידע חשוב.",
 	"LLMs can make mistakes. Verify important information.": "מודלים בשפה טבעית יכולים לטעות. אמת מידע חשוב.",
+	"Loader": "",
 	"Loading Kokoro.js...": "",
 	"Loading Kokoro.js...": "",
 	"Local": "",
 	"Local": "",
 	"Local Models": "",
 	"Local Models": "",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No inference engine with management support found": "",
 	"No inference engine with management support found": "",
 	"No knowledge found": "",
 	"No knowledge found": "",
+	"No memories to clear": "",
 	"No model IDs": "",
 	"No model IDs": "",
 	"No models found": "",
 	"No models found": "",
 	"No models selected": "",
 	"No models selected": "",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "פקודות",
 	"Prompts": "פקודות",
 	"Prompts Access": "",
 	"Prompts Access": "",
-	"Proxy URL": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "משוך \"{{searchValue}}\" מ-Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "משוך \"{{searchValue}}\" מ-Ollama.com",
 	"Pull a model from Ollama.com": "משוך מודל מ-Ollama.com",
 	"Pull a model from Ollama.com": "משוך מודל מ-Ollama.com",
 	"Query Generation Prompt": "",
 	"Query Generation Prompt": "",
-	"Query Params": "פרמטרי שאילתה",
 	"RAG Template": "תבנית RAG",
 	"RAG Template": "תבנית RAG",
 	"Rating": "",
 	"Rating": "",
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"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 splitting": "",
 	"Result": "",
 	"Result": "",
+	"Retrieval": "",
 	"Retrieval Query Generation": "",
 	"Retrieval Query Generation": "",
 	"Rich Text Input for Chat": "",
 	"Rich Text Input for Chat": "",
 	"RK": "",
 	"RK": "",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Web": "רשת",
 	"Web": "רשת",
 	"Web API": "",
 	"Web API": "",
-	"Web Loader Settings": "הגדרות טעינת אתר",
 	"Web Search": "חיפוש באינטרנט",
 	"Web Search": "חיפוש באינטרנט",
 	"Web Search Engine": "מנוע חיפוש באינטרנט",
 	"Web Search Engine": "מנוע חיפוש באינטרנט",
 	"Web Search in Chat": "",
 	"Web Search in Chat": "",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "",
 	"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.": "",
 	"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.": "",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
-	"Youtube Loader Settings": "הגדרות Youtube Loader"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/hi-IN/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "सभी चैट संग्रहीत करें",
 	"Archive All Chats": "सभी चैट संग्रहीत करें",
 	"Archived Chats": "संग्रहीत चैट",
 	"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 this channel?": "",
 	"Are you sure you want to delete this channel?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "",
 	"Bocha Search API Key": "",
 	"Brave Search API Key": "Brave सर्च एपीआई कुंजी",
 	"Brave Search API Key": "Brave सर्च एपीआई कुंजी",
 	"By {{name}}": "",
 	"By {{name}}": "",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "वेबसाइटों के लिए SSL सुनिश्चिती को छोड़ें",
 	"Bypass SSL verification for Websites": "वेबसाइटों के लिए SSL सुनिश्चिती को छोड़ें",
 	"Calendar": "",
 	"Calendar": "",
 	"Call": "",
 	"Call": "",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "अपडेट के लिए जांच कर रहा है...",
 	"Checking for updates...": "अपडेट के लिए जांच कर रहा है...",
 	"Choose a model before saving...": "सहेजने से पहले एक मॉडल चुनें...",
 	"Choose a model before saving...": "सहेजने से पहले एक मॉडल चुनें...",
 	"Chunk Overlap": "चंक ओवरलैप",
 	"Chunk Overlap": "चंक ओवरलैप",
-	"Chunk Params": "चंक पैरामीटर्स",
 	"Chunk Size": "चंक आकार",
 	"Chunk Size": "चंक आकार",
 	"Ciphers": "",
 	"Ciphers": "",
 	"Citation": "उद्धरण",
 	"Citation": "उद्धरण",
 	"Clear memory": "",
 	"Clear memory": "",
+	"Clear Memory": "",
 	"click here": "",
 	"click here": "",
 	"Click here for filter guides.": "",
 	"Click here for filter guides.": "",
 	"Click here for help.": "सहायता के लिए यहां क्लिक करें।",
 	"Click here for help.": "सहायता के लिए यहां क्लिक करें।",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Contact Admin for WebUI Access": "",
 	"Contact Admin for WebUI Access": "",
 	"Content": "सामग्री",
 	"Content": "सामग्री",
-	"Content Extraction": "",
+	"Content Extraction Engine": "",
 	"Context Length": "प्रसंग की लंबाई",
 	"Context Length": "प्रसंग की लंबाई",
 	"Continue Response": "प्रतिक्रिया जारी रखें",
 	"Continue Response": "प्रतिक्रिया जारी रखें",
 	"Continue with {{provider}}": "",
 	"Continue with {{provider}}": "",
@@ -246,6 +248,7 @@
 	"Current Model": "वर्तमान मॉडल",
 	"Current Model": "वर्तमान मॉडल",
 	"Current Password": "वर्तमान पासवर्ड",
 	"Current Password": "वर्तमान पासवर्ड",
 	"Custom": "कस्टम संस्करण",
 	"Custom": "कस्टम संस्करण",
+	"Danger Zone": "",
 	"Dark": "डार्क",
 	"Dark": "डार्क",
 	"Database": "डेटाबेस",
 	"Database": "डेटाबेस",
 	"December": "डिसेंबर",
 	"December": "डिसेंबर",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "",
 	"ElevenLabs": "",
 	"Email": "ईमेल",
 	"Email": "ईमेल",
 	"Embark on adventures": "",
 	"Embark on adventures": "",
+	"Embedding": "",
 	"Embedding Batch Size": "",
 	"Embedding Batch Size": "",
 	"Embedding Model": "मॉडेल अनुकूलन",
 	"Embedding Model": "मॉडेल अनुकूलन",
 	"Embedding Model Engine": "एंबेडिंग मॉडल इंजन",
 	"Embedding Model Engine": "एंबेडिंग मॉडल इंजन",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "समुदाय साझाकरण सक्षम करें",
 	"Enable Community Sharing": "समुदाय साझाकरण सक्षम करें",
-	"Enable Google Drive": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "नए साइन अप सक्रिय करें",
 	"Enable New Sign Ups": "नए साइन अप सक्रिय करें",
-	"Enable OneDrive": "",
-	"Enable Web Search": "वेब खोज सक्षम करें",
 	"Enabled": "",
 	"Enabled": "",
-	"Engine": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "सुनिश्चित करें कि आपकी CSV फ़ाइल में इस क्रम में 4 कॉलम शामिल हैं: नाम, ईमेल, पासवर्ड, भूमिका।",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "सुनिश्चित करें कि आपकी CSV फ़ाइल में इस क्रम में 4 कॉलम शामिल हैं: नाम, ईमेल, पासवर्ड, भूमिका।",
 	"Enter {{role}} message here": "यहां {{role}} संदेश दर्ज करें",
 	"Enter {{role}} message here": "यहां {{role}} संदेश दर्ज करें",
 	"Enter a detail about yourself for your LLMs to recall": "अपने एलएलएम को याद करने के लिए अपने बारे में एक विवरण दर्ज करें",
 	"Enter a detail about yourself for your LLMs to recall": "अपने एलएलएम को याद करने के लिए अपने बारे में एक विवरण दर्ज करें",
@@ -572,6 +572,7 @@
 	"Input commands": "इनपुट क命",
 	"Input commands": "इनपुट क命",
 	"Install from Github URL": "Github URL से इंस्टॉल करें",
 	"Install from Github URL": "Github URL से इंस्टॉल करें",
 	"Instant Auto-Send After Voice Transcription": "",
 	"Instant Auto-Send After Voice Transcription": "",
+	"Integration": "",
 	"Interface": "इंटरफेस",
 	"Interface": "इंटरफेस",
 	"Invalid file format.": "",
 	"Invalid file format.": "",
 	"Invalid Tag": "अवैध टैग",
 	"Invalid Tag": "अवैध टैग",
@@ -619,6 +620,7 @@
 	"Listening...": "",
 	"Listening...": "",
 	"Llama.cpp": "",
 	"Llama.cpp": "",
 	"LLMs can make mistakes. Verify important information.": "एलएलएम गलतियाँ कर सकते हैं। महत्वपूर्ण जानकारी सत्यापित करें.",
 	"LLMs can make mistakes. Verify important information.": "एलएलएम गलतियाँ कर सकते हैं। महत्वपूर्ण जानकारी सत्यापित करें.",
+	"Loader": "",
 	"Loading Kokoro.js...": "",
 	"Loading Kokoro.js...": "",
 	"Local": "",
 	"Local": "",
 	"Local Models": "",
 	"Local Models": "",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No inference engine with management support found": "",
 	"No inference engine with management support found": "",
 	"No knowledge found": "",
 	"No knowledge found": "",
+	"No memories to clear": "",
 	"No model IDs": "",
 	"No model IDs": "",
 	"No models found": "",
 	"No models found": "",
 	"No models selected": "",
 	"No models selected": "",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "प्रॉम्प्ट",
 	"Prompts": "प्रॉम्प्ट",
 	"Prompts Access": "",
 	"Prompts Access": "",
-	"Proxy URL": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "\"{{searchValue}}\" को Ollama.com से खींचें",
 	"Pull \"{{searchValue}}\" from Ollama.com": "\"{{searchValue}}\" को Ollama.com से खींचें",
 	"Pull a model from Ollama.com": "Ollama.com से एक मॉडल खींचें",
 	"Pull a model from Ollama.com": "Ollama.com से एक मॉडल खींचें",
 	"Query Generation Prompt": "",
 	"Query Generation Prompt": "",
-	"Query Params": "क्वेरी पैरामीटर",
 	"RAG Template": "RAG टेम्पलेट",
 	"RAG Template": "RAG टेम्पलेट",
 	"Rating": "",
 	"Rating": "",
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"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 splitting": "",
 	"Result": "",
 	"Result": "",
+	"Retrieval": "",
 	"Retrieval Query Generation": "",
 	"Retrieval Query Generation": "",
 	"Rich Text Input for Chat": "",
 	"Rich Text Input for Chat": "",
 	"RK": "",
 	"RK": "",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Web": "वेब",
 	"Web": "वेब",
 	"Web API": "",
 	"Web API": "",
-	"Web Loader Settings": "वेब लोडर सेटिंग्स",
 	"Web Search": "वेब खोज",
 	"Web Search": "वेब खोज",
 	"Web Search Engine": "वेब खोज इंजन",
 	"Web Search Engine": "वेब खोज इंजन",
 	"Web Search in Chat": "",
 	"Web Search in Chat": "",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "",
 	"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.": "",
 	"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.": "",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
-	"Youtube Loader Settings": "यूट्यूब लोडर सेटिंग्स"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/hr-HR/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "Arhivirajte sve razgovore",
 	"Archive All Chats": "Arhivirajte sve razgovore",
 	"Archived Chats": "Arhivirani razgovori",
 	"Archived Chats": "Arhivirani razgovori",
 	"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 this channel?": "",
 	"Are you sure you want to delete this channel?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "",
 	"Bocha Search API Key": "",
 	"Brave Search API Key": "Brave tražilica - API ključ",
 	"Brave Search API Key": "Brave tražilica - API ključ",
 	"By {{name}}": "",
 	"By {{name}}": "",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "Zaobiđi SSL provjeru za web stranice",
 	"Bypass SSL verification for Websites": "Zaobiđi SSL provjeru za web stranice",
 	"Calendar": "",
 	"Calendar": "",
 	"Call": "Poziv",
 	"Call": "Poziv",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "Provjeravam ažuriranja...",
 	"Checking for updates...": "Provjeravam ažuriranja...",
 	"Choose a model before saving...": "Odaberite model prije spremanja...",
 	"Choose a model before saving...": "Odaberite model prije spremanja...",
 	"Chunk Overlap": "Preklapanje dijelova",
 	"Chunk Overlap": "Preklapanje dijelova",
-	"Chunk Params": "Parametri dijelova",
 	"Chunk Size": "Veličina dijela",
 	"Chunk Size": "Veličina dijela",
 	"Ciphers": "",
 	"Ciphers": "",
 	"Citation": "Citiranje",
 	"Citation": "Citiranje",
 	"Clear memory": "Očisti memoriju",
 	"Clear memory": "Očisti memoriju",
+	"Clear Memory": "",
 	"click here": "",
 	"click here": "",
 	"Click here for filter guides.": "",
 	"Click here for filter guides.": "",
 	"Click here for help.": "Kliknite ovdje za pomoć.",
 	"Click here for help.": "Kliknite ovdje za pomoć.",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Contact Admin for WebUI Access": "Kontaktirajte admina za WebUI pristup",
 	"Contact Admin for WebUI Access": "Kontaktirajte admina za WebUI pristup",
 	"Content": "Sadržaj",
 	"Content": "Sadržaj",
-	"Content Extraction": "",
+	"Content Extraction Engine": "",
 	"Context Length": "Dužina konteksta",
 	"Context Length": "Dužina konteksta",
 	"Continue Response": "Nastavi odgovor",
 	"Continue Response": "Nastavi odgovor",
 	"Continue with {{provider}}": "",
 	"Continue with {{provider}}": "",
@@ -246,6 +248,7 @@
 	"Current Model": "Trenutni model",
 	"Current Model": "Trenutni model",
 	"Current Password": "Trenutna lozinka",
 	"Current Password": "Trenutna lozinka",
 	"Custom": "Prilagođeno",
 	"Custom": "Prilagođeno",
+	"Danger Zone": "",
 	"Dark": "Tamno",
 	"Dark": "Tamno",
 	"Database": "Baza podataka",
 	"Database": "Baza podataka",
 	"December": "Prosinac",
 	"December": "Prosinac",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "",
 	"ElevenLabs": "",
 	"Email": "Email",
 	"Email": "Email",
 	"Embark on adventures": "",
 	"Embark on adventures": "",
+	"Embedding": "",
 	"Embedding Batch Size": "Embedding - Veličina batch-a",
 	"Embedding Batch Size": "Embedding - Veličina batch-a",
 	"Embedding Model": "Embedding model",
 	"Embedding Model": "Embedding model",
 	"Embedding Model Engine": "Embedding model pogon",
 	"Embedding Model Engine": "Embedding model pogon",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Omogući zajedničko korištenje zajednice",
 	"Enable Community Sharing": "Omogući zajedničko korištenje zajednice",
-	"Enable Google Drive": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Omogući nove prijave",
 	"Enable New Sign Ups": "Omogući nove prijave",
-	"Enable OneDrive": "",
-	"Enable Web Search": "Omogući pretraživanje weba",
 	"Enabled": "",
 	"Enabled": "",
-	"Engine": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Provjerite da vaša CSV datoteka uključuje 4 stupca u ovom redoslijedu: Name, Email, Password, Role.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Provjerite da vaša CSV datoteka uključuje 4 stupca u ovom redoslijedu: Name, Email, Password, Role.",
 	"Enter {{role}} message here": "Unesite {{role}} poruku ovdje",
 	"Enter {{role}} message here": "Unesite {{role}} poruku ovdje",
 	"Enter a detail about yourself for your LLMs to recall": "Unesite pojedinosti o sebi da bi učitali memoriju u LLM",
 	"Enter a detail about yourself for your LLMs to recall": "Unesite pojedinosti o sebi da bi učitali memoriju u LLM",
@@ -572,6 +572,7 @@
 	"Input commands": "Unos naredbi",
 	"Input commands": "Unos naredbi",
 	"Install from Github URL": "Instaliraj s Github URL-a",
 	"Install from Github URL": "Instaliraj s Github URL-a",
 	"Instant Auto-Send After Voice Transcription": "Trenutačno automatsko slanje nakon glasovne transkripcije",
 	"Instant Auto-Send After Voice Transcription": "Trenutačno automatsko slanje nakon glasovne transkripcije",
+	"Integration": "",
 	"Interface": "Sučelje",
 	"Interface": "Sučelje",
 	"Invalid file format.": "",
 	"Invalid file format.": "",
 	"Invalid Tag": "Nevažeća oznaka",
 	"Invalid Tag": "Nevažeća oznaka",
@@ -619,6 +620,7 @@
 	"Listening...": "Slušam...",
 	"Listening...": "Slušam...",
 	"Llama.cpp": "",
 	"Llama.cpp": "",
 	"LLMs can make mistakes. Verify important information.": "LLM-ovi mogu pogriješiti. Provjerite važne informacije.",
 	"LLMs can make mistakes. Verify important information.": "LLM-ovi mogu pogriješiti. Provjerite važne informacije.",
+	"Loader": "",
 	"Loading Kokoro.js...": "",
 	"Loading Kokoro.js...": "",
 	"Local": "",
 	"Local": "",
 	"Local Models": "Lokalni modeli",
 	"Local Models": "Lokalni modeli",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No inference engine with management support found": "",
 	"No inference engine with management support found": "",
 	"No knowledge found": "",
 	"No knowledge found": "",
+	"No memories to clear": "",
 	"No model IDs": "",
 	"No model IDs": "",
 	"No models found": "",
 	"No models found": "",
 	"No models selected": "",
 	"No models selected": "",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "Prompti",
 	"Prompts": "Prompti",
 	"Prompts Access": "",
 	"Prompts Access": "",
-	"Proxy URL": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Povucite \"{{searchValue}}\" s Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Povucite \"{{searchValue}}\" s Ollama.com",
 	"Pull a model from Ollama.com": "Povucite model s Ollama.com",
 	"Pull a model from Ollama.com": "Povucite model s Ollama.com",
 	"Query Generation Prompt": "",
 	"Query Generation Prompt": "",
-	"Query Params": "Parametri upita",
 	"RAG Template": "RAG predložak",
 	"RAG Template": "RAG predložak",
 	"Rating": "",
 	"Rating": "",
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"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 splitting": "",
 	"Result": "",
 	"Result": "",
+	"Retrieval": "",
 	"Retrieval Query Generation": "",
 	"Retrieval Query Generation": "",
 	"Rich Text Input for Chat": "",
 	"Rich Text Input for Chat": "",
 	"RK": "",
 	"RK": "",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Web": "Web",
 	"Web": "Web",
 	"Web API": "Web API",
 	"Web API": "Web API",
-	"Web Loader Settings": "Postavke web učitavanja",
 	"Web Search": "Internet pretraga",
 	"Web Search": "Internet pretraga",
 	"Web Search Engine": "Web tražilica",
 	"Web Search Engine": "Web tražilica",
 	"Web Search in Chat": "",
 	"Web Search in Chat": "",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "Status vašeg računa trenutno čeka aktivaciju.",
 	"Your account status is currently pending activation.": "Status vašeg računa trenutno čeka aktivaciju.",
 	"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.": "",
 	"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.": "",
 	"Youtube": "YouTube",
 	"Youtube": "YouTube",
-	"Youtube Loader Settings": "YouTube postavke učitavanja"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/hu-HU/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "Minden beszélgetés archiválása",
 	"Archive All Chats": "Minden beszélgetés archiválása",
 	"Archived Chats": "Archivált beszélgetések",
 	"Archived Chats": "Archivált beszélgetések",
 	"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 this channel?": "",
 	"Are you sure you want to delete this channel?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "",
 	"Bocha Search API Key": "",
 	"Brave Search API Key": "Brave Search API kulcs",
 	"Brave Search API Key": "Brave Search API kulcs",
 	"By {{name}}": "",
 	"By {{name}}": "",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "SSL ellenőrzés kihagyása weboldalakhoz",
 	"Bypass SSL verification for Websites": "SSL ellenőrzés kihagyása weboldalakhoz",
 	"Calendar": "",
 	"Calendar": "",
 	"Call": "Hívás",
 	"Call": "Hívás",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "Frissítések keresése...",
 	"Checking for updates...": "Frissítések keresése...",
 	"Choose a model before saving...": "Válassz modellt mentés előtt...",
 	"Choose a model before saving...": "Válassz modellt mentés előtt...",
 	"Chunk Overlap": "Darab átfedés",
 	"Chunk Overlap": "Darab átfedés",
-	"Chunk Params": "Darab paraméterek",
 	"Chunk Size": "Darab méret",
 	"Chunk Size": "Darab méret",
 	"Ciphers": "",
 	"Ciphers": "",
 	"Citation": "Idézet",
 	"Citation": "Idézet",
 	"Clear memory": "Memória törlése",
 	"Clear memory": "Memória törlése",
+	"Clear Memory": "",
 	"click here": "",
 	"click here": "",
 	"Click here for filter guides.": "",
 	"Click here for filter guides.": "",
 	"Click here for help.": "Kattints ide segítségért.",
 	"Click here for help.": "Kattints ide segítségért.",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Contact Admin for WebUI Access": "Lépj kapcsolatba az adminnal a WebUI hozzáférésért",
 	"Contact Admin for WebUI Access": "Lépj kapcsolatba az adminnal a WebUI hozzáférésért",
 	"Content": "Tartalom",
 	"Content": "Tartalom",
-	"Content Extraction": "Tartalom kinyerés",
+	"Content Extraction Engine": "",
 	"Context Length": "Kontextus hossz",
 	"Context Length": "Kontextus hossz",
 	"Continue Response": "Válasz folytatása",
 	"Continue Response": "Válasz folytatása",
 	"Continue with {{provider}}": "Folytatás {{provider}} szolgáltatóval",
 	"Continue with {{provider}}": "Folytatás {{provider}} szolgáltatóval",
@@ -246,6 +248,7 @@
 	"Current Model": "Jelenlegi modell",
 	"Current Model": "Jelenlegi modell",
 	"Current Password": "Jelenlegi jelszó",
 	"Current Password": "Jelenlegi jelszó",
 	"Custom": "Egyéni",
 	"Custom": "Egyéni",
+	"Danger Zone": "",
 	"Dark": "Sötét",
 	"Dark": "Sötét",
 	"Database": "Adatbázis",
 	"Database": "Adatbázis",
 	"December": "December",
 	"December": "December",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "ElevenLabs",
 	"ElevenLabs": "ElevenLabs",
 	"Email": "Email",
 	"Email": "Email",
 	"Embark on adventures": "",
 	"Embark on adventures": "",
+	"Embedding": "",
 	"Embedding Batch Size": "Beágyazási köteg méret",
 	"Embedding Batch Size": "Beágyazási köteg méret",
 	"Embedding Model": "Beágyazási modell",
 	"Embedding Model": "Beágyazási modell",
 	"Embedding Model Engine": "Beágyazási modell motor",
 	"Embedding Model Engine": "Beágyazási modell motor",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Közösségi megosztás engedélyezése",
 	"Enable Community Sharing": "Közösségi megosztás engedélyezése",
-	"Enable Google Drive": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"Enable Message Rating": "Üzenet értékelés engedélyezése",
 	"Enable Message Rating": "Üzenet értékelés engedélyezése",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Új regisztrációk engedélyezése",
 	"Enable New Sign Ups": "Új regisztrációk engedélyezése",
-	"Enable OneDrive": "",
-	"Enable Web Search": "Webes keresés engedélyezése",
 	"Enabled": "Engedélyezve",
 	"Enabled": "Engedélyezve",
-	"Engine": "Motor",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Győződj meg róla, hogy a CSV fájl tartalmazza ezt a 4 oszlopot ebben a sorrendben: Név, Email, Jelszó, Szerep.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Győződj meg róla, hogy a CSV fájl tartalmazza ezt a 4 oszlopot ebben a sorrendben: Név, Email, Jelszó, Szerep.",
 	"Enter {{role}} message here": "Írd ide a {{role}} üzenetet",
 	"Enter {{role}} message here": "Írd ide a {{role}} üzenetet",
 	"Enter a detail about yourself for your LLMs to recall": "Adj meg egy részletet magadról, amit az LLM-ek megjegyezhetnek",
 	"Enter a detail about yourself for your LLMs to recall": "Adj meg egy részletet magadról, amit az LLM-ek megjegyezhetnek",
@@ -572,6 +572,7 @@
 	"Input commands": "Beviteli parancsok",
 	"Input commands": "Beviteli parancsok",
 	"Install from Github URL": "Telepítés Github URL-ről",
 	"Install from Github URL": "Telepítés Github URL-ről",
 	"Instant Auto-Send After Voice Transcription": "Azonnali automatikus küldés hangfelismerés után",
 	"Instant Auto-Send After Voice Transcription": "Azonnali automatikus küldés hangfelismerés után",
+	"Integration": "",
 	"Interface": "Felület",
 	"Interface": "Felület",
 	"Invalid file format.": "Érvénytelen fájlformátum.",
 	"Invalid file format.": "Érvénytelen fájlformátum.",
 	"Invalid Tag": "Érvénytelen címke",
 	"Invalid Tag": "Érvénytelen címke",
@@ -619,6 +620,7 @@
 	"Listening...": "Hallgatás...",
 	"Listening...": "Hallgatás...",
 	"Llama.cpp": "",
 	"Llama.cpp": "",
 	"LLMs can make mistakes. Verify important information.": "Az LLM-ek hibázhatnak. Ellenőrizze a fontos információkat.",
 	"LLMs can make mistakes. Verify important information.": "Az LLM-ek hibázhatnak. Ellenőrizze a fontos információkat.",
+	"Loader": "",
 	"Loading Kokoro.js...": "",
 	"Loading Kokoro.js...": "",
 	"Local": "",
 	"Local": "",
 	"Local Models": "Helyi modellek",
 	"Local Models": "Helyi modellek",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "Nem található HTML, CSS vagy JavaScript tartalom.",
 	"No HTML, CSS, or JavaScript content found.": "Nem található HTML, CSS vagy JavaScript tartalom.",
 	"No inference engine with management support found": "",
 	"No inference engine with management support found": "",
 	"No knowledge found": "Nem található tudásbázis",
 	"No knowledge found": "Nem található tudásbázis",
+	"No memories to clear": "",
 	"No model IDs": "",
 	"No model IDs": "",
 	"No models found": "Nem található modell",
 	"No models found": "Nem található modell",
 	"No models selected": "",
 	"No models selected": "",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "Promptok",
 	"Prompts": "Promptok",
 	"Prompts Access": "",
 	"Prompts Access": "",
-	"Proxy URL": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "\"{{searchValue}}\" letöltése az Ollama.com-ról",
 	"Pull \"{{searchValue}}\" from Ollama.com": "\"{{searchValue}}\" letöltése az Ollama.com-ról",
 	"Pull a model from Ollama.com": "Modell letöltése az Ollama.com-ról",
 	"Pull a model from Ollama.com": "Modell letöltése az Ollama.com-ról",
 	"Query Generation Prompt": "",
 	"Query Generation Prompt": "",
-	"Query Params": "Lekérdezési paraméterek",
 	"RAG Template": "RAG sablon",
 	"RAG Template": "RAG sablon",
 	"Rating": "Értékelés",
 	"Rating": "Értékelés",
 	"Re-rank models by topic similarity": "Modellek újrarangsorolása téma hasonlóság alapján",
 	"Re-rank models by topic similarity": "Modellek újrarangsorolása téma hasonlóság alapján",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "A válasz értesítések nem aktiválhatók, mert a weboldal engedélyei meg lettek tagadva. Kérjük, látogasson el a böngésző beállításaihoz a szükséges hozzáférés megadásához.",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "A válasz értesítések nem aktiválhatók, mert a weboldal engedélyei meg lettek tagadva. Kérjük, látogasson el a böngésző beállításaihoz a szükséges hozzáférés megadásához.",
 	"Response splitting": "Válasz felosztás",
 	"Response splitting": "Válasz felosztás",
 	"Result": "Eredmény",
 	"Result": "Eredmény",
+	"Retrieval": "",
 	"Retrieval Query Generation": "",
 	"Retrieval Query Generation": "",
 	"Rich Text Input for Chat": "Formázott szövegbevitel a chathez",
 	"Rich Text Input for Chat": "Formázott szövegbevitel a chathez",
 	"RK": "RK",
 	"RK": "RK",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Web": "Web",
 	"Web": "Web",
 	"Web API": "Web API",
 	"Web API": "Web API",
-	"Web Loader Settings": "Web betöltő beállítások",
 	"Web Search": "Webes keresés",
 	"Web Search": "Webes keresés",
 	"Web Search Engine": "Webes keresőmotor",
 	"Web Search Engine": "Webes keresőmotor",
 	"Web Search in Chat": "",
 	"Web Search in Chat": "",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "Fiókja jelenleg aktiválásra vár.",
 	"Your account status is currently pending activation.": "Fiókja jelenleg aktiválásra vár.",
 	"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.": "A teljes hozzájárulása közvetlenül a bővítmény fejlesztőjéhez kerül; az Open WebUI nem vesz le százalékot. Azonban a választott támogatási platformnak lehetnek saját díjai.",
 	"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.": "A teljes hozzájárulása közvetlenül a bővítmény fejlesztőjéhez kerül; az Open WebUI nem vesz le százalékot. Azonban a választott támogatási platformnak lehetnek saját díjai.",
 	"Youtube": "YouTube",
 	"Youtube": "YouTube",
-	"Youtube Loader Settings": "YouTube betöltő beállítások"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/id-ID/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "Arsipkan Semua Obrolan",
 	"Archive All Chats": "Arsipkan Semua Obrolan",
 	"Archived Chats": "Obrolan yang Diarsipkan",
 	"Archived Chats": "Obrolan yang Diarsipkan",
 	"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 this channel?": "",
 	"Are you sure you want to delete this channel?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "",
 	"Bocha Search API Key": "",
 	"Brave Search API Key": "Kunci API Pencarian Berani",
 	"Brave Search API Key": "Kunci API Pencarian Berani",
 	"By {{name}}": "",
 	"By {{name}}": "",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "Lewati verifikasi SSL untuk Situs Web",
 	"Bypass SSL verification for Websites": "Lewati verifikasi SSL untuk Situs Web",
 	"Calendar": "",
 	"Calendar": "",
 	"Call": "Panggilan",
 	"Call": "Panggilan",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "Memeriksa pembaruan...",
 	"Checking for updates...": "Memeriksa pembaruan...",
 	"Choose a model before saving...": "Pilih model sebelum menyimpan...",
 	"Choose a model before saving...": "Pilih model sebelum menyimpan...",
 	"Chunk Overlap": "Tumpang Tindih Potongan",
 	"Chunk Overlap": "Tumpang Tindih Potongan",
-	"Chunk Params": "Parameter Potongan",
 	"Chunk Size": "Ukuran Potongan",
 	"Chunk Size": "Ukuran Potongan",
 	"Ciphers": "",
 	"Ciphers": "",
 	"Citation": "Kutipan",
 	"Citation": "Kutipan",
 	"Clear memory": "Menghapus memori",
 	"Clear memory": "Menghapus memori",
+	"Clear Memory": "",
 	"click here": "",
 	"click here": "",
 	"Click here for filter guides.": "",
 	"Click here for filter guides.": "",
 	"Click here for help.": "Klik di sini untuk bantuan.",
 	"Click here for help.": "Klik di sini untuk bantuan.",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Contact Admin for WebUI Access": "Hubungi Admin untuk Akses WebUI",
 	"Contact Admin for WebUI Access": "Hubungi Admin untuk Akses WebUI",
 	"Content": "Konten",
 	"Content": "Konten",
-	"Content Extraction": "",
+	"Content Extraction Engine": "",
 	"Context Length": "Panjang Konteks",
 	"Context Length": "Panjang Konteks",
 	"Continue Response": "Lanjutkan Tanggapan",
 	"Continue Response": "Lanjutkan Tanggapan",
 	"Continue with {{provider}}": "Lanjutkan dengan {{penyedia}}",
 	"Continue with {{provider}}": "Lanjutkan dengan {{penyedia}}",
@@ -246,6 +248,7 @@
 	"Current Model": "Model Saat Ini",
 	"Current Model": "Model Saat Ini",
 	"Current Password": "Kata Sandi Saat Ini",
 	"Current Password": "Kata Sandi Saat Ini",
 	"Custom": "Kustom",
 	"Custom": "Kustom",
+	"Danger Zone": "",
 	"Dark": "Gelap",
 	"Dark": "Gelap",
 	"Database": "Basis data",
 	"Database": "Basis data",
 	"December": "Desember",
 	"December": "Desember",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "",
 	"ElevenLabs": "",
 	"Email": "Email",
 	"Email": "Email",
 	"Embark on adventures": "",
 	"Embark on adventures": "",
+	"Embedding": "",
 	"Embedding Batch Size": "Menyematkan Ukuran Batch",
 	"Embedding Batch Size": "Menyematkan Ukuran Batch",
 	"Embedding Model": "Model Penyematan",
 	"Embedding Model": "Model Penyematan",
 	"Embedding Model Engine": "Mesin Model Penyematan",
 	"Embedding Model Engine": "Mesin Model Penyematan",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Aktifkan Berbagi Komunitas",
 	"Enable Community Sharing": "Aktifkan Berbagi Komunitas",
-	"Enable Google Drive": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Aktifkan Pendaftaran Baru",
 	"Enable New Sign Ups": "Aktifkan Pendaftaran Baru",
-	"Enable OneDrive": "",
-	"Enable Web Search": "Aktifkan Pencarian Web",
 	"Enabled": "",
 	"Enabled": "",
-	"Engine": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Pastikan file CSV Anda menyertakan 4 kolom dengan urutan sebagai berikut: Nama, Email, Kata Sandi, Peran.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Pastikan file CSV Anda menyertakan 4 kolom dengan urutan sebagai berikut: Nama, Email, Kata Sandi, Peran.",
 	"Enter {{role}} message here": "Masukkan pesan {{role}} di sini",
 	"Enter {{role}} message here": "Masukkan pesan {{role}} di sini",
 	"Enter a detail about yourself for your LLMs to recall": "Masukkan detail tentang diri Anda untuk diingat oleh LLM Anda",
 	"Enter a detail about yourself for your LLMs to recall": "Masukkan detail tentang diri Anda untuk diingat oleh LLM Anda",
@@ -572,6 +572,7 @@
 	"Input commands": "Perintah masukan",
 	"Input commands": "Perintah masukan",
 	"Install from Github URL": "Instal dari URL Github",
 	"Install from Github URL": "Instal dari URL Github",
 	"Instant Auto-Send After Voice Transcription": "Kirim Otomatis Instan Setelah Transkripsi Suara",
 	"Instant Auto-Send After Voice Transcription": "Kirim Otomatis Instan Setelah Transkripsi Suara",
+	"Integration": "",
 	"Interface": "Antarmuka",
 	"Interface": "Antarmuka",
 	"Invalid file format.": "",
 	"Invalid file format.": "",
 	"Invalid Tag": "Tag tidak valid",
 	"Invalid Tag": "Tag tidak valid",
@@ -619,6 +620,7 @@
 	"Listening...": "Mendengarkan",
 	"Listening...": "Mendengarkan",
 	"Llama.cpp": "",
 	"Llama.cpp": "",
 	"LLMs can make mistakes. Verify important information.": "LLM dapat membuat kesalahan. Verifikasi informasi penting.",
 	"LLMs can make mistakes. Verify important information.": "LLM dapat membuat kesalahan. Verifikasi informasi penting.",
+	"Loader": "",
 	"Loading Kokoro.js...": "",
 	"Loading Kokoro.js...": "",
 	"Local": "",
 	"Local": "",
 	"Local Models": "Model Lokal",
 	"Local Models": "Model Lokal",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No inference engine with management support found": "",
 	"No inference engine with management support found": "",
 	"No knowledge found": "",
 	"No knowledge found": "",
+	"No memories to clear": "",
 	"No model IDs": "",
 	"No model IDs": "",
 	"No models found": "",
 	"No models found": "",
 	"No models selected": "",
 	"No models selected": "",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "Prompt",
 	"Prompts": "Prompt",
 	"Prompts Access": "",
 	"Prompts Access": "",
-	"Proxy URL": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Tarik \"{{searchValue}}\" dari Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Tarik \"{{searchValue}}\" dari Ollama.com",
 	"Pull a model from Ollama.com": "Tarik model dari Ollama.com",
 	"Pull a model from Ollama.com": "Tarik model dari Ollama.com",
 	"Query Generation Prompt": "",
 	"Query Generation Prompt": "",
-	"Query Params": "Parameter Kueri",
 	"RAG Template": "Templat RAG",
 	"RAG Template": "Templat RAG",
 	"Rating": "",
 	"Rating": "",
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Notifikasi respons tidak dapat diaktifkan karena izin situs web telah ditolak. Silakan kunjungi pengaturan browser Anda untuk memberikan akses yang diperlukan.",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Notifikasi respons tidak dapat diaktifkan karena izin situs web telah ditolak. Silakan kunjungi pengaturan browser Anda untuk memberikan akses yang diperlukan.",
 	"Response splitting": "",
 	"Response splitting": "",
 	"Result": "",
 	"Result": "",
+	"Retrieval": "",
 	"Retrieval Query Generation": "",
 	"Retrieval Query Generation": "",
 	"Rich Text Input for Chat": "",
 	"Rich Text Input for Chat": "",
 	"RK": "",
 	"RK": "",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Web": "Web",
 	"Web": "Web",
 	"Web API": "API Web",
 	"Web API": "API Web",
-	"Web Loader Settings": "Pengaturan Pemuat Web",
 	"Web Search": "Pencarian Web",
 	"Web Search": "Pencarian Web",
 	"Web Search Engine": "Mesin Pencari Web",
 	"Web Search Engine": "Mesin Pencari Web",
 	"Web Search in Chat": "",
 	"Web Search in Chat": "",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "Status akun Anda saat ini sedang menunggu aktivasi.",
 	"Your account status is currently pending activation.": "Status akun Anda saat ini sedang menunggu aktivasi.",
 	"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.": "",
 	"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.": "",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
-	"Youtube Loader Settings": "Pengaturan Pemuat Youtube"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/ie-GA/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "Cartlann Gach Comhrá",
 	"Archive All Chats": "Cartlann Gach Comhrá",
 	"Archived Chats": "Comhráite Cartlann",
 	"Archived Chats": "Comhráite Cartlann",
 	"archived-chat-export": "gcartlann-comhrá-onnmhairiú",
 	"archived-chat-export": "gcartlann-comhrá-onnmhairiú",
+	"Are you sure you want to clear all memories? This action cannot be undone.": "",
 	"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 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 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ú?",
 	"Are you sure you want to unarchive all archived chats?": "An bhfuil tú cinnte gur mhaith leat gach comhrá cartlainne a dhíchartlannú?",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "",
 	"Bocha Search API Key": "",
 	"Brave Search API Key": "Eochair API Cuardaigh Brave",
 	"Brave Search API Key": "Eochair API Cuardaigh Brave",
 	"By {{name}}": "Le {{name}}",
 	"By {{name}}": "Le {{name}}",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "Seachbhachtar fíorú SSL do Láithreáin",
 	"Bypass SSL verification for Websites": "Seachbhachtar fíorú SSL do Láithreáin",
 	"Calendar": "",
 	"Calendar": "",
 	"Call": "Glaoigh",
 	"Call": "Glaoigh",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "Seiceáil le haghaidh nuashonruithe...",
 	"Checking for updates...": "Seiceáil le haghaidh nuashonruithe...",
 	"Choose a model before saving...": "Roghnaigh múnla sula sábhálann tú...",
 	"Choose a model before saving...": "Roghnaigh múnla sula sábhálann tú...",
 	"Chunk Overlap": "Forluí smután",
 	"Chunk Overlap": "Forluí smután",
-	"Chunk Params": "Chunk Params",
 	"Chunk Size": "Méid an Píosa",
 	"Chunk Size": "Méid an Píosa",
 	"Ciphers": "Cipéirí",
 	"Ciphers": "Cipéirí",
 	"Citation": "Lua",
 	"Citation": "Lua",
 	"Clear memory": "Cuimhne ghlan",
 	"Clear memory": "Cuimhne ghlan",
+	"Clear Memory": "",
 	"click here": "cliceáil anseo",
 	"click here": "cliceáil anseo",
 	"Click here for filter guides.": "Cliceáil anseo le haghaidh treoracha scagaire.",
 	"Click here for filter guides.": "Cliceáil anseo le haghaidh treoracha scagaire.",
 	"Click here for help.": "Cliceáil anseo le haghaidh cabhair.",
 	"Click here for help.": "Cliceáil anseo le haghaidh cabhair.",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "Srianann iarracht ar réasúnaíocht a dhéanamh ar shamhlacha réasúnaíochta. Ní bhaineann ach le samhlacha réasúnaíochta ó sholáthraithe sonracha a thacaíonn le hiarracht réasúnaíochta. (Réamhshocrú: meánach)",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "Srianann iarracht ar réasúnaíocht a dhéanamh ar shamhlacha réasúnaíochta. Ní bhaineann ach le samhlacha réasúnaíochta ó sholáthraithe sonracha a thacaíonn le hiarracht réasúnaíochta. (Réamhshocrú: meánach)",
 	"Contact Admin for WebUI Access": "Déan teagmháil le Riarachán le haghaidh Rochtana WebUI",
 	"Contact Admin for WebUI Access": "Déan teagmháil le Riarachán le haghaidh Rochtana WebUI",
 	"Content": "Ábhar",
 	"Content": "Ábhar",
-	"Content Extraction": "Straibhadh Ábhar",
+	"Content Extraction Engine": "",
 	"Context Length": "Fad Comhthéacs",
 	"Context Length": "Fad Comhthéacs",
 	"Continue Response": "Leanúint ar aghaidh",
 	"Continue Response": "Leanúint ar aghaidh",
 	"Continue with {{provider}}": "Lean ar aghaidh le {{provider}}",
 	"Continue with {{provider}}": "Lean ar aghaidh le {{provider}}",
@@ -246,6 +248,7 @@
 	"Current Model": "Múnla Reatha",
 	"Current Model": "Múnla Reatha",
 	"Current Password": "Pasfhocal Reatha",
 	"Current Password": "Pasfhocal Reatha",
 	"Custom": "Saincheaptha",
 	"Custom": "Saincheaptha",
+	"Danger Zone": "",
 	"Dark": "Dorcha",
 	"Dark": "Dorcha",
 	"Database": "Bunachar Sonraí",
 	"Database": "Bunachar Sonraí",
 	"December": "Nollaig",
 	"December": "Nollaig",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "Eleven Labs",
 	"ElevenLabs": "Eleven Labs",
 	"Email": "Ríomhphost",
 	"Email": "Ríomhphost",
 	"Embark on adventures": "Dul ar eachtraí",
 	"Embark on adventures": "Dul ar eachtraí",
+	"Embedding": "",
 	"Embedding Batch Size": "Méid Baisc a ionchorprú",
 	"Embedding Batch Size": "Méid Baisc a ionchorprú",
 	"Embedding Model": "Múnla Leabháilte",
 	"Embedding Model": "Múnla Leabháilte",
 	"Embedding Model Engine": "Inneall Múnla Ionchorprú",
 	"Embedding Model Engine": "Inneall Múnla Ionchorprú",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "Cumasaigh giniúint uathchríochnaithe le haghaidh teachtaireachtaí comhrá",
 	"Enable autocomplete generation for chat messages": "Cumasaigh giniúint uathchríochnaithe le haghaidh teachtaireachtaí comhrá",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Cumasaigh Comhroinnt Pobail",
 	"Enable Community Sharing": "Cumasaigh Comhroinnt Pobail",
-	"Enable Google Drive": "Cumasaigh Google Drive",
 	"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.": "Cumasaigh Glasáil Cuimhne (mlock) chun sonraí samhaltaithe a chosc ó RAM. Glasálann an rogha seo sraith oibre leathanaigh an mhúnla isteach i RAM, ag cinntiú nach ndéanfar iad a mhalartú go diosca. Is féidir leis seo cabhrú le feidhmíocht a choinneáil trí lochtanna leathanaigh a sheachaint agus rochtain tapa ar shonraí a chinntiú.",
 	"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.": "Cumasaigh Glasáil Cuimhne (mlock) chun sonraí samhaltaithe a chosc ó RAM. Glasálann an rogha seo sraith oibre leathanaigh an mhúnla isteach i RAM, ag cinntiú nach ndéanfar iad a mhalartú go diosca. Is féidir leis seo cabhrú le feidhmíocht a choinneáil trí lochtanna leathanaigh a sheachaint agus rochtain tapa ar shonraí a chinntiú.",
 	"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.": "Cumasaigh Mapáil Cuimhne (mmap) chun sonraí samhla a lódáil. Ligeann an rogha seo don chóras stóráil diosca a úsáid mar leathnú ar RAM trí chomhaid diosca a chóireáil amhail is dá mba i RAM iad. Is féidir leis seo feidhmíocht na samhla a fheabhsú trí rochtain níos tapúla ar shonraí a cheadú. Mar sin féin, d'fhéadfadh sé nach n-oibreoidh sé i gceart le gach córas agus féadfaidh sé méid suntasach spáis diosca a ithe.",
 	"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.": "Cumasaigh Mapáil Cuimhne (mmap) chun sonraí samhla a lódáil. Ligeann an rogha seo don chóras stóráil diosca a úsáid mar leathnú ar RAM trí chomhaid diosca a chóireáil amhail is dá mba i RAM iad. Is féidir leis seo feidhmíocht na samhla a fheabhsú trí rochtain níos tapúla ar shonraí a cheadú. Mar sin féin, d'fhéadfadh sé nach n-oibreoidh sé i gceart le gach córas agus féadfaidh sé méid suntasach spáis diosca a ithe.",
 	"Enable Message Rating": "Cumasaigh Rátáil Teachtai",
 	"Enable Message Rating": "Cumasaigh Rátáil Teachtai",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Cumasaigh sampláil Mirostat chun seachrán a rialú. (Réamhshocrú: 0, 0 = Díchumasaithe, 1 = Mirostat, 2 = Mirostat 2.0)",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Cumasaigh sampláil Mirostat chun seachrán a rialú. (Réamhshocrú: 0, 0 = Díchumasaithe, 1 = Mirostat, 2 = Mirostat 2.0)",
 	"Enable New Sign Ups": "Cumasaigh Clárúcháin Nua",
 	"Enable New Sign Ups": "Cumasaigh Clárúcháin Nua",
-	"Enable OneDrive": "",
-	"Enable Web Search": "Cumasaigh Cuardach Gréasáin",
 	"Enabled": "Cumasaithe",
 	"Enabled": "Cumasaithe",
-	"Engine": "Inneall",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Déan cinnte go bhfuil 4 cholún san ord seo i do chomhad CSV: Ainm, Ríomhphost, Pasfhocal, Ról.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Déan cinnte go bhfuil 4 cholún san ord seo i do chomhad CSV: Ainm, Ríomhphost, Pasfhocal, Ról.",
 	"Enter {{role}} message here": "Cuir isteach teachtaireacht {{role}} anseo",
 	"Enter {{role}} message here": "Cuir isteach teachtaireacht {{role}} anseo",
 	"Enter a detail about yourself for your LLMs to recall": "Cuir isteach mionsonraí fút féin chun do LLManna a mheabhrú",
 	"Enter a detail about yourself for your LLMs to recall": "Cuir isteach mionsonraí fút féin chun do LLManna a mheabhrú",
@@ -572,6 +572,7 @@
 	"Input commands": "Orduithe ionchuir",
 	"Input commands": "Orduithe ionchuir",
 	"Install from Github URL": "Suiteáil ó Github URL",
 	"Install from Github URL": "Suiteáil ó Github URL",
 	"Instant Auto-Send After Voice Transcription": "Seoladh Uathoibríoch Láithreach Tar éis",
 	"Instant Auto-Send After Voice Transcription": "Seoladh Uathoibríoch Láithreach Tar éis",
+	"Integration": "",
 	"Interface": "Comhéadan",
 	"Interface": "Comhéadan",
 	"Invalid file format.": "Formáid comhaid neamhbhailí.",
 	"Invalid file format.": "Formáid comhaid neamhbhailí.",
 	"Invalid Tag": "Clib neamhbhailí",
 	"Invalid Tag": "Clib neamhbhailí",
@@ -619,6 +620,7 @@
 	"Listening...": "Éisteacht...",
 	"Listening...": "Éisteacht...",
 	"Llama.cpp": "Llama.cpp",
 	"Llama.cpp": "Llama.cpp",
 	"LLMs can make mistakes. Verify important information.": "Is féidir le LLManna botúin a dhéanamh. Fíoraigh faisnéis thábhachtach.",
 	"LLMs can make mistakes. Verify important information.": "Is féidir le LLManna botúin a dhéanamh. Fíoraigh faisnéis thábhachtach.",
+	"Loader": "",
 	"Loading Kokoro.js...": "",
 	"Loading Kokoro.js...": "",
 	"Local": "Áitiúil",
 	"Local": "Áitiúil",
 	"Local Models": "Múnlaí Áitiúla",
 	"Local Models": "Múnlaí Áitiúla",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "Níor aimsíodh aon ábhar HTML, CSS nó JavaScript.",
 	"No HTML, CSS, or JavaScript content found.": "Níor aimsíodh aon ábhar HTML, CSS nó JavaScript.",
 	"No inference engine with management support found": "Níor aimsíodh aon inneall tátail le tacaíocht bhainistíochta",
 	"No inference engine with management support found": "Níor aimsíodh aon inneall tátail le tacaíocht bhainistíochta",
 	"No knowledge found": "Níor aimsíodh aon eolas",
 	"No knowledge found": "Níor aimsíodh aon eolas",
+	"No memories to clear": "",
 	"No model IDs": "Gan IDanna múnla",
 	"No model IDs": "Gan IDanna múnla",
 	"No models found": "Níor aimsíodh aon mhúnlaí",
 	"No models found": "Níor aimsíodh aon mhúnlaí",
 	"No models selected": "Níor roghnaíodh aon mhúnlaí",
 	"No models selected": "Níor roghnaíodh aon mhúnlaí",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "D'éirigh leis an leid a nuashonrú",
 	"Prompt updated successfully": "D'éirigh leis an leid a nuashonrú",
 	"Prompts": "Leabhair",
 	"Prompts": "Leabhair",
 	"Prompts Access": "Rochtain ar Chuirí",
 	"Prompts Access": "Rochtain ar Chuirí",
-	"Proxy URL": "URL seachfhreastalaí",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Tarraing \"{{searchValue}}\" ó Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Tarraing \"{{searchValue}}\" ó Ollama.com",
 	"Pull a model from Ollama.com": "Tarraing múnla ó Ollama.com",
 	"Pull a model from Ollama.com": "Tarraing múnla ó Ollama.com",
 	"Query Generation Prompt": "Cuirí Ginearáil Ceisteanna",
 	"Query Generation Prompt": "Cuirí Ginearáil Ceisteanna",
-	"Query Params": "Fiosrúcháin Params",
 	"RAG Template": "Teimpléad RAG",
 	"RAG Template": "Teimpléad RAG",
 	"Rating": "Rátáil",
 	"Rating": "Rátáil",
 	"Re-rank models by topic similarity": "Athrangaigh múnlaí de réir cosúlachta topaicí",
 	"Re-rank models by topic similarity": "Athrangaigh múnlaí de réir cosúlachta topaicí",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Ní féidir fógraí freagartha a ghníomhachtú toisc gur diúltaíodh ceadanna an tsuímh Ghréasáin. Tabhair cuairt ar do shocruithe brabhsálaí chun an rochtain riachtanach a dheonú.",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Ní féidir fógraí freagartha a ghníomhachtú toisc gur diúltaíodh ceadanna an tsuímh Ghréasáin. Tabhair cuairt ar do shocruithe brabhsálaí chun an rochtain riachtanach a dheonú.",
 	"Response splitting": "Scoilt freagartha",
 	"Response splitting": "Scoilt freagartha",
 	"Result": "Toradh",
 	"Result": "Toradh",
+	"Retrieval": "",
 	"Retrieval Query Generation": "Aisghabháil Giniúint Ceist",
 	"Retrieval Query Generation": "Aisghabháil Giniúint Ceist",
 	"Rich Text Input for Chat": "Ionchur Saibhir Téacs don Chomhrá",
 	"Rich Text Input for Chat": "Ionchur Saibhir Téacs don Chomhrá",
 	"RK": "RK",
 	"RK": "RK",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Web": "Gréasán",
 	"Web": "Gréasán",
 	"Web API": "API Gréasáin",
 	"Web API": "API Gréasáin",
-	"Web Loader Settings": "Socruithe Luchtaire Gréasáin",
 	"Web Search": "Cuardach Gréasáin",
 	"Web Search": "Cuardach Gréasáin",
 	"Web Search Engine": "Inneall Cuardaigh Gréasáin",
 	"Web Search Engine": "Inneall Cuardaigh Gréasáin",
 	"Web Search in Chat": "Cuardach Gréasáin i gComhrá",
 	"Web Search in Chat": "Cuardach Gréasáin i gComhrá",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "Tá stádas do chuntais ar feitheamh faoi ghníomhachtú.",
 	"Your account status is currently pending activation.": "Tá stádas do chuntais ar feitheamh faoi ghníomhachtú.",
 	"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.": "Rachaidh do ranníocaíocht iomlán go díreach chuig an bhforbróir breiseán; Ní ghlacann Open WebUI aon chéatadán. Mar sin féin, d'fhéadfadh a tháillí féin a bheith ag an ardán maoinithe roghnaithe.",
 	"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.": "Rachaidh do ranníocaíocht iomlán go díreach chuig an bhforbróir breiseán; Ní ghlacann Open WebUI aon chéatadán. Mar sin féin, d'fhéadfadh a tháillí féin a bheith ag an ardán maoinithe roghnaithe.",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
-	"Youtube Loader Settings": "Socruithe Luchtaire Youtube"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/it-IT/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "Archivia tutte le chat",
 	"Archive All Chats": "Archivia tutte le chat",
 	"Archived Chats": "Chat archiviate",
 	"Archived Chats": "Chat archiviate",
 	"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 this channel?": "",
 	"Are you sure you want to delete this channel?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "",
 	"Bocha Search API Key": "",
 	"Brave Search API Key": "Chiave API di ricerca Brave",
 	"Brave Search API Key": "Chiave API di ricerca Brave",
 	"By {{name}}": "",
 	"By {{name}}": "",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "Aggira la verifica SSL per i siti web",
 	"Bypass SSL verification for Websites": "Aggira la verifica SSL per i siti web",
 	"Calendar": "",
 	"Calendar": "",
 	"Call": "",
 	"Call": "",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "Controllo aggiornamenti...",
 	"Checking for updates...": "Controllo aggiornamenti...",
 	"Choose a model before saving...": "Scegli un modello prima di salvare...",
 	"Choose a model before saving...": "Scegli un modello prima di salvare...",
 	"Chunk Overlap": "Sovrapposizione chunk",
 	"Chunk Overlap": "Sovrapposizione chunk",
-	"Chunk Params": "Parametri chunk",
 	"Chunk Size": "Dimensione chunk",
 	"Chunk Size": "Dimensione chunk",
 	"Ciphers": "",
 	"Ciphers": "",
 	"Citation": "Citazione",
 	"Citation": "Citazione",
 	"Clear memory": "",
 	"Clear memory": "",
+	"Clear Memory": "",
 	"click here": "",
 	"click here": "",
 	"Click here for filter guides.": "",
 	"Click here for filter guides.": "",
 	"Click here for help.": "Clicca qui per aiuto.",
 	"Click here for help.": "Clicca qui per aiuto.",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Contact Admin for WebUI Access": "",
 	"Contact Admin for WebUI Access": "",
 	"Content": "Contenuto",
 	"Content": "Contenuto",
-	"Content Extraction": "",
+	"Content Extraction Engine": "",
 	"Context Length": "Lunghezza contesto",
 	"Context Length": "Lunghezza contesto",
 	"Continue Response": "Continua risposta",
 	"Continue Response": "Continua risposta",
 	"Continue with {{provider}}": "",
 	"Continue with {{provider}}": "",
@@ -246,6 +248,7 @@
 	"Current Model": "Modello corrente",
 	"Current Model": "Modello corrente",
 	"Current Password": "Password corrente",
 	"Current Password": "Password corrente",
 	"Custom": "Personalizzato",
 	"Custom": "Personalizzato",
+	"Danger Zone": "",
 	"Dark": "Scuro",
 	"Dark": "Scuro",
 	"Database": "Database",
 	"Database": "Database",
 	"December": "Dicembre",
 	"December": "Dicembre",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "",
 	"ElevenLabs": "",
 	"Email": "Email",
 	"Email": "Email",
 	"Embark on adventures": "",
 	"Embark on adventures": "",
+	"Embedding": "",
 	"Embedding Batch Size": "",
 	"Embedding Batch Size": "",
 	"Embedding Model": "Modello di embedding",
 	"Embedding Model": "Modello di embedding",
 	"Embedding Model Engine": "Motore del modello di embedding",
 	"Embedding Model Engine": "Motore del modello di embedding",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Abilita la condivisione della community",
 	"Enable Community Sharing": "Abilita la condivisione della community",
-	"Enable Google Drive": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Abilita nuove iscrizioni",
 	"Enable New Sign Ups": "Abilita nuove iscrizioni",
-	"Enable OneDrive": "",
-	"Enable Web Search": "Abilita ricerca Web",
 	"Enabled": "",
 	"Enabled": "",
-	"Engine": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Assicurati che il tuo file CSV includa 4 colonne in questo ordine: Nome, Email, Password, Ruolo.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Assicurati che il tuo file CSV includa 4 colonne in questo ordine: Nome, Email, Password, Ruolo.",
 	"Enter {{role}} message here": "Inserisci il messaggio per {{role}} qui",
 	"Enter {{role}} message here": "Inserisci il messaggio per {{role}} qui",
 	"Enter a detail about yourself for your LLMs to recall": "Inserisci un dettaglio su di te per che i LLM possano ricordare",
 	"Enter a detail about yourself for your LLMs to recall": "Inserisci un dettaglio su di te per che i LLM possano ricordare",
@@ -572,6 +572,7 @@
 	"Input commands": "Comandi di input",
 	"Input commands": "Comandi di input",
 	"Install from Github URL": "Eseguire l'installazione dall'URL di Github",
 	"Install from Github URL": "Eseguire l'installazione dall'URL di Github",
 	"Instant Auto-Send After Voice Transcription": "",
 	"Instant Auto-Send After Voice Transcription": "",
+	"Integration": "",
 	"Interface": "Interfaccia",
 	"Interface": "Interfaccia",
 	"Invalid file format.": "",
 	"Invalid file format.": "",
 	"Invalid Tag": "Tag non valido",
 	"Invalid Tag": "Tag non valido",
@@ -619,6 +620,7 @@
 	"Listening...": "",
 	"Listening...": "",
 	"Llama.cpp": "",
 	"Llama.cpp": "",
 	"LLMs can make mistakes. Verify important information.": "Gli LLM possono commettere errori. Verifica le informazioni importanti.",
 	"LLMs can make mistakes. Verify important information.": "Gli LLM possono commettere errori. Verifica le informazioni importanti.",
+	"Loader": "",
 	"Loading Kokoro.js...": "",
 	"Loading Kokoro.js...": "",
 	"Local": "",
 	"Local": "",
 	"Local Models": "",
 	"Local Models": "",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No inference engine with management support found": "",
 	"No inference engine with management support found": "",
 	"No knowledge found": "",
 	"No knowledge found": "",
+	"No memories to clear": "",
 	"No model IDs": "",
 	"No model IDs": "",
 	"No models found": "",
 	"No models found": "",
 	"No models selected": "",
 	"No models selected": "",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "Prompt",
 	"Prompts": "Prompt",
 	"Prompts Access": "",
 	"Prompts Access": "",
-	"Proxy URL": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Estrai \"{{searchValue}}\" da Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Estrai \"{{searchValue}}\" da Ollama.com",
 	"Pull a model from Ollama.com": "Estrai un modello da Ollama.com",
 	"Pull a model from Ollama.com": "Estrai un modello da Ollama.com",
 	"Query Generation Prompt": "",
 	"Query Generation Prompt": "",
-	"Query Params": "Parametri query",
 	"RAG Template": "Modello RAG",
 	"RAG Template": "Modello RAG",
 	"Rating": "",
 	"Rating": "",
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"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 splitting": "",
 	"Result": "",
 	"Result": "",
+	"Retrieval": "",
 	"Retrieval Query Generation": "",
 	"Retrieval Query Generation": "",
 	"Rich Text Input for Chat": "",
 	"Rich Text Input for Chat": "",
 	"RK": "",
 	"RK": "",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Web": "Web",
 	"Web": "Web",
 	"Web API": "",
 	"Web API": "",
-	"Web Loader Settings": "Impostazioni del caricatore Web",
 	"Web Search": "Ricerca sul Web",
 	"Web Search": "Ricerca sul Web",
 	"Web Search Engine": "Motore di ricerca Web",
 	"Web Search Engine": "Motore di ricerca Web",
 	"Web Search in Chat": "",
 	"Web Search in Chat": "",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "",
 	"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.": "",
 	"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.": "",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
-	"Youtube Loader Settings": "Impostazioni del caricatore Youtube"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/ja-JP/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "すべてのチャットをアーカイブする",
 	"Archive All Chats": "すべてのチャットをアーカイブする",
 	"Archived Chats": "チャット記録",
 	"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 this channel?": "",
 	"Are you sure you want to delete this channel?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "",
 	"Bocha Search API Key": "",
 	"Brave Search API Key": "Brave Search APIキー",
 	"Brave Search API Key": "Brave Search APIキー",
 	"By {{name}}": "",
 	"By {{name}}": "",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "SSL 検証をバイパスする",
 	"Bypass SSL verification for Websites": "SSL 検証をバイパスする",
 	"Calendar": "",
 	"Calendar": "",
 	"Call": "コール",
 	"Call": "コール",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "アップデートを確認しています...",
 	"Checking for updates...": "アップデートを確認しています...",
 	"Choose a model before saving...": "保存する前にモデルを選択してください...",
 	"Choose a model before saving...": "保存する前にモデルを選択してください...",
 	"Chunk Overlap": "チャンクオーバーラップ",
 	"Chunk Overlap": "チャンクオーバーラップ",
-	"Chunk Params": "チャンクパラメーター",
 	"Chunk Size": "チャンクサイズ",
 	"Chunk Size": "チャンクサイズ",
 	"Ciphers": "",
 	"Ciphers": "",
 	"Citation": "引用文",
 	"Citation": "引用文",
 	"Clear memory": "メモリをクリア",
 	"Clear memory": "メモリをクリア",
+	"Clear Memory": "",
 	"click here": "",
 	"click here": "",
 	"Click here for filter guides.": "",
 	"Click here for filter guides.": "",
 	"Click here for help.": "ヘルプについてはここをクリックしてください。",
 	"Click here for help.": "ヘルプについてはここをクリックしてください。",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Contact Admin for WebUI Access": "WEBUIへの接続について管理者に問い合わせ下さい。",
 	"Contact Admin for WebUI Access": "WEBUIへの接続について管理者に問い合わせ下さい。",
 	"Content": "コンテンツ",
 	"Content": "コンテンツ",
-	"Content Extraction": "コンテンツ抽出",
+	"Content Extraction Engine": "",
 	"Context Length": "コンテキストの長さ",
 	"Context Length": "コンテキストの長さ",
 	"Continue Response": "続きの応答",
 	"Continue Response": "続きの応答",
 	"Continue with {{provider}}": "",
 	"Continue with {{provider}}": "",
@@ -246,6 +248,7 @@
 	"Current Model": "現在のモデル",
 	"Current Model": "現在のモデル",
 	"Current Password": "現在のパスワード",
 	"Current Password": "現在のパスワード",
 	"Custom": "カスタム",
 	"Custom": "カスタム",
+	"Danger Zone": "",
 	"Dark": "ダーク",
 	"Dark": "ダーク",
 	"Database": "データベース",
 	"Database": "データベース",
 	"December": "12月",
 	"December": "12月",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "",
 	"ElevenLabs": "",
 	"Email": "メールアドレス",
 	"Email": "メールアドレス",
 	"Embark on adventures": "",
 	"Embark on adventures": "",
+	"Embedding": "",
 	"Embedding Batch Size": "埋め込みモデルバッチサイズ",
 	"Embedding Batch Size": "埋め込みモデルバッチサイズ",
 	"Embedding Model": "埋め込みモデル",
 	"Embedding Model": "埋め込みモデル",
 	"Embedding Model Engine": "埋め込みモデルエンジン",
 	"Embedding Model Engine": "埋め込みモデルエンジン",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "コミュニティ共有を有効にする",
 	"Enable Community Sharing": "コミュニティ共有を有効にする",
-	"Enable Google Drive": "Google Driveの有効化",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"Enable Message Rating": "メッセージ評価を有効にする",
 	"Enable Message Rating": "メッセージ評価を有効にする",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "新規登録を有効にする",
 	"Enable New Sign Ups": "新規登録を有効にする",
-	"Enable OneDrive": "",
-	"Enable Web Search": "ウェブ検索を有効にする",
 	"Enabled": "有効",
 	"Enabled": "有効",
-	"Engine": "エンジン",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "CSVファイルに4つの列が含まれていることを確認してください: Name, Email, Password, Role.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "CSVファイルに4つの列が含まれていることを確認してください: Name, Email, Password, Role.",
 	"Enter {{role}} message here": "{{role}} メッセージをここに入力してください",
 	"Enter {{role}} message here": "{{role}} メッセージをここに入力してください",
 	"Enter a detail about yourself for your LLMs to recall": "LLM が記憶するために、自分についての詳細を入力してください",
 	"Enter a detail about yourself for your LLMs to recall": "LLM が記憶するために、自分についての詳細を入力してください",
@@ -572,6 +572,7 @@
 	"Input commands": "入力コマンド",
 	"Input commands": "入力コマンド",
 	"Install from Github URL": "Github URLからインストール",
 	"Install from Github URL": "Github URLからインストール",
 	"Instant Auto-Send After Voice Transcription": "",
 	"Instant Auto-Send After Voice Transcription": "",
+	"Integration": "",
 	"Interface": "インターフェース",
 	"Interface": "インターフェース",
 	"Invalid file format.": "",
 	"Invalid file format.": "",
 	"Invalid Tag": "無効なタグ",
 	"Invalid Tag": "無効なタグ",
@@ -619,6 +620,7 @@
 	"Listening...": "",
 	"Listening...": "",
 	"Llama.cpp": "",
 	"Llama.cpp": "",
 	"LLMs can make mistakes. Verify important information.": "LLM は間違いを犯す可能性があります。重要な情報を検証してください。",
 	"LLMs can make mistakes. Verify important information.": "LLM は間違いを犯す可能性があります。重要な情報を検証してください。",
+	"Loader": "",
 	"Loading Kokoro.js...": "",
 	"Loading Kokoro.js...": "",
 	"Local": "",
 	"Local": "",
 	"Local Models": "ローカルモデル",
 	"Local Models": "ローカルモデル",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No inference engine with management support found": "",
 	"No inference engine with management support found": "",
 	"No knowledge found": "ナレッジベースが見つかりません",
 	"No knowledge found": "ナレッジベースが見つかりません",
+	"No memories to clear": "",
 	"No model IDs": "",
 	"No model IDs": "",
 	"No models found": "",
 	"No models found": "",
 	"No models selected": "",
 	"No models selected": "",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "プロンプト",
 	"Prompts": "プロンプト",
 	"Prompts Access": "",
 	"Prompts Access": "",
-	"Proxy URL": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com から \"{{searchValue}}\" をプル",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com から \"{{searchValue}}\" をプル",
 	"Pull a model from Ollama.com": "Ollama.com からモデルをプル",
 	"Pull a model from Ollama.com": "Ollama.com からモデルをプル",
 	"Query Generation Prompt": "",
 	"Query Generation Prompt": "",
-	"Query Params": "クエリパラメーター",
 	"RAG Template": "RAG テンプレート",
 	"RAG Template": "RAG テンプレート",
 	"Rating": "",
 	"Rating": "",
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"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 splitting": "応答の分割",
 	"Result": "",
 	"Result": "",
+	"Retrieval": "",
 	"Retrieval Query Generation": "",
 	"Retrieval Query Generation": "",
 	"Rich Text Input for Chat": "",
 	"Rich Text Input for Chat": "",
 	"RK": "",
 	"RK": "",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Web": "ウェブ",
 	"Web": "ウェブ",
 	"Web API": "ウェブAPI",
 	"Web API": "ウェブAPI",
-	"Web Loader Settings": "Web 読み込み設定",
 	"Web Search": "ウェブ検索",
 	"Web Search": "ウェブ検索",
 	"Web Search Engine": "ウェブ検索エンジン",
 	"Web Search Engine": "ウェブ検索エンジン",
 	"Web Search in Chat": "",
 	"Web Search in Chat": "",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "あなたのアカウント状態は現在登録認証待ちです。",
 	"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.": "",
 	"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.": "",
 	"Youtube": "YouTube",
 	"Youtube": "YouTube",
-	"Youtube Loader Settings": "YouTubeローダー設定(日本語はja)"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/ka-GE/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "ყველა ჩატის დაარქივება",
 	"Archive All Chats": "ყველა ჩატის დაარქივება",
 	"Archived Chats": "დაარქივებული ჩატები",
 	"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 this channel?": "",
 	"Are you sure you want to delete this channel?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "",
 	"Bocha Search API Key": "",
 	"Brave Search API Key": "Brave Search API-ის გასაღები",
 	"Brave Search API Key": "Brave Search API-ის გასაღები",
 	"By {{name}}": "ავტორი {{name}}",
 	"By {{name}}": "ავტორი {{name}}",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "SSL-ის ვერიფიკაციის გააუქმება ვებსაიტებზე",
 	"Bypass SSL verification for Websites": "SSL-ის ვერიფიკაციის გააუქმება ვებსაიტებზე",
 	"Calendar": "კალენდარი",
 	"Calendar": "კალენდარი",
 	"Call": "ზარი",
 	"Call": "ზარი",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "განახლებების შემოწმება...",
 	"Checking for updates...": "განახლებების შემოწმება...",
 	"Choose a model before saving...": "აირჩიეთ მოდელი შენახვამდე...",
 	"Choose a model before saving...": "აირჩიეთ მოდელი შენახვამდე...",
 	"Chunk Overlap": "ფრაგმენტის გადაფარვა",
 	"Chunk Overlap": "ფრაგმენტის გადაფარვა",
-	"Chunk Params": "ფრაგმენტის პარამეტრები",
 	"Chunk Size": "ფრაგმენტის ზომა",
 	"Chunk Size": "ფრაგმენტის ზომა",
 	"Ciphers": "",
 	"Ciphers": "",
 	"Citation": "ციტატა",
 	"Citation": "ციტატა",
 	"Clear memory": "",
 	"Clear memory": "",
+	"Clear Memory": "",
 	"click here": "აქ დააწკაპუნეთ",
 	"click here": "აქ დააწკაპუნეთ",
 	"Click here for filter guides.": "",
 	"Click here for filter guides.": "",
 	"Click here for help.": "დახმარებისთვის დააწკაპუნეთ აქ.",
 	"Click here for help.": "დახმარებისთვის დააწკაპუნეთ აქ.",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Contact Admin for WebUI Access": "",
 	"Contact Admin for WebUI Access": "",
 	"Content": "შემცველობა",
 	"Content": "შემცველობა",
-	"Content Extraction": "",
+	"Content Extraction Engine": "",
 	"Context Length": "კონტექსტის სიგრძე",
 	"Context Length": "კონტექსტის სიგრძე",
 	"Continue Response": "პასუხის გაგრძელება",
 	"Continue Response": "პასუხის გაგრძელება",
 	"Continue with {{provider}}": "",
 	"Continue with {{provider}}": "",
@@ -246,6 +248,7 @@
 	"Current Model": "მიმდინარე მოდელი",
 	"Current Model": "მიმდინარე მოდელი",
 	"Current Password": "მიმდინარე პაროლი",
 	"Current Password": "მიმდინარე პაროლი",
 	"Custom": "ხელით",
 	"Custom": "ხელით",
+	"Danger Zone": "",
 	"Dark": "მუქი",
 	"Dark": "მუქი",
 	"Database": "მონაცემთა ბაზა",
 	"Database": "მონაცემთა ბაზა",
 	"December": "დეკემბერი",
 	"December": "დეკემბერი",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "ElevenLabs",
 	"ElevenLabs": "ElevenLabs",
 	"Email": "ელფოსტა",
 	"Email": "ელფოსტა",
 	"Embark on adventures": "",
 	"Embark on adventures": "",
+	"Embedding": "",
 	"Embedding Batch Size": "",
 	"Embedding Batch Size": "",
 	"Embedding Model": "მოდელის ჩაშენება",
 	"Embedding Model": "მოდელის ჩაშენება",
 	"Embedding Model Engine": "ჩაშენებული მოდელის ძრავა",
 	"Embedding Model Engine": "ჩაშენებული მოდელის ძრავა",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "საზოგადოების გაზიარების ჩართვა",
 	"Enable Community Sharing": "საზოგადოების გაზიარების ჩართვა",
-	"Enable Google Drive": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "ახალი რეგისტრაციების ჩართვა",
 	"Enable New Sign Ups": "ახალი რეგისტრაციების ჩართვა",
-	"Enable OneDrive": "",
-	"Enable Web Search": "ვებ ძიების ჩართვა",
 	"Enabled": "ჩართულია",
 	"Enabled": "ჩართულია",
-	"Engine": "ძრავი",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "დარწმუნდით, რომ თქვენი CSV-ფაილი შეიცავს 4 ველს ამ მიმდევრობით: სახელი, ელფოსტა, პაროლი, როლი.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "დარწმუნდით, რომ თქვენი CSV-ფაილი შეიცავს 4 ველს ამ მიმდევრობით: სახელი, ელფოსტა, პაროლი, როლი.",
 	"Enter {{role}} message here": "შეიყვანე {{role}} შეტყობინება აქ",
 	"Enter {{role}} message here": "შეიყვანე {{role}} შეტყობინება აქ",
 	"Enter a detail about yourself for your LLMs to recall": "შეიყვანეთ რამე თქვენს შესახებ, რომ თქვენმა LLM-მა გაიხსენოს",
 	"Enter a detail about yourself for your LLMs to recall": "შეიყვანეთ რამე თქვენს შესახებ, რომ თქვენმა LLM-მა გაიხსენოს",
@@ -572,6 +572,7 @@
 	"Input commands": "შეიყვანეთ ბრძანებები",
 	"Input commands": "შეიყვანეთ ბრძანებები",
 	"Install from Github URL": "დაყენება Github-ის ბმულიდან",
 	"Install from Github URL": "დაყენება Github-ის ბმულიდან",
 	"Instant Auto-Send After Voice Transcription": "",
 	"Instant Auto-Send After Voice Transcription": "",
+	"Integration": "",
 	"Interface": "ინტერფეისი",
 	"Interface": "ინტერფეისი",
 	"Invalid file format.": "არასწორი ფაილის ფორმატი.",
 	"Invalid file format.": "არასწორი ფაილის ფორმატი.",
 	"Invalid Tag": "არასწორი ჭდე",
 	"Invalid Tag": "არასწორი ჭდე",
@@ -619,6 +620,7 @@
 	"Listening...": "",
 	"Listening...": "",
 	"Llama.cpp": "Llama.cpp",
 	"Llama.cpp": "Llama.cpp",
 	"LLMs can make mistakes. Verify important information.": "LLM-ებმა, შეიძლება, შეცდომები დაუშვან. გადაამოწმეთ მნიშვნელოვანი ინფორმაცია.",
 	"LLMs can make mistakes. Verify important information.": "LLM-ებმა, შეიძლება, შეცდომები დაუშვან. გადაამოწმეთ მნიშვნელოვანი ინფორმაცია.",
+	"Loader": "",
 	"Loading Kokoro.js...": "",
 	"Loading Kokoro.js...": "",
 	"Local": "ლოკალური",
 	"Local": "ლოკალური",
 	"Local Models": "ლოკალური მოდელები",
 	"Local Models": "ლოკალური მოდელები",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No inference engine with management support found": "",
 	"No inference engine with management support found": "",
 	"No knowledge found": "",
 	"No knowledge found": "",
+	"No memories to clear": "",
 	"No model IDs": "მოდელის ID-ების გარეშე",
 	"No model IDs": "მოდელის ID-ების გარეშე",
 	"No models found": "მოდელები აღმოჩენილი არაა",
 	"No models found": "მოდელები აღმოჩენილი არაა",
 	"No models selected": "მოდელები არჩეული არაა",
 	"No models selected": "მოდელები არჩეული არაა",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "მოთხოვნები",
 	"Prompts": "მოთხოვნები",
 	"Prompts Access": "",
 	"Prompts Access": "",
-	"Proxy URL": "პროქსის URL",
 	"Pull \"{{searchValue}}\" from Ollama.com": "\"{{searchValue}}\"-ის გადმოწერა Ollama.com-იდან",
 	"Pull \"{{searchValue}}\" from Ollama.com": "\"{{searchValue}}\"-ის გადმოწერა Ollama.com-იდან",
 	"Pull a model from Ollama.com": "მოდელის გადმოწერა Ollama.com-დან",
 	"Pull a model from Ollama.com": "მოდელის გადმოწერა Ollama.com-დან",
 	"Query Generation Prompt": "",
 	"Query Generation Prompt": "",
-	"Query Params": "პარამეტრების მოთხოვნა",
 	"RAG Template": "RAG შაბლონი",
 	"RAG Template": "RAG შაბლონი",
 	"Rating": "ხმის მიცემა",
 	"Rating": "ხმის მიცემა",
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"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 splitting": "",
 	"Result": "შედეგი",
 	"Result": "შედეგი",
+	"Retrieval": "",
 	"Retrieval Query Generation": "",
 	"Retrieval Query Generation": "",
 	"Rich Text Input for Chat": "",
 	"Rich Text Input for Chat": "",
 	"RK": "RK",
 	"RK": "RK",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Web": "ვები",
 	"Web": "ვები",
 	"Web API": "",
 	"Web API": "",
-	"Web Loader Settings": "ვებჩამტვირთავის მორგება",
 	"Web Search": "ვებში ძებნა",
 	"Web Search": "ვებში ძებნა",
 	"Web Search Engine": "ვებ საძიებო სისტემა",
 	"Web Search Engine": "ვებ საძიებო სისტემა",
 	"Web Search in Chat": "",
 	"Web Search in Chat": "",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "",
 	"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.": "",
 	"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.": "",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
-	"Youtube Loader Settings": "Youtube Loader Settings"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/ko-KR/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "모든 채팅 보관",
 	"Archive All Chats": "모든 채팅 보관",
 	"Archived Chats": "보관된 채팅",
 	"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 this channel?": "정말 이 채널을 삭제하시겠습니까?",
 	"Are you sure you want to delete this channel?": "정말 이 채널을 삭제하시겠습니까?",
 	"Are you sure you want to delete this message?": "정말 이 메세지를 삭제하시겠습니까?",
 	"Are you sure you want to delete this message?": "정말 이 메세지를 삭제하시겠습니까?",
 	"Are you sure you want to unarchive all archived chats?": "정말 보관된 모든 채팅을 보관 해제하시겠습니까?",
 	"Are you sure you want to unarchive all archived chats?": "정말 보관된 모든 채팅을 보관 해제하시겠습니까?",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "",
 	"Bocha Search API Key": "",
 	"Brave Search API Key": "Brave Search API 키",
 	"Brave Search API Key": "Brave Search API 키",
 	"By {{name}}": "",
 	"By {{name}}": "",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "웹 사이트에 대한 SSL 검증 무시: ",
 	"Bypass SSL verification for Websites": "웹 사이트에 대한 SSL 검증 무시: ",
 	"Calendar": "",
 	"Calendar": "",
 	"Call": "음성 기능",
 	"Call": "음성 기능",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "업데이트 확인중...",
 	"Checking for updates...": "업데이트 확인중...",
 	"Choose a model before saving...": "저장하기 전에 모델을 선택하세요...",
 	"Choose a model before saving...": "저장하기 전에 모델을 선택하세요...",
 	"Chunk Overlap": "Chunk 오버랩",
 	"Chunk Overlap": "Chunk 오버랩",
-	"Chunk Params": "Chunk 매개변수",
 	"Chunk Size": "Chunk 크기",
 	"Chunk Size": "Chunk 크기",
 	"Ciphers": "",
 	"Ciphers": "",
 	"Citation": "인용",
 	"Citation": "인용",
 	"Clear memory": "메모리 초기화",
 	"Clear memory": "메모리 초기화",
+	"Clear Memory": "",
 	"click here": "",
 	"click here": "",
 	"Click here for filter guides.": "",
 	"Click here for filter guides.": "",
 	"Click here for help.": "도움말을 보려면 여기를 클릭하세요.",
 	"Click here for help.": "도움말을 보려면 여기를 클릭하세요.",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Contact Admin for WebUI Access": "WebUI 접속을 위해서는 관리자에게 연락에 연락하십시오",
 	"Contact Admin for WebUI Access": "WebUI 접속을 위해서는 관리자에게 연락에 연락하십시오",
 	"Content": "내용",
 	"Content": "내용",
-	"Content Extraction": "내용 추출",
+	"Content Extraction Engine": "",
 	"Context Length": "내용 길이",
 	"Context Length": "내용 길이",
 	"Continue Response": "대화 계속",
 	"Continue Response": "대화 계속",
 	"Continue with {{provider}}": "{{provider}}로 계속",
 	"Continue with {{provider}}": "{{provider}}로 계속",
@@ -246,6 +248,7 @@
 	"Current Model": "현재 모델",
 	"Current Model": "현재 모델",
 	"Current Password": "현재 비밀번호",
 	"Current Password": "현재 비밀번호",
 	"Custom": "사용자 정의",
 	"Custom": "사용자 정의",
+	"Danger Zone": "",
 	"Dark": "다크",
 	"Dark": "다크",
 	"Database": "데이터베이스",
 	"Database": "데이터베이스",
 	"December": "12월",
 	"December": "12월",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "ElevenLabs",
 	"ElevenLabs": "ElevenLabs",
 	"Email": "이메일",
 	"Email": "이메일",
 	"Embark on adventures": "",
 	"Embark on adventures": "",
+	"Embedding": "",
 	"Embedding Batch Size": "임베딩 배치 크기",
 	"Embedding Batch Size": "임베딩 배치 크기",
 	"Embedding Model": "임베딩 모델",
 	"Embedding Model": "임베딩 모델",
 	"Embedding Model Engine": "임베딩 모델 엔진",
 	"Embedding Model Engine": "임베딩 모델 엔진",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "커뮤니티 공유 활성화",
 	"Enable Community Sharing": "커뮤니티 공유 활성화",
-	"Enable Google Drive": "Google Drive 활성화",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"Enable Message Rating": "메시지 평가 활성화",
 	"Enable Message Rating": "메시지 평가 활성화",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "새 회원가입 활성화",
 	"Enable New Sign Ups": "새 회원가입 활성화",
-	"Enable OneDrive": "",
-	"Enable Web Search": "웹 검색 활성화",
 	"Enabled": "활성화됨",
 	"Enabled": "활성화됨",
-	"Engine": "엔진",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "CSV 파일에 이름, 이메일, 비밀번호, 역할 4개의 열이 순서대로 포함되어 있는지 확인하세요.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "CSV 파일에 이름, 이메일, 비밀번호, 역할 4개의 열이 순서대로 포함되어 있는지 확인하세요.",
 	"Enter {{role}} message here": "여기에 {{role}} 메시지 입력",
 	"Enter {{role}} message here": "여기에 {{role}} 메시지 입력",
 	"Enter a detail about yourself for your LLMs to recall": "자신에 대한 세부사항을 입력하여 LLM들이 기억할 수 있도록 하세요.",
 	"Enter a detail about yourself for your LLMs to recall": "자신에 대한 세부사항을 입력하여 LLM들이 기억할 수 있도록 하세요.",
@@ -572,6 +572,7 @@
 	"Input commands": "명령어 입력",
 	"Input commands": "명령어 입력",
 	"Install from Github URL": "Github URL에서 설치",
 	"Install from Github URL": "Github URL에서 설치",
 	"Instant Auto-Send After Voice Transcription": "음성 변환 후 즉시 자동 전송",
 	"Instant Auto-Send After Voice Transcription": "음성 변환 후 즉시 자동 전송",
+	"Integration": "",
 	"Interface": "인터페이스",
 	"Interface": "인터페이스",
 	"Invalid file format.": "잘못된 파일 형식",
 	"Invalid file format.": "잘못된 파일 형식",
 	"Invalid Tag": "잘못된 태그",
 	"Invalid Tag": "잘못된 태그",
@@ -619,6 +620,7 @@
 	"Listening...": "듣는 중...",
 	"Listening...": "듣는 중...",
 	"Llama.cpp": "",
 	"Llama.cpp": "",
 	"LLMs can make mistakes. Verify important information.": "LLM에 오류가 있을 수 있습니다. 중요한 정보는 확인이 필요합니다.",
 	"LLMs can make mistakes. Verify important information.": "LLM에 오류가 있을 수 있습니다. 중요한 정보는 확인이 필요합니다.",
+	"Loader": "",
 	"Loading Kokoro.js...": "",
 	"Loading Kokoro.js...": "",
 	"Local": "",
 	"Local": "",
 	"Local Models": "로컬 모델",
 	"Local Models": "로컬 모델",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "HTML, CSS, JavaScript이 발견되지 않음",
 	"No HTML, CSS, or JavaScript content found.": "HTML, CSS, JavaScript이 발견되지 않음",
 	"No inference engine with management support found": "",
 	"No inference engine with management support found": "",
 	"No knowledge found": "지식 기반 없음",
 	"No knowledge found": "지식 기반 없음",
+	"No memories to clear": "",
 	"No model IDs": "",
 	"No model IDs": "",
 	"No models found": "모델 없음",
 	"No models found": "모델 없음",
 	"No models selected": "",
 	"No models selected": "",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "성공적으로 프롬프트를 수정했습니다",
 	"Prompt updated successfully": "성공적으로 프롬프트를 수정했습니다",
 	"Prompts": "프롬프트",
 	"Prompts": "프롬프트",
 	"Prompts Access": "프롬프트 접근",
 	"Prompts Access": "프롬프트 접근",
-	"Proxy URL": "프록시 URL",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com에서 \"{{searchValue}}\" 가져오기",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com에서 \"{{searchValue}}\" 가져오기",
 	"Pull a model from Ollama.com": "Ollama.com에서 모델 가져오기(pull)",
 	"Pull a model from Ollama.com": "Ollama.com에서 모델 가져오기(pull)",
 	"Query Generation Prompt": "",
 	"Query Generation Prompt": "",
-	"Query Params": "쿼리 파라미터",
 	"RAG Template": "RAG 템플릿",
 	"RAG Template": "RAG 템플릿",
 	"Rating": "평가",
 	"Rating": "평가",
 	"Re-rank models by topic similarity": "주제 유사성으로 모델을 재정렬하기",
 	"Re-rank models by topic similarity": "주제 유사성으로 모델을 재정렬하기",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "웹사이트 권환과 같이 응답 알림이 활성화될 수 없습니다. 필요한 접근을 사용하기 위해 브라우져 설정을 확인 부탁드립니다.",
 	"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 splitting": "응답 나누기",
 	"Result": "결과",
 	"Result": "결과",
+	"Retrieval": "",
 	"Retrieval Query Generation": "",
 	"Retrieval Query Generation": "",
 	"Rich Text Input for Chat": "채팅을 위한 풍부한 텍스트(Rich Text) 입력",
 	"Rich Text Input for Chat": "채팅을 위한 풍부한 텍스트(Rich Text) 입력",
 	"RK": "RK",
 	"RK": "RK",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Web": "웹",
 	"Web": "웹",
 	"Web API": "웹 API",
 	"Web API": "웹 API",
-	"Web Loader Settings": "웹 로더 설정",
 	"Web Search": "웹 검색",
 	"Web Search": "웹 검색",
 	"Web Search Engine": "웹 검색 엔진",
 	"Web Search Engine": "웹 검색 엔진",
 	"Web Search in Chat": "",
 	"Web Search in Chat": "",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "현재 계정은 아직 활성화되지 않았습니다.",
 	"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는 일절 가져가지 않습니다 하지만, 선택한 후원 플랫폼은 수수료를 가져갈 수 있습니다.",
 	"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 Loader Settings": "유튜브 로더 설정"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/lt-LT/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "Archyvuoti visus pokalbius",
 	"Archive All Chats": "Archyvuoti visus pokalbius",
 	"Archived Chats": "Archyvuoti pokalbiai",
 	"Archived Chats": "Archyvuoti pokalbiai",
 	"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 this channel?": "",
 	"Are you sure you want to delete this channel?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "",
 	"Bocha Search API Key": "",
 	"Brave Search API Key": "Brave Search API raktas",
 	"Brave Search API Key": "Brave Search API raktas",
 	"By {{name}}": "",
 	"By {{name}}": "",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "Išvengti SSL patikros puslapiams",
 	"Bypass SSL verification for Websites": "Išvengti SSL patikros puslapiams",
 	"Calendar": "",
 	"Calendar": "",
 	"Call": "Skambinti",
 	"Call": "Skambinti",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "Ieškoma atnaujinimų...",
 	"Checking for updates...": "Ieškoma atnaujinimų...",
 	"Choose a model before saving...": "Pasirinkite modelį prieš išsaugant...",
 	"Choose a model before saving...": "Pasirinkite modelį prieš išsaugant...",
 	"Chunk Overlap": "Blokų persidengimas",
 	"Chunk Overlap": "Blokų persidengimas",
-	"Chunk Params": "Blokų nustatymai",
 	"Chunk Size": "Blokų dydis",
 	"Chunk Size": "Blokų dydis",
 	"Ciphers": "",
 	"Ciphers": "",
 	"Citation": "Citata",
 	"Citation": "Citata",
 	"Clear memory": "Ištrinti atmintį",
 	"Clear memory": "Ištrinti atmintį",
+	"Clear Memory": "",
 	"click here": "",
 	"click here": "",
 	"Click here for filter guides.": "",
 	"Click here for filter guides.": "",
 	"Click here for help.": "Paspauskite čia dėl pagalbos.",
 	"Click here for help.": "Paspauskite čia dėl pagalbos.",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Contact Admin for WebUI Access": "Susisiekite su administratoriumi dėl prieigos",
 	"Contact Admin for WebUI Access": "Susisiekite su administratoriumi dėl prieigos",
 	"Content": "Turinys",
 	"Content": "Turinys",
-	"Content Extraction": "Turinio ištraukimas",
+	"Content Extraction Engine": "",
 	"Context Length": "Konteksto ilgis",
 	"Context Length": "Konteksto ilgis",
 	"Continue Response": "Tęsti atsakymą",
 	"Continue Response": "Tęsti atsakymą",
 	"Continue with {{provider}}": "Tęstti su {{tiekėju}}",
 	"Continue with {{provider}}": "Tęstti su {{tiekėju}}",
@@ -246,6 +248,7 @@
 	"Current Model": "Dabartinis modelis",
 	"Current Model": "Dabartinis modelis",
 	"Current Password": "Esamas slaptažodis",
 	"Current Password": "Esamas slaptažodis",
 	"Custom": "Personalizuota",
 	"Custom": "Personalizuota",
+	"Danger Zone": "",
 	"Dark": "Tamsus",
 	"Dark": "Tamsus",
 	"Database": "Duomenų bazė",
 	"Database": "Duomenų bazė",
 	"December": "Gruodis",
 	"December": "Gruodis",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "ElevenLabs",
 	"ElevenLabs": "ElevenLabs",
 	"Email": "El. paštas",
 	"Email": "El. paštas",
 	"Embark on adventures": "",
 	"Embark on adventures": "",
+	"Embedding": "",
 	"Embedding Batch Size": "Embedding dydis",
 	"Embedding Batch Size": "Embedding dydis",
 	"Embedding Model": "Embedding modelis",
 	"Embedding Model": "Embedding modelis",
 	"Embedding Model Engine": "Embedding modelio variklis",
 	"Embedding Model Engine": "Embedding modelio variklis",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Leisti dalinimąsi su bendruomene",
 	"Enable Community Sharing": "Leisti dalinimąsi su bendruomene",
-	"Enable Google Drive": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Aktyvuoti naujas registracijas",
 	"Enable New Sign Ups": "Aktyvuoti naujas registracijas",
-	"Enable OneDrive": "",
-	"Enable Web Search": "Leisti paiešką internete",
 	"Enabled": "Leisti",
 	"Enabled": "Leisti",
-	"Engine": "Variklis",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Įsitikinkite, kad CSV failas turi 4 kolonas šiuo eiliškumu: Name, Email, Password, Role.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Įsitikinkite, kad CSV failas turi 4 kolonas šiuo eiliškumu: Name, Email, Password, Role.",
 	"Enter {{role}} message here": "Įveskite {{role}} žinutę čia",
 	"Enter {{role}} message here": "Įveskite {{role}} žinutę čia",
 	"Enter a detail about yourself for your LLMs to recall": "Įveskite informaciją apie save jūsų modelio atminčiai",
 	"Enter a detail about yourself for your LLMs to recall": "Įveskite informaciją apie save jūsų modelio atminčiai",
@@ -572,6 +572,7 @@
 	"Input commands": "Įvesties komandos",
 	"Input commands": "Įvesties komandos",
 	"Install from Github URL": "Instaliuoti Github nuorodą",
 	"Install from Github URL": "Instaliuoti Github nuorodą",
 	"Instant Auto-Send After Voice Transcription": "Siųsti iškart po balso transkripcijos",
 	"Instant Auto-Send After Voice Transcription": "Siųsti iškart po balso transkripcijos",
+	"Integration": "",
 	"Interface": "Sąsaja",
 	"Interface": "Sąsaja",
 	"Invalid file format.": "",
 	"Invalid file format.": "",
 	"Invalid Tag": "Neteisinga žyma",
 	"Invalid Tag": "Neteisinga žyma",
@@ -619,6 +620,7 @@
 	"Listening...": "Klausoma...",
 	"Listening...": "Klausoma...",
 	"Llama.cpp": "",
 	"Llama.cpp": "",
 	"LLMs can make mistakes. Verify important information.": "Dideli kalbos modeliai gali klysti. Patikrinkite atsakymų teisingumą.",
 	"LLMs can make mistakes. Verify important information.": "Dideli kalbos modeliai gali klysti. Patikrinkite atsakymų teisingumą.",
+	"Loader": "",
 	"Loading Kokoro.js...": "",
 	"Loading Kokoro.js...": "",
 	"Local": "",
 	"Local": "",
 	"Local Models": "Lokalūs modeliai",
 	"Local Models": "Lokalūs modeliai",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No inference engine with management support found": "",
 	"No inference engine with management support found": "",
 	"No knowledge found": "",
 	"No knowledge found": "",
+	"No memories to clear": "",
 	"No model IDs": "",
 	"No model IDs": "",
 	"No models found": "",
 	"No models found": "",
 	"No models selected": "",
 	"No models selected": "",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "Užklausos",
 	"Prompts": "Užklausos",
 	"Prompts Access": "",
 	"Prompts Access": "",
-	"Proxy URL": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Rasti \"{{searchValue}}\" iš Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Rasti \"{{searchValue}}\" iš Ollama.com",
 	"Pull a model from Ollama.com": "Gauti modelį iš Ollama.com",
 	"Pull a model from Ollama.com": "Gauti modelį iš Ollama.com",
 	"Query Generation Prompt": "",
 	"Query Generation Prompt": "",
-	"Query Params": "Užklausos parametrai",
 	"RAG Template": "RAG šablonas",
 	"RAG Template": "RAG šablonas",
 	"Rating": "",
 	"Rating": "",
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Naršyklė neleidžia siųsti pranešimų",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Naršyklė neleidžia siųsti pranešimų",
 	"Response splitting": "",
 	"Response splitting": "",
 	"Result": "",
 	"Result": "",
+	"Retrieval": "",
 	"Retrieval Query Generation": "",
 	"Retrieval Query Generation": "",
 	"Rich Text Input for Chat": "",
 	"Rich Text Input for Chat": "",
 	"RK": "",
 	"RK": "",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Web": "Web",
 	"Web": "Web",
 	"Web API": "Web API",
 	"Web API": "Web API",
-	"Web Loader Settings": "Web krovimo nustatymai",
 	"Web Search": "Web paieška",
 	"Web Search": "Web paieška",
 	"Web Search Engine": "Web paieškos variklis",
 	"Web Search Engine": "Web paieškos variklis",
 	"Web Search in Chat": "",
 	"Web Search in Chat": "",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "Jūsų paskyra laukia administratoriaus patvirtinimo.",
 	"Your account status is currently pending activation.": "Jūsų paskyra laukia administratoriaus patvirtinimo.",
 	"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.": "Jūsų finansinis prisidėjimas tiesiogiai keliaus modulio kūrėjui.",
 	"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.": "Jūsų finansinis prisidėjimas tiesiogiai keliaus modulio kūrėjui.",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
-	"Youtube Loader Settings": "Youtube krovimo nustatymai"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/ms-MY/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "Arkibkan Semua Perbualan",
 	"Archive All Chats": "Arkibkan Semua Perbualan",
 	"Archived Chats": "Perbualan yang diarkibkan",
 	"Archived Chats": "Perbualan yang diarkibkan",
 	"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 this channel?": "",
 	"Are you sure you want to delete this channel?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "",
 	"Bocha Search API Key": "",
 	"Brave Search API Key": "Kunci API Carian Brave",
 	"Brave Search API Key": "Kunci API Carian Brave",
 	"By {{name}}": "",
 	"By {{name}}": "",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "Pintas pengesahan SSL untuk Laman Web",
 	"Bypass SSL verification for Websites": "Pintas pengesahan SSL untuk Laman Web",
 	"Calendar": "",
 	"Calendar": "",
 	"Call": "Hubungi",
 	"Call": "Hubungi",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "Kemas kini sedang disemak",
 	"Checking for updates...": "Kemas kini sedang disemak",
 	"Choose a model before saving...": "Pilih model sebelum menyimpan",
 	"Choose a model before saving...": "Pilih model sebelum menyimpan",
 	"Chunk Overlap": "Tindihan 'Çhunk'",
 	"Chunk Overlap": "Tindihan 'Çhunk'",
-	"Chunk Params": "Parameter 'Çhunk'",
 	"Chunk Size": "Saiz 'Chunk'",
 	"Chunk Size": "Saiz 'Chunk'",
 	"Ciphers": "",
 	"Ciphers": "",
 	"Citation": "Petikan",
 	"Citation": "Petikan",
 	"Clear memory": "Kosongkan memori",
 	"Clear memory": "Kosongkan memori",
+	"Clear Memory": "",
 	"click here": "",
 	"click here": "",
 	"Click here for filter guides.": "",
 	"Click here for filter guides.": "",
 	"Click here for help.": "Klik disini untuk mendapatkan bantuan",
 	"Click here for help.": "Klik disini untuk mendapatkan bantuan",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Contact Admin for WebUI Access": "Hubungi admin untuk akses WebUI",
 	"Contact Admin for WebUI Access": "Hubungi admin untuk akses WebUI",
 	"Content": "Kandungan",
 	"Content": "Kandungan",
-	"Content Extraction": "Pengekstrakan Kandungan",
+	"Content Extraction Engine": "",
 	"Context Length": "Panjang Konteks",
 	"Context Length": "Panjang Konteks",
 	"Continue Response": "Teruskan Respons",
 	"Continue Response": "Teruskan Respons",
 	"Continue with {{provider}}": "Teruskan dengan {{provider}}",
 	"Continue with {{provider}}": "Teruskan dengan {{provider}}",
@@ -246,6 +248,7 @@
 	"Current Model": "Model Semasa",
 	"Current Model": "Model Semasa",
 	"Current Password": "Kata laluan semasa",
 	"Current Password": "Kata laluan semasa",
 	"Custom": "Tersuai",
 	"Custom": "Tersuai",
+	"Danger Zone": "",
 	"Dark": "Gelap",
 	"Dark": "Gelap",
 	"Database": "Pangkalan Data",
 	"Database": "Pangkalan Data",
 	"December": "Disember",
 	"December": "Disember",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "ElevenLabs",
 	"ElevenLabs": "ElevenLabs",
 	"Email": "E-mel",
 	"Email": "E-mel",
 	"Embark on adventures": "",
 	"Embark on adventures": "",
+	"Embedding": "",
 	"Embedding Batch Size": "Membenamkan Saiz Kelompok",
 	"Embedding Batch Size": "Membenamkan Saiz Kelompok",
 	"Embedding Model": "Model Benamkan",
 	"Embedding Model": "Model Benamkan",
 	"Embedding Model Engine": "Enjin Model Benamkan",
 	"Embedding Model Engine": "Enjin Model Benamkan",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Benarkan Perkongsian Komuniti",
 	"Enable Community Sharing": "Benarkan Perkongsian Komuniti",
-	"Enable Google Drive": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Benarkan Pendaftaran Baharu",
 	"Enable New Sign Ups": "Benarkan Pendaftaran Baharu",
-	"Enable OneDrive": "",
-	"Enable Web Search": "Benarkan Carian Web",
 	"Enabled": "Dibenarkan",
 	"Enabled": "Dibenarkan",
-	"Engine": "Enjin",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "astikan fail CSV anda mengandungi 4 lajur dalam susunan ini: Nama, E-mel, Kata Laluan, Peranan.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "astikan fail CSV anda mengandungi 4 lajur dalam susunan ini: Nama, E-mel, Kata Laluan, Peranan.",
 	"Enter {{role}} message here": "Masukkan mesej {{role}} di sini",
 	"Enter {{role}} message here": "Masukkan mesej {{role}} di sini",
 	"Enter a detail about yourself for your LLMs to recall": "Masukkan butiran tentang diri anda untuk diingati oleh LLM anda",
 	"Enter a detail about yourself for your LLMs to recall": "Masukkan butiran tentang diri anda untuk diingati oleh LLM anda",
@@ -572,6 +572,7 @@
 	"Input commands": "Masukkan Arahan",
 	"Input commands": "Masukkan Arahan",
 	"Install from Github URL": "Pasang daripada URL Github",
 	"Install from Github URL": "Pasang daripada URL Github",
 	"Instant Auto-Send After Voice Transcription": "Hantar Secara Automatik Dengan Segera Selepas Transkripsi Suara",
 	"Instant Auto-Send After Voice Transcription": "Hantar Secara Automatik Dengan Segera Selepas Transkripsi Suara",
+	"Integration": "",
 	"Interface": "Antaramuka",
 	"Interface": "Antaramuka",
 	"Invalid file format.": "",
 	"Invalid file format.": "",
 	"Invalid Tag": "Tag tidak sah",
 	"Invalid Tag": "Tag tidak sah",
@@ -619,6 +620,7 @@
 	"Listening...": "Mendengar...",
 	"Listening...": "Mendengar...",
 	"Llama.cpp": "",
 	"Llama.cpp": "",
 	"LLMs can make mistakes. Verify important information.": "LLM boleh membuat kesilapan. Sahkan maklumat penting",
 	"LLMs can make mistakes. Verify important information.": "LLM boleh membuat kesilapan. Sahkan maklumat penting",
+	"Loader": "",
 	"Loading Kokoro.js...": "",
 	"Loading Kokoro.js...": "",
 	"Local": "",
 	"Local": "",
 	"Local Models": "Model Tempatan",
 	"Local Models": "Model Tempatan",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No inference engine with management support found": "",
 	"No inference engine with management support found": "",
 	"No knowledge found": "",
 	"No knowledge found": "",
+	"No memories to clear": "",
 	"No model IDs": "",
 	"No model IDs": "",
 	"No models found": "",
 	"No models found": "",
 	"No models selected": "",
 	"No models selected": "",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "Gesaan",
 	"Prompts": "Gesaan",
 	"Prompts Access": "",
 	"Prompts Access": "",
-	"Proxy URL": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Tarik \"{{ searchValue }}\" daripada Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Tarik \"{{ searchValue }}\" daripada Ollama.com",
 	"Pull a model from Ollama.com": "Tarik model dari Ollama.com",
 	"Pull a model from Ollama.com": "Tarik model dari Ollama.com",
 	"Query Generation Prompt": "",
 	"Query Generation Prompt": "",
-	"Query Params": "'Query Params'",
 	"RAG Template": "Templat RAG",
 	"RAG Template": "Templat RAG",
 	"Rating": "",
 	"Rating": "",
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Pemberitahuan respons tidak boleh diaktifkan kerana kebenaran tapak web tidak diberi. Sila lawati tetapan pelayar web anda untuk memberikan akses yang diperlukan.",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Pemberitahuan respons tidak boleh diaktifkan kerana kebenaran tapak web tidak diberi. Sila lawati tetapan pelayar web anda untuk memberikan akses yang diperlukan.",
 	"Response splitting": "",
 	"Response splitting": "",
 	"Result": "",
 	"Result": "",
+	"Retrieval": "",
 	"Retrieval Query Generation": "",
 	"Retrieval Query Generation": "",
 	"Rich Text Input for Chat": "",
 	"Rich Text Input for Chat": "",
 	"RK": "",
 	"RK": "",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Web": "Web",
 	"Web": "Web",
 	"Web API": "API Web",
 	"Web API": "API Web",
-	"Web Loader Settings": "Tetapan Pemuat Web",
 	"Web Search": "Carian Web",
 	"Web Search": "Carian Web",
 	"Web Search Engine": "Enjin Carian Web",
 	"Web Search Engine": "Enjin Carian Web",
 	"Web Search in Chat": "",
 	"Web Search in Chat": "",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "Status akaun anda ialah sedang menunggu pengaktifan.",
 	"Your account status is currently pending activation.": "Status akaun anda ialah sedang menunggu pengaktifan.",
 	"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.": "Seluruh sumbangan anda akan dihantar terus kepada pembangun 'plugin'; Open WebUI tidak mengambil sebarang peratusan keuntungan daripadanya. Walau bagaimanapun, platform pembiayaan yang dipilih mungkin mempunyai caj tersendiri.",
 	"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.": "Seluruh sumbangan anda akan dihantar terus kepada pembangun 'plugin'; Open WebUI tidak mengambil sebarang peratusan keuntungan daripadanya. Walau bagaimanapun, platform pembiayaan yang dipilih mungkin mempunyai caj tersendiri.",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
-	"Youtube Loader Settings": "Tetapan Pemuat Youtube"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/nb-NO/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "Arkiver alle chatter",
 	"Archive All Chats": "Arkiver alle chatter",
 	"Archived Chats": "Arkiverte chatter",
 	"Archived Chats": "Arkiverte chatter",
 	"archived-chat-export": "archived-chat-export",
 	"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 this channel?": "Er du sikker på at du vil slette denne kanalen?",
 	"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 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?",
 	"Are you sure you want to unarchive all archived chats?": "Er du sikker på at du vil oppheve arkiveringen av alle arkiverte chatter?",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "API-nøkkel for Bocha Search",
 	"Bocha Search API Key": "API-nøkkel for Bocha Search",
 	"Brave Search API Key": "API-nøkkel for Brave Search",
 	"Brave Search API Key": "API-nøkkel for Brave Search",
 	"By {{name}}": "Etter {{name}}",
 	"By {{name}}": "Etter {{name}}",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "Omgå SSL-verifisering for nettsteder",
 	"Bypass SSL verification for Websites": "Omgå SSL-verifisering for nettsteder",
 	"Calendar": "Kalender",
 	"Calendar": "Kalender",
 	"Call": "Ring",
 	"Call": "Ring",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "Sjekker for oppdateringer ...",
 	"Checking for updates...": "Sjekker for oppdateringer ...",
 	"Choose a model before saving...": "Velg en modell før du lagrer ...",
 	"Choose a model before saving...": "Velg en modell før du lagrer ...",
 	"Chunk Overlap": "Chunk-overlapp",
 	"Chunk Overlap": "Chunk-overlapp",
-	"Chunk Params": "Chunk-parametere",
 	"Chunk Size": "Chunk-størrelse",
 	"Chunk Size": "Chunk-størrelse",
 	"Ciphers": "Chiffer",
 	"Ciphers": "Chiffer",
 	"Citation": "Kildehenvisning",
 	"Citation": "Kildehenvisning",
 	"Clear memory": "Tøm minnet",
 	"Clear memory": "Tøm minnet",
+	"Clear Memory": "",
 	"click here": "Klikk her",
 	"click here": "Klikk her",
 	"Click here for filter guides.": "Klikk her for å få veiledning om filtre",
 	"Click here for filter guides.": "Klikk her for å få veiledning om filtre",
 	"Click here for help.": "Klikk her for å få hjelp.",
 	"Click here for help.": "Klikk her for å få hjelp.",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "Begrenser resonneringsinnsatsen for resonneringsmodeller. Gjelder bare for resonneringsmodeller fra bestemte leverandører som har støtte for resonneringsinnsats. (Standard: middels)",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "Begrenser resonneringsinnsatsen for resonneringsmodeller. Gjelder bare for resonneringsmodeller fra bestemte leverandører som har støtte for resonneringsinnsats. (Standard: middels)",
 	"Contact Admin for WebUI Access": "Kontakt administrator for å få tilgang til WebUI",
 	"Contact Admin for WebUI Access": "Kontakt administrator for å få tilgang til WebUI",
 	"Content": "Innhold",
 	"Content": "Innhold",
-	"Content Extraction": "Uthenting av innhold",
+	"Content Extraction Engine": "",
 	"Context Length": "Kontekstlengde",
 	"Context Length": "Kontekstlengde",
 	"Continue Response": "Fortsett svar",
 	"Continue Response": "Fortsett svar",
 	"Continue with {{provider}}": "Fortsett med {{provider}}",
 	"Continue with {{provider}}": "Fortsett med {{provider}}",
@@ -246,6 +248,7 @@
 	"Current Model": "Nåværende modell",
 	"Current Model": "Nåværende modell",
 	"Current Password": "Nåværende passord",
 	"Current Password": "Nåværende passord",
 	"Custom": "Tilpasset",
 	"Custom": "Tilpasset",
+	"Danger Zone": "",
 	"Dark": "Mørk",
 	"Dark": "Mørk",
 	"Database": "Database",
 	"Database": "Database",
 	"December": "desember",
 	"December": "desember",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "ElevenLabs",
 	"ElevenLabs": "ElevenLabs",
 	"Email": "E-postadresse",
 	"Email": "E-postadresse",
 	"Embark on adventures": "Kom med på eventyr",
 	"Embark on adventures": "Kom med på eventyr",
+	"Embedding": "",
 	"Embedding Batch Size": "Batch-størrelse for innbygging",
 	"Embedding Batch Size": "Batch-størrelse for innbygging",
 	"Embedding Model": "Innbyggingsmodell",
 	"Embedding Model": "Innbyggingsmodell",
 	"Embedding Model Engine": "Motor for innbygging av modeller",
 	"Embedding Model Engine": "Motor for innbygging av modeller",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "Aktiver automatisk utfylling av chatmeldinger",
 	"Enable autocomplete generation for chat messages": "Aktiver automatisk utfylling av chatmeldinger",
 	"Enable Code Interpreter": "Aktiver kodetolker",
 	"Enable Code Interpreter": "Aktiver kodetolker",
 	"Enable Community Sharing": "Aktiver deling i fellesskap",
 	"Enable Community Sharing": "Aktiver deling i fellesskap",
-	"Enable Google Drive": "Aktiver Google Drive",
 	"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.": "Aktiver Memory Locking (mlock) for å forhindre at modelldata byttes ut av RAM. Dette alternativet låser modellens arbeidssett med sider i RAM-minnet, slik at de ikke byttes ut til disk. Dette kan bidra til å opprettholde ytelsen ved å unngå sidefeil og sikre rask datatilgang.",
 	"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.": "Aktiver Memory Locking (mlock) for å forhindre at modelldata byttes ut av RAM. Dette alternativet låser modellens arbeidssett med sider i RAM-minnet, slik at de ikke byttes ut til disk. Dette kan bidra til å opprettholde ytelsen ved å unngå sidefeil og sikre rask datatilgang.",
 	"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.": "Aktiver Memory Mapping (mmap) for å laste inn modelldata. Med dette alternativet kan systemet bruke disklagring som en utvidelse av RAM ved å behandle diskfiler som om de befant seg i RAM. Dette kan forbedre modellens ytelse ved å gi raskere datatilgang. Det er imidlertid ikke sikkert at det fungerer som det skal på alle systemer, og det kan kreve mye diskplass.",
 	"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.": "Aktiver Memory Mapping (mmap) for å laste inn modelldata. Med dette alternativet kan systemet bruke disklagring som en utvidelse av RAM ved å behandle diskfiler som om de befant seg i RAM. Dette kan forbedre modellens ytelse ved å gi raskere datatilgang. Det er imidlertid ikke sikkert at det fungerer som det skal på alle systemer, og det kan kreve mye diskplass.",
 	"Enable Message Rating": "Aktivert vurdering av meldinger",
 	"Enable Message Rating": "Aktivert vurdering av meldinger",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Aktiver Mirostat-sampling for kontroll av perpleksitet. (Standard: 0, 0 = deaktivert, 1 = Mirostat, 2 = Mirostat 2.0)",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Aktiver Mirostat-sampling for kontroll av perpleksitet. (Standard: 0, 0 = deaktivert, 1 = Mirostat, 2 = Mirostat 2.0)",
 	"Enable New Sign Ups": "Aktiver nye registreringer",
 	"Enable New Sign Ups": "Aktiver nye registreringer",
-	"Enable OneDrive": "Aktiver OneDrive",
-	"Enable Web Search": "Aktiver websøk",
 	"Enabled": "Aktivert",
 	"Enabled": "Aktivert",
-	"Engine": "Motor",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Sørg for at CSV-filen din inkluderer fire kolonner i denne rekkefølgen: Navn, E-post, Passord, Rolle.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Sørg for at CSV-filen din inkluderer fire kolonner i denne rekkefølgen: Navn, E-post, Passord, Rolle.",
 	"Enter {{role}} message here": "Skriv inn {{role}} melding her",
 	"Enter {{role}} message here": "Skriv inn {{role}} melding her",
 	"Enter a detail about yourself for your LLMs to recall": "Skriv inn en detalj om deg selv som språkmodellene dine kan huske",
 	"Enter a detail about yourself for your LLMs to recall": "Skriv inn en detalj om deg selv som språkmodellene dine kan huske",
@@ -572,6 +572,7 @@
 	"Input commands": "Inntast kommandoer",
 	"Input commands": "Inntast kommandoer",
 	"Install from Github URL": "Installer fra GitHub-URL",
 	"Install from Github URL": "Installer fra GitHub-URL",
 	"Instant Auto-Send After Voice Transcription": "Øyeblikkelig automatisk sending etter taletranskripsjon",
 	"Instant Auto-Send After Voice Transcription": "Øyeblikkelig automatisk sending etter taletranskripsjon",
+	"Integration": "",
 	"Interface": "Grensesnitt",
 	"Interface": "Grensesnitt",
 	"Invalid file format.": "Ugyldig filformat.",
 	"Invalid file format.": "Ugyldig filformat.",
 	"Invalid Tag": "Ugyldig etikett",
 	"Invalid Tag": "Ugyldig etikett",
@@ -619,6 +620,7 @@
 	"Listening...": "Lytter ...",
 	"Listening...": "Lytter ...",
 	"Llama.cpp": "Llama.cpp",
 	"Llama.cpp": "Llama.cpp",
 	"LLMs can make mistakes. Verify important information.": "Språkmodeller kan gjøre feil. Kontroller viktige opplysninger.",
 	"LLMs can make mistakes. Verify important information.": "Språkmodeller kan gjøre feil. Kontroller viktige opplysninger.",
+	"Loader": "",
 	"Loading Kokoro.js...": "Laster Kokoro.js ...",
 	"Loading Kokoro.js...": "Laster Kokoro.js ...",
 	"Local": "Lokal",
 	"Local": "Lokal",
 	"Local Models": "Lokale modeller",
 	"Local Models": "Lokale modeller",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "Finner ikke noe HTML, CSS- eller JavaScript-innhold.",
 	"No HTML, CSS, or JavaScript content found.": "Finner ikke noe HTML, CSS- eller JavaScript-innhold.",
 	"No inference engine with management support found": "Fant ingen konklusjonsmotor med støtte for administrasjon",
 	"No inference engine with management support found": "Fant ingen konklusjonsmotor med støtte for administrasjon",
 	"No knowledge found": "Finner ingen kunnskaper",
 	"No knowledge found": "Finner ingen kunnskaper",
+	"No memories to clear": "",
 	"No model IDs": "Ingen modell-ID-er",
 	"No model IDs": "Ingen modell-ID-er",
 	"No models found": "Finner ingen modeller",
 	"No models found": "Finner ingen modeller",
 	"No models selected": "Ingen modeller er valgt",
 	"No models selected": "Ingen modeller er valgt",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "Ledetekst oppdatert",
 	"Prompt updated successfully": "Ledetekst oppdatert",
 	"Prompts": "Ledetekster",
 	"Prompts": "Ledetekster",
 	"Prompts Access": "Tilgang til ledetekster",
 	"Prompts Access": "Tilgang til ledetekster",
-	"Proxy URL": "Proxy-URL",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Hent {{searchValue}} fra Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Hent {{searchValue}} fra Ollama.com",
 	"Pull a model from Ollama.com": "Hent en modell fra Ollama.com",
 	"Pull a model from Ollama.com": "Hent en modell fra Ollama.com",
 	"Query Generation Prompt": "Ledetekst for genering av spørringer",
 	"Query Generation Prompt": "Ledetekst for genering av spørringer",
-	"Query Params": "Spørringsparametere",
 	"RAG Template": "RAG-mal",
 	"RAG Template": "RAG-mal",
 	"Rating": "Vurdering",
 	"Rating": "Vurdering",
 	"Re-rank models by topic similarity": "Ny rangering av modeller etter emnelikhet",
 	"Re-rank models by topic similarity": "Ny rangering av modeller etter emnelikhet",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Svar-varsler kan ikke aktiveres fordi tilgang til nettstedet er nektet. Gå til nettleserinnstillingene dine for å gi den nødvendige tilgangen.",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Svar-varsler kan ikke aktiveres fordi tilgang til nettstedet er nektet. Gå til nettleserinnstillingene dine for å gi den nødvendige tilgangen.",
 	"Response splitting": "Oppdeling av svar",
 	"Response splitting": "Oppdeling av svar",
 	"Result": "Resultat",
 	"Result": "Resultat",
+	"Retrieval": "",
 	"Retrieval Query Generation": "Generering av spørsmål om henting",
 	"Retrieval Query Generation": "Generering av spørsmål om henting",
 	"Rich Text Input for Chat": "Rik tekstinndata for chat",
 	"Rich Text Input for Chat": "Rik tekstinndata for chat",
 	"RK": "RK",
 	"RK": "RK",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Advarsel! Jupyter gjør det mulig å kjøre vilkårlig kode, noe som utgjør en alvorlig sikkerhetsrisiko. Utvis ekstrem forsiktighet.",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Advarsel! Jupyter gjør det mulig å kjøre vilkårlig kode, noe som utgjør en alvorlig sikkerhetsrisiko. Utvis ekstrem forsiktighet.",
 	"Web": "Web",
 	"Web": "Web",
 	"Web API": "Web-API",
 	"Web API": "Web-API",
-	"Web Loader Settings": "Web-lasterinnstillinger",
 	"Web Search": "Nettsøk",
 	"Web Search": "Nettsøk",
 	"Web Search Engine": "Nettsøkmotor",
 	"Web Search Engine": "Nettsøkmotor",
 	"Web Search in Chat": "Nettsøk i chat",
 	"Web Search in Chat": "Nettsøk i chat",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "Status på kontoen din er for øyeblikket ventende på aktivering.",
 	"Your account status is currently pending activation.": "Status på kontoen din er for øyeblikket ventende på aktivering.",
 	"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.": "Hele beløpet går uavkortet til utvikleren av tillegget. Open WebUI mottar ikke deler av beløpet. Den valgte betalingsplattformen kan ha gebyrer.",
 	"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.": "Hele beløpet går uavkortet til utvikleren av tillegget. Open WebUI mottar ikke deler av beløpet. Den valgte betalingsplattformen kan ha gebyrer.",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
-	"Youtube Loader Settings": "Innstillinger for YouTube-laster"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/nl-NL/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "Archiveer alle chats",
 	"Archive All Chats": "Archiveer alle chats",
 	"Archived Chats": "Chatrecord",
 	"Archived Chats": "Chatrecord",
 	"archived-chat-export": "gearchiveerde-chat-export",
 	"archived-chat-export": "gearchiveerde-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 channel?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "Weet je zeker dat je alle gearchiveerde chats wil onarchiveren?",
 	"Are you sure you want to unarchive all archived chats?": "Weet je zeker dat je alle gearchiveerde chats wil onarchiveren?",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "",
 	"Bocha Search API Key": "",
 	"Brave Search API Key": "Brave Search API-sleutel",
 	"Brave Search API Key": "Brave Search API-sleutel",
 	"By {{name}}": "Op {{name}}",
 	"By {{name}}": "Op {{name}}",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "SSL-verificatie omzeilen voor websites",
 	"Bypass SSL verification for Websites": "SSL-verificatie omzeilen voor websites",
 	"Calendar": "",
 	"Calendar": "",
 	"Call": "Oproep",
 	"Call": "Oproep",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "Controleren op updates...",
 	"Checking for updates...": "Controleren op updates...",
 	"Choose a model before saving...": "Kies een model voordat je opslaat...",
 	"Choose a model before saving...": "Kies een model voordat je opslaat...",
 	"Chunk Overlap": "Chunkoverlap",
 	"Chunk Overlap": "Chunkoverlap",
-	"Chunk Params": "Chunkparams",
 	"Chunk Size": "Chunkgrootte",
 	"Chunk Size": "Chunkgrootte",
 	"Ciphers": "Versleutelingen",
 	"Ciphers": "Versleutelingen",
 	"Citation": "Citaat",
 	"Citation": "Citaat",
 	"Clear memory": "Geheugen wissen",
 	"Clear memory": "Geheugen wissen",
+	"Clear Memory": "",
 	"click here": "klik hier",
 	"click here": "klik hier",
 	"Click here for filter guides.": "Klik hier voor filterhulp",
 	"Click here for filter guides.": "Klik hier voor filterhulp",
 	"Click here for help.": "Klik hier voor hulp.",
 	"Click here for help.": "Klik hier voor hulp.",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Contact Admin for WebUI Access": "Neem contact op met de beheerder voor WebUI-toegang",
 	"Contact Admin for WebUI Access": "Neem contact op met de beheerder voor WebUI-toegang",
 	"Content": "Inhoud",
 	"Content": "Inhoud",
-	"Content Extraction": "Inhoudsextractie",
+	"Content Extraction Engine": "",
 	"Context Length": "Contextlengte",
 	"Context Length": "Contextlengte",
 	"Continue Response": "Doorgaan met antwoord",
 	"Continue Response": "Doorgaan met antwoord",
 	"Continue with {{provider}}": "Ga verder met {{provider}}",
 	"Continue with {{provider}}": "Ga verder met {{provider}}",
@@ -246,6 +248,7 @@
 	"Current Model": "Huidig model",
 	"Current Model": "Huidig model",
 	"Current Password": "Huidig wachtwoord",
 	"Current Password": "Huidig wachtwoord",
 	"Custom": "Aangepast",
 	"Custom": "Aangepast",
+	"Danger Zone": "",
 	"Dark": "Donker",
 	"Dark": "Donker",
 	"Database": "Database",
 	"Database": "Database",
 	"December": "December",
 	"December": "December",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "ElevenLabs",
 	"ElevenLabs": "ElevenLabs",
 	"Email": "E-mail",
 	"Email": "E-mail",
 	"Embark on adventures": "Ga op avonturen",
 	"Embark on adventures": "Ga op avonturen",
+	"Embedding": "",
 	"Embedding Batch Size": "Embedding batchgrootte",
 	"Embedding Batch Size": "Embedding batchgrootte",
 	"Embedding Model": "Embedding Model",
 	"Embedding Model": "Embedding Model",
 	"Embedding Model Engine": "Embedding Model Engine",
 	"Embedding Model Engine": "Embedding Model Engine",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Delen via de community inschakelen",
 	"Enable Community Sharing": "Delen via de community inschakelen",
-	"Enable Google Drive": "",
 	"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.": "Schakel Memory Locking (mlock) in om te voorkomen dat modelgegevens uit het RAM worden verwisseld. Deze optie vergrendelt de werkset pagina's van het model in het RAM, zodat ze niet naar de schijf worden uitgewisseld. Dit kan helpen om de prestaties op peil te houden door paginafouten te voorkomen en snelle gegevenstoegang te garanderen.",
 	"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.": "Schakel Memory Locking (mlock) in om te voorkomen dat modelgegevens uit het RAM worden verwisseld. Deze optie vergrendelt de werkset pagina's van het model in het RAM, zodat ze niet naar de schijf worden uitgewisseld. Dit kan helpen om de prestaties op peil te houden door paginafouten te voorkomen en snelle gegevenstoegang te garanderen.",
 	"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.": "Schakel Memory Mapping (mmap) in om modelgegevens te laden. Deze optie laat het systeem schijfopslag gebruiken als een uitbreiding van RAM door schijfbestanden te behandelen alsof ze in RAM zitten. Dit kan de prestaties van het model verbeteren door snellere gegevenstoegang mogelijk te maken. Het is echter mogelijk dat deze optie niet op alle systemen correct werkt en een aanzienlijke hoeveelheid schijfruimte in beslag kan nemen.",
 	"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.": "Schakel Memory Mapping (mmap) in om modelgegevens te laden. Deze optie laat het systeem schijfopslag gebruiken als een uitbreiding van RAM door schijfbestanden te behandelen alsof ze in RAM zitten. Dit kan de prestaties van het model verbeteren door snellere gegevenstoegang mogelijk te maken. Het is echter mogelijk dat deze optie niet op alle systemen correct werkt en een aanzienlijke hoeveelheid schijfruimte in beslag kan nemen.",
 	"Enable Message Rating": "Schakel berichtbeoordeling in",
 	"Enable Message Rating": "Schakel berichtbeoordeling in",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Mirostat-sampling inschakelen voor het regelen van de perplexiteit. (Standaard: 0, 0 = uitgeschakeld, 1 = Mirostat, 2 = Mirostat 2.0)",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Mirostat-sampling inschakelen voor het regelen van de perplexiteit. (Standaard: 0, 0 = uitgeschakeld, 1 = Mirostat, 2 = Mirostat 2.0)",
 	"Enable New Sign Ups": "Schakel nieuwe registraties in",
 	"Enable New Sign Ups": "Schakel nieuwe registraties in",
-	"Enable OneDrive": "",
-	"Enable Web Search": "Zoeken op het web inschakelen",
 	"Enabled": "Ingeschakeld",
 	"Enabled": "Ingeschakeld",
-	"Engine": "Engine",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Zorg ervoor dat uw CSV-bestand de volgende vier kolommen in deze volgorde bevat: Naam, E-mail, Wachtwoord, Rol.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Zorg ervoor dat uw CSV-bestand de volgende vier kolommen in deze volgorde bevat: Naam, E-mail, Wachtwoord, Rol.",
 	"Enter {{role}} message here": "Voeg {{role}} bericht hier toe",
 	"Enter {{role}} message here": "Voeg {{role}} bericht hier toe",
 	"Enter a detail about yourself for your LLMs to recall": "Voer een detail over jezelf in zodat LLM's het kunnen onthouden",
 	"Enter a detail about yourself for your LLMs to recall": "Voer een detail over jezelf in zodat LLM's het kunnen onthouden",
@@ -572,6 +572,7 @@
 	"Input commands": "Voer commando's in",
 	"Input commands": "Voer commando's in",
 	"Install from Github URL": "Installeren vanaf Github-URL",
 	"Install from Github URL": "Installeren vanaf Github-URL",
 	"Instant Auto-Send After Voice Transcription": "Direct automatisch verzenden na spraaktranscriptie",
 	"Instant Auto-Send After Voice Transcription": "Direct automatisch verzenden na spraaktranscriptie",
+	"Integration": "",
 	"Interface": "Interface",
 	"Interface": "Interface",
 	"Invalid file format.": "Ongeldig bestandsformaat",
 	"Invalid file format.": "Ongeldig bestandsformaat",
 	"Invalid Tag": "Ongeldige Tag",
 	"Invalid Tag": "Ongeldige Tag",
@@ -619,6 +620,7 @@
 	"Listening...": "Aan het luisteren...",
 	"Listening...": "Aan het luisteren...",
 	"Llama.cpp": "",
 	"Llama.cpp": "",
 	"LLMs can make mistakes. Verify important information.": "LLMs kunnen fouten maken. Verifieer belangrijke informatie.",
 	"LLMs can make mistakes. Verify important information.": "LLMs kunnen fouten maken. Verifieer belangrijke informatie.",
+	"Loader": "",
 	"Loading Kokoro.js...": "",
 	"Loading Kokoro.js...": "",
 	"Local": "Lokaal",
 	"Local": "Lokaal",
 	"Local Models": "Lokale modellen",
 	"Local Models": "Lokale modellen",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "Geen HTML, CSS, of JavaScript inhoud gevonden",
 	"No HTML, CSS, or JavaScript content found.": "Geen HTML, CSS, of JavaScript inhoud gevonden",
 	"No inference engine with management support found": "",
 	"No inference engine with management support found": "",
 	"No knowledge found": "Geen kennis gevonden",
 	"No knowledge found": "Geen kennis gevonden",
+	"No memories to clear": "",
 	"No model IDs": "Geen model-ID's",
 	"No model IDs": "Geen model-ID's",
 	"No models found": "Geen modellen gevonden",
 	"No models found": "Geen modellen gevonden",
 	"No models selected": "Geen modellen geselecteerd",
 	"No models selected": "Geen modellen geselecteerd",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "Prompt succesvol bijgewerkt",
 	"Prompt updated successfully": "Prompt succesvol bijgewerkt",
 	"Prompts": "Prompts",
 	"Prompts": "Prompts",
 	"Prompts Access": "Prompttoegang",
 	"Prompts Access": "Prompttoegang",
-	"Proxy URL": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Haal \"{{searchValue}}\" uit Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Haal \"{{searchValue}}\" uit Ollama.com",
 	"Pull a model from Ollama.com": "Haal een model van Ollama.com",
 	"Pull a model from Ollama.com": "Haal een model van Ollama.com",
 	"Query Generation Prompt": "Vraaggeneratieprompt",
 	"Query Generation Prompt": "Vraaggeneratieprompt",
-	"Query Params": "Vraagparameters",
 	"RAG Template": "RAG-sjabloon",
 	"RAG Template": "RAG-sjabloon",
 	"Rating": "Beoordeling",
 	"Rating": "Beoordeling",
 	"Re-rank models by topic similarity": "Herrangschik modellen op basis van onderwerpsovereenkomst",
 	"Re-rank models by topic similarity": "Herrangschik modellen op basis van onderwerpsovereenkomst",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Antwoordmeldingen kunnen niet worden geactiveerd omdat de rechten voor de website zijn geweigerd. Ga naar de instellingen van uw browser om de benodigde toegang te verlenen.",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Antwoordmeldingen kunnen niet worden geactiveerd omdat de rechten voor de website zijn geweigerd. Ga naar de instellingen van uw browser om de benodigde toegang te verlenen.",
 	"Response splitting": "Antwoord splitsing",
 	"Response splitting": "Antwoord splitsing",
 	"Result": "Resultaat",
 	"Result": "Resultaat",
+	"Retrieval": "",
 	"Retrieval Query Generation": "",
 	"Retrieval Query Generation": "",
 	"Rich Text Input for Chat": "Rijke tekstinvoer voor chatten",
 	"Rich Text Input for Chat": "Rijke tekstinvoer voor chatten",
 	"RK": "RK",
 	"RK": "RK",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Web": "Web",
 	"Web": "Web",
 	"Web API": "Web-API",
 	"Web API": "Web-API",
-	"Web Loader Settings": "Web Loader instellingen",
 	"Web Search": "Zoeken op het web",
 	"Web Search": "Zoeken op het web",
 	"Web Search Engine": "Zoekmachine op het web",
 	"Web Search Engine": "Zoekmachine op het web",
 	"Web Search in Chat": "",
 	"Web Search in Chat": "",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "Je accountstatus wacht nu op activatie",
 	"Your account status is currently pending activation.": "Je accountstatus wacht nu op activatie",
 	"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.": "Je volledige bijdrage gaat direct naar de ontwikkelaar van de plugin; Open WebUI neemt hier geen deel van. Het gekozen financieringsplatform kan echter wel zijn eigen kosten hebben.",
 	"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.": "Je volledige bijdrage gaat direct naar de ontwikkelaar van de plugin; Open WebUI neemt hier geen deel van. Het gekozen financieringsplatform kan echter wel zijn eigen kosten hebben.",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
-	"Youtube Loader Settings": "Youtube-laderinstellingen"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/pa-IN/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "ਸਾਰੀਆਂ ਚੈਟਾਂ ਨੂੰ ਆਰਕਾਈਵ ਕਰੋ",
 	"Archive All Chats": "ਸਾਰੀਆਂ ਚੈਟਾਂ ਨੂੰ ਆਰਕਾਈਵ ਕਰੋ",
 	"Archived Chats": "ਆਰਕਾਈਵ ਕੀਤੀਆਂ ਗੱਲਾਂ",
 	"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 this channel?": "",
 	"Are you sure you want to delete this channel?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "",
 	"Bocha Search API Key": "",
 	"Brave Search API Key": "ਬਹਾਦਰ ਖੋਜ API ਕੁੰਜੀ",
 	"Brave Search API Key": "ਬਹਾਦਰ ਖੋਜ API ਕੁੰਜੀ",
 	"By {{name}}": "",
 	"By {{name}}": "",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "ਵੈਬਸਾਈਟਾਂ ਲਈ SSL ਪ੍ਰਮਾਣਿਕਤਾ ਨੂੰ ਬਾਈਪਾਸ ਕਰੋ",
 	"Bypass SSL verification for Websites": "ਵੈਬਸਾਈਟਾਂ ਲਈ SSL ਪ੍ਰਮਾਣਿਕਤਾ ਨੂੰ ਬਾਈਪਾਸ ਕਰੋ",
 	"Calendar": "",
 	"Calendar": "",
 	"Call": "",
 	"Call": "",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "ਅੱਪਡੇਟ ਲਈ ਜਾਂਚ ਰਿਹਾ ਹੈ...",
 	"Checking for updates...": "ਅੱਪਡੇਟ ਲਈ ਜਾਂਚ ਰਿਹਾ ਹੈ...",
 	"Choose a model before saving...": "ਸੰਭਾਲਣ ਤੋਂ ਪਹਿਲਾਂ ਇੱਕ ਮਾਡਲ ਚੁਣੋ...",
 	"Choose a model before saving...": "ਸੰਭਾਲਣ ਤੋਂ ਪਹਿਲਾਂ ਇੱਕ ਮਾਡਲ ਚੁਣੋ...",
 	"Chunk Overlap": "ਚੰਕ ਓਵਰਲੈਪ",
 	"Chunk Overlap": "ਚੰਕ ਓਵਰਲੈਪ",
-	"Chunk Params": "ਚੰਕ ਪੈਰਾਮੀਟਰ",
 	"Chunk Size": "ਚੰਕ ਆਕਾਰ",
 	"Chunk Size": "ਚੰਕ ਆਕਾਰ",
 	"Ciphers": "",
 	"Ciphers": "",
 	"Citation": "ਹਵਾਲਾ",
 	"Citation": "ਹਵਾਲਾ",
 	"Clear memory": "",
 	"Clear memory": "",
+	"Clear Memory": "",
 	"click here": "",
 	"click here": "",
 	"Click here for filter guides.": "",
 	"Click here for filter guides.": "",
 	"Click here for help.": "ਮਦਦ ਲਈ ਇੱਥੇ ਕਲਿੱਕ ਕਰੋ।",
 	"Click here for help.": "ਮਦਦ ਲਈ ਇੱਥੇ ਕਲਿੱਕ ਕਰੋ।",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Contact Admin for WebUI Access": "",
 	"Contact Admin for WebUI Access": "",
 	"Content": "ਸਮੱਗਰੀ",
 	"Content": "ਸਮੱਗਰੀ",
-	"Content Extraction": "",
+	"Content Extraction Engine": "",
 	"Context Length": "ਸੰਦਰਭ ਲੰਬਾਈ",
 	"Context Length": "ਸੰਦਰਭ ਲੰਬਾਈ",
 	"Continue Response": "ਜਵਾਬ ਜਾਰੀ ਰੱਖੋ",
 	"Continue Response": "ਜਵਾਬ ਜਾਰੀ ਰੱਖੋ",
 	"Continue with {{provider}}": "",
 	"Continue with {{provider}}": "",
@@ -246,6 +248,7 @@
 	"Current Model": "ਮੌਜੂਦਾ ਮਾਡਲ",
 	"Current Model": "ਮੌਜੂਦਾ ਮਾਡਲ",
 	"Current Password": "ਮੌਜੂਦਾ ਪਾਸਵਰਡ",
 	"Current Password": "ਮੌਜੂਦਾ ਪਾਸਵਰਡ",
 	"Custom": "ਕਸਟਮ",
 	"Custom": "ਕਸਟਮ",
+	"Danger Zone": "",
 	"Dark": "ਗੂੜ੍ਹਾ",
 	"Dark": "ਗੂੜ੍ਹਾ",
 	"Database": "ਡਾਟਾਬੇਸ",
 	"Database": "ਡਾਟਾਬੇਸ",
 	"December": "ਦਸੰਬਰ",
 	"December": "ਦਸੰਬਰ",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "",
 	"ElevenLabs": "",
 	"Email": "ਈਮੇਲ",
 	"Email": "ਈਮੇਲ",
 	"Embark on adventures": "",
 	"Embark on adventures": "",
+	"Embedding": "",
 	"Embedding Batch Size": "",
 	"Embedding Batch Size": "",
 	"Embedding Model": "ਐਮਬੈੱਡਿੰਗ ਮਾਡਲ",
 	"Embedding Model": "ਐਮਬੈੱਡਿੰਗ ਮਾਡਲ",
 	"Embedding Model Engine": "ਐਮਬੈੱਡਿੰਗ ਮਾਡਲ ਇੰਜਣ",
 	"Embedding Model Engine": "ਐਮਬੈੱਡਿੰਗ ਮਾਡਲ ਇੰਜਣ",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "ਕਮਿਊਨਿਟੀ ਸ਼ੇਅਰਿੰਗ ਨੂੰ ਸਮਰੱਥ ਕਰੋ",
 	"Enable Community Sharing": "ਕਮਿਊਨਿਟੀ ਸ਼ੇਅਰਿੰਗ ਨੂੰ ਸਮਰੱਥ ਕਰੋ",
-	"Enable Google Drive": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "ਨਵੇਂ ਸਾਈਨ ਅਪ ਯੋਗ ਕਰੋ",
 	"Enable New Sign Ups": "ਨਵੇਂ ਸਾਈਨ ਅਪ ਯੋਗ ਕਰੋ",
-	"Enable OneDrive": "",
-	"Enable Web Search": "ਵੈੱਬ ਖੋਜ ਨੂੰ ਸਮਰੱਥ ਕਰੋ",
 	"Enabled": "",
 	"Enabled": "",
-	"Engine": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ਸੁਨਿਸ਼ਚਿਤ ਕਰੋ ਕਿ ਤੁਹਾਡੀ CSV ਫਾਈਲ ਵਿੱਚ ਇਸ ਕ੍ਰਮ ਵਿੱਚ 4 ਕਾਲਮ ਹਨ: ਨਾਮ, ਈਮੇਲ, ਪਾਸਵਰਡ, ਭੂਮਿਕਾ।",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ਸੁਨਿਸ਼ਚਿਤ ਕਰੋ ਕਿ ਤੁਹਾਡੀ CSV ਫਾਈਲ ਵਿੱਚ ਇਸ ਕ੍ਰਮ ਵਿੱਚ 4 ਕਾਲਮ ਹਨ: ਨਾਮ, ਈਮੇਲ, ਪਾਸਵਰਡ, ਭੂਮਿਕਾ।",
 	"Enter {{role}} message here": "{{role}} ਸੁਨੇਹਾ ਇੱਥੇ ਦਰਜ ਕਰੋ",
 	"Enter {{role}} message here": "{{role}} ਸੁਨੇਹਾ ਇੱਥੇ ਦਰਜ ਕਰੋ",
 	"Enter a detail about yourself for your LLMs to recall": "ਤੁਹਾਡੇ LLMs ਨੂੰ ਸੁਨੇਹਾ ਕਰਨ ਲਈ ਸੁਨੇਹਾ ਇੱਥੇ ਦਰਜ ਕਰੋ",
 	"Enter a detail about yourself for your LLMs to recall": "ਤੁਹਾਡੇ LLMs ਨੂੰ ਸੁਨੇਹਾ ਕਰਨ ਲਈ ਸੁਨੇਹਾ ਇੱਥੇ ਦਰਜ ਕਰੋ",
@@ -572,6 +572,7 @@
 	"Input commands": "ਇਨਪੁਟ ਕਮਾਂਡਾਂ",
 	"Input commands": "ਇਨਪੁਟ ਕਮਾਂਡਾਂ",
 	"Install from Github URL": "Github URL ਤੋਂ ਇੰਸਟਾਲ ਕਰੋ",
 	"Install from Github URL": "Github URL ਤੋਂ ਇੰਸਟਾਲ ਕਰੋ",
 	"Instant Auto-Send After Voice Transcription": "",
 	"Instant Auto-Send After Voice Transcription": "",
+	"Integration": "",
 	"Interface": "ਇੰਟਰਫੇਸ",
 	"Interface": "ਇੰਟਰਫੇਸ",
 	"Invalid file format.": "",
 	"Invalid file format.": "",
 	"Invalid Tag": "ਗਲਤ ਟੈਗ",
 	"Invalid Tag": "ਗਲਤ ਟੈਗ",
@@ -619,6 +620,7 @@
 	"Listening...": "",
 	"Listening...": "",
 	"Llama.cpp": "",
 	"Llama.cpp": "",
 	"LLMs can make mistakes. Verify important information.": "LLMs ਗਲਤੀਆਂ ਕਰ ਸਕਦੇ ਹਨ। ਮਹੱਤਵਪੂਰਨ ਜਾਣਕਾਰੀ ਦੀ ਪੁਸ਼ਟੀ ਕਰੋ।",
 	"LLMs can make mistakes. Verify important information.": "LLMs ਗਲਤੀਆਂ ਕਰ ਸਕਦੇ ਹਨ। ਮਹੱਤਵਪੂਰਨ ਜਾਣਕਾਰੀ ਦੀ ਪੁਸ਼ਟੀ ਕਰੋ।",
+	"Loader": "",
 	"Loading Kokoro.js...": "",
 	"Loading Kokoro.js...": "",
 	"Local": "",
 	"Local": "",
 	"Local Models": "",
 	"Local Models": "",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No inference engine with management support found": "",
 	"No inference engine with management support found": "",
 	"No knowledge found": "",
 	"No knowledge found": "",
+	"No memories to clear": "",
 	"No model IDs": "",
 	"No model IDs": "",
 	"No models found": "",
 	"No models found": "",
 	"No models selected": "",
 	"No models selected": "",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "ਪ੍ਰੰਪਟ",
 	"Prompts": "ਪ੍ਰੰਪਟ",
 	"Prompts Access": "",
 	"Prompts Access": "",
-	"Proxy URL": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "ਓਲਾਮਾ.ਕਾਮ ਤੋਂ \"{{searchValue}}\" ਖਿੱਚੋ",
 	"Pull \"{{searchValue}}\" from Ollama.com": "ਓਲਾਮਾ.ਕਾਮ ਤੋਂ \"{{searchValue}}\" ਖਿੱਚੋ",
 	"Pull a model from Ollama.com": "ਓਲਾਮਾ.ਕਾਮ ਤੋਂ ਇੱਕ ਮਾਡਲ ਖਿੱਚੋ",
 	"Pull a model from Ollama.com": "ਓਲਾਮਾ.ਕਾਮ ਤੋਂ ਇੱਕ ਮਾਡਲ ਖਿੱਚੋ",
 	"Query Generation Prompt": "",
 	"Query Generation Prompt": "",
-	"Query Params": "ਪ੍ਰਸ਼ਨ ਪੈਰਾਮੀਟਰ",
 	"RAG Template": "RAG ਟੈਮਪਲੇਟ",
 	"RAG Template": "RAG ਟੈਮਪਲੇਟ",
 	"Rating": "",
 	"Rating": "",
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"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 splitting": "",
 	"Result": "",
 	"Result": "",
+	"Retrieval": "",
 	"Retrieval Query Generation": "",
 	"Retrieval Query Generation": "",
 	"Rich Text Input for Chat": "",
 	"Rich Text Input for Chat": "",
 	"RK": "",
 	"RK": "",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Web": "ਵੈਬ",
 	"Web": "ਵੈਬ",
 	"Web API": "",
 	"Web API": "",
-	"Web Loader Settings": "ਵੈਬ ਲੋਡਰ ਸੈਟਿੰਗਾਂ",
 	"Web Search": "ਵੈੱਬ ਖੋਜ",
 	"Web Search": "ਵੈੱਬ ਖੋਜ",
 	"Web Search Engine": "ਵੈੱਬ ਖੋਜ ਇੰਜਣ",
 	"Web Search Engine": "ਵੈੱਬ ਖੋਜ ਇੰਜਣ",
 	"Web Search in Chat": "",
 	"Web Search in Chat": "",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "",
 	"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.": "",
 	"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.": "",
 	"Youtube": "ਯੂਟਿਊਬ",
 	"Youtube": "ਯੂਟਿਊਬ",
-	"Youtube Loader Settings": "ਯੂਟਿਊਬ ਲੋਡਰ ਸੈਟਿੰਗਾਂ"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/pl-PL/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "Archiwizuj wszystkie rozmowy",
 	"Archive All Chats": "Archiwizuj wszystkie rozmowy",
 	"Archived Chats": "Zarchiwizowane rozmowy",
 	"Archived Chats": "Zarchiwizowane rozmowy",
 	"archived-chat-export": "archiwizowany eksport czatu",
 	"archived-chat-export": "archiwizowany eksport czatu",
+	"Are you sure you want to clear all memories? This action cannot be undone.": "",
 	"Are you sure you want to delete this channel?": "Czy na pewno chcesz usunąć ten kanał?",
 	"Are you sure you want to delete this 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 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?",
 	"Are you sure you want to unarchive all archived chats?": "Czy na pewno chcesz przywrócić wszystkie zapisane rozmowy?",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "Klucz API Bocha Search",
 	"Bocha Search API Key": "Klucz API Bocha Search",
 	"Brave Search API Key": "Klucz API wyszukiwania Brave",
 	"Brave Search API Key": "Klucz API wyszukiwania Brave",
 	"By {{name}}": "Przez {{name}}",
 	"By {{name}}": "Przez {{name}}",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "Pomiń sprawdzanie SSL dla stron internetowych",
 	"Bypass SSL verification for Websites": "Pomiń sprawdzanie SSL dla stron internetowych",
 	"Calendar": "Kalendarz",
 	"Calendar": "Kalendarz",
 	"Call": "Wywołanie",
 	"Call": "Wywołanie",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "Sprawdzanie dostępności aktualizacji...",
 	"Checking for updates...": "Sprawdzanie dostępności aktualizacji...",
 	"Choose a model before saving...": "Wybierz model przed zapisaniem.",
 	"Choose a model before saving...": "Wybierz model przed zapisaniem.",
 	"Chunk Overlap": "Nakładanie się bloków",
 	"Chunk Overlap": "Nakładanie się bloków",
-	"Chunk Params": "Parametry bloku",
 	"Chunk Size": "Rozmiar bloku",
 	"Chunk Size": "Rozmiar bloku",
 	"Ciphers": "Szyfry",
 	"Ciphers": "Szyfry",
 	"Citation": "Cytat",
 	"Citation": "Cytat",
 	"Clear memory": "Wyczyść pamięć",
 	"Clear memory": "Wyczyść pamięć",
+	"Clear Memory": "",
 	"click here": "kliknij tutaj",
 	"click here": "kliknij tutaj",
 	"Click here for filter guides.": "Kliknij tutaj, aby uzyskać podpowiedź do filtrów.",
 	"Click here for filter guides.": "Kliknij tutaj, aby uzyskać podpowiedź do filtrów.",
 	"Click here for help.": "Kliknij tutaj, aby uzyskać pomoc.",
 	"Click here for help.": "Kliknij tutaj, aby uzyskać pomoc.",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "Ogranicza wysiłek rozumowania dla modeli rozumowania. Stosuje się tylko do modeli rozumowania od określonych dostawców, którzy obsługują wysiłek rozumowania. (Domyślnie: średni)",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "Ogranicza wysiłek rozumowania dla modeli rozumowania. Stosuje się tylko do modeli rozumowania od określonych dostawców, którzy obsługują wysiłek rozumowania. (Domyślnie: średni)",
 	"Contact Admin for WebUI Access": "Skontaktuj się z administratorem, aby uzyskać dostęp do WebUI.",
 	"Contact Admin for WebUI Access": "Skontaktuj się z administratorem, aby uzyskać dostęp do WebUI.",
 	"Content": "Treść",
 	"Content": "Treść",
-	"Content Extraction": "Ekstrakcja treści",
+	"Content Extraction Engine": "",
 	"Context Length": "Długość kontekstu",
 	"Context Length": "Długość kontekstu",
 	"Continue Response": "Kontynuuj odpowiedź",
 	"Continue Response": "Kontynuuj odpowiedź",
 	"Continue with {{provider}}": "Kontynuuj z {{provider}}",
 	"Continue with {{provider}}": "Kontynuuj z {{provider}}",
@@ -246,6 +248,7 @@
 	"Current Model": "Aktualny model",
 	"Current Model": "Aktualny model",
 	"Current Password": "Aktualne hasło",
 	"Current Password": "Aktualne hasło",
 	"Custom": "Niestandardowy",
 	"Custom": "Niestandardowy",
+	"Danger Zone": "",
 	"Dark": "Ciemny",
 	"Dark": "Ciemny",
 	"Database": "Baza danych",
 	"Database": "Baza danych",
 	"December": "Grudzień",
 	"December": "Grudzień",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "ElevenLabs",
 	"ElevenLabs": "ElevenLabs",
 	"Email": "Email",
 	"Email": "Email",
 	"Embark on adventures": "Wyruszaj na przygody",
 	"Embark on adventures": "Wyruszaj na przygody",
+	"Embedding": "",
 	"Embedding Batch Size": "Rozmiar partii wstępnego przetwarzania",
 	"Embedding Batch Size": "Rozmiar partii wstępnego przetwarzania",
 	"Embedding Model": "Model osadzania",
 	"Embedding Model": "Model osadzania",
 	"Embedding Model Engine": "Silnik modelu osadzania",
 	"Embedding Model Engine": "Silnik modelu osadzania",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "Włącz generowanie autouzupełniania dla wiadomości czatu",
 	"Enable autocomplete generation for chat messages": "Włącz generowanie autouzupełniania dla wiadomości czatu",
 	"Enable Code Interpreter": "Włącz interpreter kodu",
 	"Enable Code Interpreter": "Włącz interpreter kodu",
 	"Enable Community Sharing": "Włączanie udostępniania społecznościowego",
 	"Enable Community Sharing": "Włączanie udostępniania społecznościowego",
-	"Enable Google Drive": "Włącz Google Drive",
 	"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.": "Włącz blokowanie pamięci (mlock), aby zapobiec swappingowi danych modelu z RAM. Ta opcja blokuje zbiór stron roboczych modelu w RAM, co gwarantuje, że nie będą one wymieniane na dysk. Może to pomóc w utrzymaniu wydajności poprzez unikanie błędów strony i zapewnienie szybkiego dostępu do danych.",
 	"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.": "Włącz blokowanie pamięci (mlock), aby zapobiec swappingowi danych modelu z RAM. Ta opcja blokuje zbiór stron roboczych modelu w RAM, co gwarantuje, że nie będą one wymieniane na dysk. Może to pomóc w utrzymaniu wydajności poprzez unikanie błędów strony i zapewnienie szybkiego dostępu do danych.",
 	"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.": "Włącz mapowanie pamięci (mmap), aby załadować dane modelu. Ta opcja pozwala systemowi traktować pliki dysku jako rozszerzenie RAM, co może poprawić wydajność modelu przez umożliwienie szybszego dostępu do danych. Należy jednak pamiętać, że ta funkcja może nie działać poprawnie ze wszystkimi systemami i zużywać znaczną ilość przestrzeni dyskowej.",
 	"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.": "Włącz mapowanie pamięci (mmap), aby załadować dane modelu. Ta opcja pozwala systemowi traktować pliki dysku jako rozszerzenie RAM, co może poprawić wydajność modelu przez umożliwienie szybszego dostępu do danych. Należy jednak pamiętać, że ta funkcja może nie działać poprawnie ze wszystkimi systemami i zużywać znaczną ilość przestrzeni dyskowej.",
 	"Enable Message Rating": "Włącz ocenianie wiadomości",
 	"Enable Message Rating": "Włącz ocenianie wiadomości",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Włącz próbkowanie Mirostat w celu kontrolowania perplexity. (Domyślnie: 0, 0 = Wyłączone, 1 = Mirostat, 2 = Mirostat 2.0)",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Włącz próbkowanie Mirostat w celu kontrolowania perplexity. (Domyślnie: 0, 0 = Wyłączone, 1 = Mirostat, 2 = Mirostat 2.0)",
 	"Enable New Sign Ups": "Włącz nowe rejestracje",
 	"Enable New Sign Ups": "Włącz nowe rejestracje",
-	"Enable OneDrive": "",
-	"Enable Web Search": "Włączanie wyszukiwania internetowego",
 	"Enabled": "Włączone",
 	"Enabled": "Włączone",
-	"Engine": "Silnik",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Upewnij się, że twój plik CSV zawiera dokładnie 4 kolumny w następującej kolejności: Nazwa, Email, Hasło, Rola.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Upewnij się, że twój plik CSV zawiera dokładnie 4 kolumny w następującej kolejności: Nazwa, Email, Hasło, Rola.",
 	"Enter {{role}} message here": "Wprowadź komunikat dla {{role}} tutaj",
 	"Enter {{role}} message here": "Wprowadź komunikat dla {{role}} tutaj",
 	"Enter a detail about yourself for your LLMs to recall": "Podaj informacje o sobie, aby LLMs mogły je przypomnieć.",
 	"Enter a detail about yourself for your LLMs to recall": "Podaj informacje o sobie, aby LLMs mogły je przypomnieć.",
@@ -572,6 +572,7 @@
 	"Input commands": "Wprowadź polecenia",
 	"Input commands": "Wprowadź polecenia",
 	"Install from Github URL": "Instalacja z adresu URL serwisu Github",
 	"Install from Github URL": "Instalacja z adresu URL serwisu Github",
 	"Instant Auto-Send After Voice Transcription": "Automatyczne natychmiastowe wysyłanie po transkrypcji głosowej",
 	"Instant Auto-Send After Voice Transcription": "Automatyczne natychmiastowe wysyłanie po transkrypcji głosowej",
+	"Integration": "",
 	"Interface": "Interfejs",
 	"Interface": "Interfejs",
 	"Invalid file format.": "Nieprawidłowy format pliku.",
 	"Invalid file format.": "Nieprawidłowy format pliku.",
 	"Invalid Tag": "Nieprawidłowy tag",
 	"Invalid Tag": "Nieprawidłowy tag",
@@ -619,6 +620,7 @@
 	"Listening...": "Słuchanie...",
 	"Listening...": "Słuchanie...",
 	"Llama.cpp": "Llama.cpp",
 	"Llama.cpp": "Llama.cpp",
 	"LLMs can make mistakes. Verify important information.": "LLMy mogą popełniać błędy. Upewnij się, że ważne informacje są poprawne.",
 	"LLMs can make mistakes. Verify important information.": "LLMy mogą popełniać błędy. Upewnij się, że ważne informacje są poprawne.",
+	"Loader": "",
 	"Loading Kokoro.js...": "Wczytywanie Kokoro.js...",
 	"Loading Kokoro.js...": "Wczytywanie Kokoro.js...",
 	"Local": "Lokalny",
 	"Local": "Lokalny",
 	"Local Models": "Modele lokalne",
 	"Local Models": "Modele lokalne",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "Nie znaleziono żadnej zawartości HTML, CSS ani JavaScript.",
 	"No HTML, CSS, or JavaScript content found.": "Nie znaleziono żadnej zawartości HTML, CSS ani JavaScript.",
 	"No inference engine with management support found": "Nie znaleziono silnika wnioskującego z obsługą zarządzania",
 	"No inference engine with management support found": "Nie znaleziono silnika wnioskującego z obsługą zarządzania",
 	"No knowledge found": "Brak znalezionej wiedzy",
 	"No knowledge found": "Brak znalezionej wiedzy",
+	"No memories to clear": "",
 	"No model IDs": "Brak identyfikatorów modeli",
 	"No model IDs": "Brak identyfikatorów modeli",
 	"No models found": "Nie znaleziono modeli",
 	"No models found": "Nie znaleziono modeli",
 	"No models selected": "Brak wybranych modeli",
 	"No models selected": "Brak wybranych modeli",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "Podpowiedź została zaktualizowana pomyślnie.",
 	"Prompt updated successfully": "Podpowiedź została zaktualizowana pomyślnie.",
 	"Prompts": "Podpowiedzi",
 	"Prompts": "Podpowiedzi",
 	"Prompts Access": "Dostęp do podpowiedzi",
 	"Prompts Access": "Dostęp do podpowiedzi",
-	"Proxy URL": "Adres URL proxy",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Pobierz \"{{searchValue}}\" z Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Pobierz \"{{searchValue}}\" z Ollama.com",
 	"Pull a model from Ollama.com": "Pobierz model z Ollama.com",
 	"Pull a model from Ollama.com": "Pobierz model z Ollama.com",
 	"Query Generation Prompt": "Podpowiedź do generowania zapytań",
 	"Query Generation Prompt": "Podpowiedź do generowania zapytań",
-	"Query Params": "Parametry zapytania",
 	"RAG Template": "Szablon RAG",
 	"RAG Template": "Szablon RAG",
 	"Rating": "Ocena",
 	"Rating": "Ocena",
 	"Re-rank models by topic similarity": "Ponowny ranking modeli według podobieństwa tematycznego",
 	"Re-rank models by topic similarity": "Ponowny ranking modeli według podobieństwa tematycznego",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Powiadomienia o odpowiedziach nie mogą zostać aktywowane, ponieważ uprawnienia strony zostały odrzucone. Proszę odwiedzić ustawienia przeglądarki, aby przyznać wymagany dostęp.",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Powiadomienia o odpowiedziach nie mogą zostać aktywowane, ponieważ uprawnienia strony zostały odrzucone. Proszę odwiedzić ustawienia przeglądarki, aby przyznać wymagany dostęp.",
 	"Response splitting": "Rozdzielanie odpowiedzi",
 	"Response splitting": "Rozdzielanie odpowiedzi",
 	"Result": "Wynik",
 	"Result": "Wynik",
+	"Retrieval": "",
 	"Retrieval Query Generation": "Generowanie zapytań pobierania",
 	"Retrieval Query Generation": "Generowanie zapytań pobierania",
 	"Rich Text Input for Chat": "Pole do wprowadzania tekstu sformatowanego dla czatu",
 	"Rich Text Input for Chat": "Pole do wprowadzania tekstu sformatowanego dla czatu",
 	"RK": "RK",
 	"RK": "RK",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Uwaga: Uruchamianie Jupytera umożliwia wykonywanie dowolnego kodu, co stwarza poważne zagrożenia dla bezpieczeństwa – postępuj z ekstremalną ostrożnością.",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Uwaga: Uruchamianie Jupytera umożliwia wykonywanie dowolnego kodu, co stwarza poważne zagrożenia dla bezpieczeństwa – postępuj z ekstremalną ostrożnością.",
 	"Web": "Sieć internetowa",
 	"Web": "Sieć internetowa",
 	"Web API": "Interfejs API sieci web",
 	"Web API": "Interfejs API sieci web",
-	"Web Loader Settings": "Ustawienia ładowania strony",
 	"Web Search": "Wyszukiwarka internetowa",
 	"Web Search": "Wyszukiwarka internetowa",
 	"Web Search Engine": "Silnik wyszukiweania w sieci",
 	"Web Search Engine": "Silnik wyszukiweania w sieci",
 	"Web Search in Chat": "Wyszukiwanie w sieci Web na czacie",
 	"Web Search in Chat": "Wyszukiwanie w sieci Web na czacie",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "Twoje konto oczekuje obecnie na aktywację.",
 	"Your account status is currently pending activation.": "Twoje konto oczekuje obecnie na aktywację.",
 	"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.": "Cała Twoja wpłata trafi bezpośrednio do dewelopera wtyczki; Open WebUI nie pobiera żadnej prowizji. Należy jednak pamiętać, że wybrana platforma finansowania może mieć własne opłaty.",
 	"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.": "Cała Twoja wpłata trafi bezpośrednio do dewelopera wtyczki; Open WebUI nie pobiera żadnej prowizji. Należy jednak pamiętać, że wybrana platforma finansowania może mieć własne opłaty.",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
-	"Youtube Loader Settings": "Ustawienia pobierania z YouTube"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/pt-BR/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "Arquivar Todos os Chats",
 	"Archive All Chats": "Arquivar Todos os Chats",
 	"Archived Chats": "Chats Arquivados",
 	"Archived Chats": "Chats Arquivados",
 	"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 this channel?": "",
 	"Are you sure you want to delete this channel?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "Você tem certeza que deseja desarquivar todos os chats arquivados?",
 	"Are you sure you want to unarchive all archived chats?": "Você tem certeza que deseja desarquivar todos os chats arquivados?",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "",
 	"Bocha Search API Key": "",
 	"Brave Search API Key": "Chave API do Brave Search",
 	"Brave Search API Key": "Chave API do Brave Search",
 	"By {{name}}": "Por {{name}}",
 	"By {{name}}": "Por {{name}}",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "Ignorar verificação SSL para Sites",
 	"Bypass SSL verification for Websites": "Ignorar verificação SSL para Sites",
 	"Calendar": "",
 	"Calendar": "",
 	"Call": "Chamada",
 	"Call": "Chamada",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "Verificando atualizações...",
 	"Checking for updates...": "Verificando atualizações...",
 	"Choose a model before saving...": "Escolha um modelo antes de salvar...",
 	"Choose a model before saving...": "Escolha um modelo antes de salvar...",
 	"Chunk Overlap": "Sobreposição de Chunk",
 	"Chunk Overlap": "Sobreposição de Chunk",
-	"Chunk Params": "Parâmetros de Chunk",
 	"Chunk Size": "Tamanho do Chunk",
 	"Chunk Size": "Tamanho do Chunk",
 	"Ciphers": "Cifras",
 	"Ciphers": "Cifras",
 	"Citation": "Citação",
 	"Citation": "Citação",
 	"Clear memory": "Limpar memória",
 	"Clear memory": "Limpar memória",
+	"Clear Memory": "",
 	"click here": "Clique aqui",
 	"click here": "Clique aqui",
 	"Click here for filter guides.": "Clique aqui para obter instruções de filtros.",
 	"Click here for filter guides.": "Clique aqui para obter instruções de filtros.",
 	"Click here for help.": "Clique aqui para obter ajuda.",
 	"Click here for help.": "Clique aqui para obter ajuda.",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Contact Admin for WebUI Access": "Contate o Admin para Acesso ao WebUI",
 	"Contact Admin for WebUI Access": "Contate o Admin para Acesso ao WebUI",
 	"Content": "Conteúdo",
 	"Content": "Conteúdo",
-	"Content Extraction": "Extração de Conteúdo",
+	"Content Extraction Engine": "",
 	"Context Length": "Tamanho de Contexto",
 	"Context Length": "Tamanho de Contexto",
 	"Continue Response": "Continuar Resposta",
 	"Continue Response": "Continuar Resposta",
 	"Continue with {{provider}}": "Continuar com {{provider}}",
 	"Continue with {{provider}}": "Continuar com {{provider}}",
@@ -246,6 +248,7 @@
 	"Current Model": "Modelo Atual",
 	"Current Model": "Modelo Atual",
 	"Current Password": "Senha Atual",
 	"Current Password": "Senha Atual",
 	"Custom": "Personalizado",
 	"Custom": "Personalizado",
+	"Danger Zone": "",
 	"Dark": "Escuro",
 	"Dark": "Escuro",
 	"Database": "Banco de Dados",
 	"Database": "Banco de Dados",
 	"December": "Dezembro",
 	"December": "Dezembro",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "",
 	"ElevenLabs": "",
 	"Email": "Email",
 	"Email": "Email",
 	"Embark on adventures": "Embarque em aventuras",
 	"Embark on adventures": "Embarque em aventuras",
+	"Embedding": "",
 	"Embedding Batch Size": "Tamanho do Lote de Embedding",
 	"Embedding Batch Size": "Tamanho do Lote de Embedding",
 	"Embedding Model": "Modelo de Embedding",
 	"Embedding Model": "Modelo de Embedding",
 	"Embedding Model Engine": "Motor do Modelo de Embedding",
 	"Embedding Model Engine": "Motor do Modelo de Embedding",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Ativar Compartilhamento com a Comunidade",
 	"Enable Community Sharing": "Ativar Compartilhamento com a Comunidade",
-	"Enable Google Drive": "",
 	"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.": "Habilite o bloqueio de memória (mlock) para evitar que os dados do modelo sejam transferidos da RAM para a área de troca (swap). Essa opção bloqueia o conjunto de páginas em uso pelo modelo na RAM, garantindo que elas não sejam transferidas para o disco. Isso pode ajudar a manter o desempenho, evitando falhas de página e garantindo acesso rápido aos dados.",
 	"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.": "Habilite o bloqueio de memória (mlock) para evitar que os dados do modelo sejam transferidos da RAM para a área de troca (swap). Essa opção bloqueia o conjunto de páginas em uso pelo modelo na RAM, garantindo que elas não sejam transferidas para o disco. Isso pode ajudar a manter o desempenho, evitando falhas de página e garantindo acesso rápido aos dados.",
 	"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.": "Habilite o mapeamento de memória (mmap) para carregar dados do modelo. Esta opção permite que o sistema use o armazenamento em disco como uma extensão da RAM, tratando os arquivos do disco como se estivessem na RAM. Isso pode melhorar o desempenho do modelo, permitindo acesso mais rápido aos dados. No entanto, pode não funcionar corretamente com todos os sistemas e consumir uma quantidade significativa de espaço em disco.",
 	"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.": "Habilite o mapeamento de memória (mmap) para carregar dados do modelo. Esta opção permite que o sistema use o armazenamento em disco como uma extensão da RAM, tratando os arquivos do disco como se estivessem na RAM. Isso pode melhorar o desempenho do modelo, permitindo acesso mais rápido aos dados. No entanto, pode não funcionar corretamente com todos os sistemas e consumir uma quantidade significativa de espaço em disco.",
 	"Enable Message Rating": "Ativar Avaliação de Mensagens",
 	"Enable Message Rating": "Ativar Avaliação de Mensagens",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Habilite a amostragem Mirostat para controlar a perplexidade. (Padrão: 0, 0 = Desativado, 1 = Mirostat, 2 = Mirostat 2.0)",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Habilite a amostragem Mirostat para controlar a perplexidade. (Padrão: 0, 0 = Desativado, 1 = Mirostat, 2 = Mirostat 2.0)",
 	"Enable New Sign Ups": "Ativar Novos Cadastros",
 	"Enable New Sign Ups": "Ativar Novos Cadastros",
-	"Enable OneDrive": "",
-	"Enable Web Search": "Ativar Pesquisa na Web",
 	"Enabled": "Ativado",
 	"Enabled": "Ativado",
-	"Engine": "Motor",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Certifique-se de que seu arquivo CSV inclua 4 colunas nesta ordem: Nome, Email, Senha, Função.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Certifique-se de que seu arquivo CSV inclua 4 colunas nesta ordem: Nome, Email, Senha, Função.",
 	"Enter {{role}} message here": "Digite a mensagem de {{role}} aqui",
 	"Enter {{role}} message here": "Digite a mensagem de {{role}} aqui",
 	"Enter a detail about yourself for your LLMs to recall": "Digite um detalhe sobre você para seus LLMs lembrarem",
 	"Enter a detail about yourself for your LLMs to recall": "Digite um detalhe sobre você para seus LLMs lembrarem",
@@ -572,6 +572,7 @@
 	"Input commands": "Comandos de entrada",
 	"Input commands": "Comandos de entrada",
 	"Install from Github URL": "Instalar da URL do Github",
 	"Install from Github URL": "Instalar da URL do Github",
 	"Instant Auto-Send After Voice Transcription": "Envio Automático Instantâneo Após Transcrição de Voz",
 	"Instant Auto-Send After Voice Transcription": "Envio Automático Instantâneo Após Transcrição de Voz",
+	"Integration": "",
 	"Interface": "Interface",
 	"Interface": "Interface",
 	"Invalid file format.": "Formato de arquivo inválido.",
 	"Invalid file format.": "Formato de arquivo inválido.",
 	"Invalid Tag": "Tag Inválida",
 	"Invalid Tag": "Tag Inválida",
@@ -619,6 +620,7 @@
 	"Listening...": "Escutando...",
 	"Listening...": "Escutando...",
 	"Llama.cpp": "",
 	"Llama.cpp": "",
 	"LLMs can make mistakes. Verify important information.": "LLMs podem cometer erros. Verifique informações importantes.",
 	"LLMs can make mistakes. Verify important information.": "LLMs podem cometer erros. Verifique informações importantes.",
+	"Loader": "",
 	"Loading Kokoro.js...": "",
 	"Loading Kokoro.js...": "",
 	"Local": "",
 	"Local": "",
 	"Local Models": "Modelos Locais",
 	"Local Models": "Modelos Locais",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "Nenhum conteúdo HTML, CSS ou JavaScript encontrado.",
 	"No HTML, CSS, or JavaScript content found.": "Nenhum conteúdo HTML, CSS ou JavaScript encontrado.",
 	"No inference engine with management support found": "",
 	"No inference engine with management support found": "",
 	"No knowledge found": "Nenhum conhecimento encontrado",
 	"No knowledge found": "Nenhum conhecimento encontrado",
+	"No memories to clear": "",
 	"No model IDs": "Nenhum ID de modelo",
 	"No model IDs": "Nenhum ID de modelo",
 	"No models found": "Nenhum modelo encontrado",
 	"No models found": "Nenhum modelo encontrado",
 	"No models selected": "",
 	"No models selected": "",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "Prompt atualizado com sucesso",
 	"Prompt updated successfully": "Prompt atualizado com sucesso",
 	"Prompts": "Prompts",
 	"Prompts": "Prompts",
 	"Prompts Access": "Acessar prompts",
 	"Prompts Access": "Acessar prompts",
-	"Proxy URL": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Obter \"{{searchValue}}\" de Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Obter \"{{searchValue}}\" de Ollama.com",
 	"Pull a model from Ollama.com": "Obter um modelo de Ollama.com",
 	"Pull a model from Ollama.com": "Obter um modelo de Ollama.com",
 	"Query Generation Prompt": "Prompt de Geração de Consulta",
 	"Query Generation Prompt": "Prompt de Geração de Consulta",
-	"Query Params": "Parâmetros de Consulta",
 	"RAG Template": "Modelo RAG",
 	"RAG Template": "Modelo RAG",
 	"Rating": "Avaliação",
 	"Rating": "Avaliação",
 	"Re-rank models by topic similarity": "Reclassificação de modelos por similaridade de tópico",
 	"Re-rank models by topic similarity": "Reclassificação de modelos por similaridade de tópico",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Notificações de resposta não podem ser ativadas pois as permissões do site foram negadas. Por favor, visite as configurações do seu navegador para conceder o acesso necessário.",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Notificações de resposta não podem ser ativadas pois as permissões do site foram negadas. Por favor, visite as configurações do seu navegador para conceder o acesso necessário.",
 	"Response splitting": "Divisão da Resposta",
 	"Response splitting": "Divisão da Resposta",
 	"Result": "Resultado",
 	"Result": "Resultado",
+	"Retrieval": "",
 	"Retrieval Query Generation": "",
 	"Retrieval Query Generation": "",
 	"Rich Text Input for Chat": "Entrada de rich text para bate-papo",
 	"Rich Text Input for Chat": "Entrada de rich text para bate-papo",
 	"RK": "",
 	"RK": "",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Web": "Web",
 	"Web": "Web",
 	"Web API": "API Web",
 	"Web API": "API Web",
-	"Web Loader Settings": "Configurações do Carregador Web",
 	"Web Search": "Pesquisa na Web",
 	"Web Search": "Pesquisa na Web",
 	"Web Search Engine": "Mecanismo de Busca na Web",
 	"Web Search Engine": "Mecanismo de Busca na Web",
 	"Web Search in Chat": "",
 	"Web Search in Chat": "",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "O status da sua conta está atualmente aguardando ativação.",
 	"Your account status is currently pending activation.": "O status da sua conta está atualmente aguardando ativação.",
 	"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.": "Toda a sua contribuição irá diretamente para o desenvolvedor do plugin; o Open WebUI não retém nenhuma porcentagem. No entanto, a plataforma de financiamento escolhida pode ter suas próprias taxas.",
 	"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.": "Toda a sua contribuição irá diretamente para o desenvolvedor do plugin; o Open WebUI não retém nenhuma porcentagem. No entanto, a plataforma de financiamento escolhida pode ter suas próprias taxas.",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
-	"Youtube Loader Settings": "Configurações do Carregador Youtube"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/pt-PT/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "Arquivar todos os chats",
 	"Archive All Chats": "Arquivar todos os chats",
 	"Archived Chats": "Conversas arquivadas",
 	"Archived Chats": "Conversas arquivadas",
 	"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 this channel?": "",
 	"Are you sure you want to delete this channel?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "",
 	"Bocha Search API Key": "",
 	"Brave Search API Key": "Chave da API de Pesquisa Brave",
 	"Brave Search API Key": "Chave da API de Pesquisa Brave",
 	"By {{name}}": "",
 	"By {{name}}": "",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "Ignorar verificação SSL para sites",
 	"Bypass SSL verification for Websites": "Ignorar verificação SSL para sites",
 	"Calendar": "",
 	"Calendar": "",
 	"Call": "Chamar",
 	"Call": "Chamar",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "Verificando atualizações...",
 	"Checking for updates...": "Verificando atualizações...",
 	"Choose a model before saving...": "Escolha um modelo antes de guardar...",
 	"Choose a model before saving...": "Escolha um modelo antes de guardar...",
 	"Chunk Overlap": "Sobreposição de Fragmento",
 	"Chunk Overlap": "Sobreposição de Fragmento",
-	"Chunk Params": "Parâmetros de Fragmento",
 	"Chunk Size": "Tamanho do Fragmento",
 	"Chunk Size": "Tamanho do Fragmento",
 	"Ciphers": "",
 	"Ciphers": "",
 	"Citation": "Citação",
 	"Citation": "Citação",
 	"Clear memory": "Limpar memória",
 	"Clear memory": "Limpar memória",
+	"Clear Memory": "",
 	"click here": "",
 	"click here": "",
 	"Click here for filter guides.": "",
 	"Click here for filter guides.": "",
 	"Click here for help.": "Clique aqui para obter ajuda.",
 	"Click here for help.": "Clique aqui para obter ajuda.",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Contact Admin for WebUI Access": "Contatar Admin para acesso ao WebUI",
 	"Contact Admin for WebUI Access": "Contatar Admin para acesso ao WebUI",
 	"Content": "Conteúdo",
 	"Content": "Conteúdo",
-	"Content Extraction": "",
+	"Content Extraction Engine": "",
 	"Context Length": "Comprimento do Contexto",
 	"Context Length": "Comprimento do Contexto",
 	"Continue Response": "Continuar resposta",
 	"Continue Response": "Continuar resposta",
 	"Continue with {{provider}}": "",
 	"Continue with {{provider}}": "",
@@ -246,6 +248,7 @@
 	"Current Model": "Modelo Atual",
 	"Current Model": "Modelo Atual",
 	"Current Password": "Senha Atual",
 	"Current Password": "Senha Atual",
 	"Custom": "Personalizado",
 	"Custom": "Personalizado",
+	"Danger Zone": "",
 	"Dark": "Escuro",
 	"Dark": "Escuro",
 	"Database": "Base de dados",
 	"Database": "Base de dados",
 	"December": "Dezembro",
 	"December": "Dezembro",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "",
 	"ElevenLabs": "",
 	"Email": "E-mail",
 	"Email": "E-mail",
 	"Embark on adventures": "",
 	"Embark on adventures": "",
+	"Embedding": "",
 	"Embedding Batch Size": "Tamanho do Lote do Embedding",
 	"Embedding Batch Size": "Tamanho do Lote do Embedding",
 	"Embedding Model": "Modelo de Embedding",
 	"Embedding Model": "Modelo de Embedding",
 	"Embedding Model Engine": "Motor de Modelo de Embedding",
 	"Embedding Model Engine": "Motor de Modelo de Embedding",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Active a Partilha da Comunidade",
 	"Enable Community Sharing": "Active a Partilha da Comunidade",
-	"Enable Google Drive": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Ativar Novas Inscrições",
 	"Enable New Sign Ups": "Ativar Novas Inscrições",
-	"Enable OneDrive": "",
-	"Enable Web Search": "Ativar pesquisa na Web",
 	"Enabled": "",
 	"Enabled": "",
-	"Engine": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Confirme que o seu ficheiro CSV inclui 4 colunas nesta ordem: Nome, E-mail, Senha, Função.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Confirme que o seu ficheiro CSV inclui 4 colunas nesta ordem: Nome, E-mail, Senha, Função.",
 	"Enter {{role}} message here": "Escreva a mensagem de {{role}} aqui",
 	"Enter {{role}} message here": "Escreva a mensagem de {{role}} aqui",
 	"Enter a detail about yourself for your LLMs to recall": "Escreva um detalhe sobre você para que os seus LLMs possam lembrar-se",
 	"Enter a detail about yourself for your LLMs to recall": "Escreva um detalhe sobre você para que os seus LLMs possam lembrar-se",
@@ -572,6 +572,7 @@
 	"Input commands": "Comandos de entrada",
 	"Input commands": "Comandos de entrada",
 	"Install from Github URL": "Instalar a partir do URL do Github",
 	"Install from Github URL": "Instalar a partir do URL do Github",
 	"Instant Auto-Send After Voice Transcription": "Enviar automaticamente depois da transcrição da voz",
 	"Instant Auto-Send After Voice Transcription": "Enviar automaticamente depois da transcrição da voz",
+	"Integration": "",
 	"Interface": "Interface",
 	"Interface": "Interface",
 	"Invalid file format.": "",
 	"Invalid file format.": "",
 	"Invalid Tag": "Etiqueta Inválida",
 	"Invalid Tag": "Etiqueta Inválida",
@@ -619,6 +620,7 @@
 	"Listening...": "A escutar...",
 	"Listening...": "A escutar...",
 	"Llama.cpp": "",
 	"Llama.cpp": "",
 	"LLMs can make mistakes. Verify important information.": "LLMs podem cometer erros. Verifique informações importantes.",
 	"LLMs can make mistakes. Verify important information.": "LLMs podem cometer erros. Verifique informações importantes.",
+	"Loader": "",
 	"Loading Kokoro.js...": "",
 	"Loading Kokoro.js...": "",
 	"Local": "",
 	"Local": "",
 	"Local Models": "Modelos Locais",
 	"Local Models": "Modelos Locais",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No inference engine with management support found": "",
 	"No inference engine with management support found": "",
 	"No knowledge found": "",
 	"No knowledge found": "",
+	"No memories to clear": "",
 	"No model IDs": "",
 	"No model IDs": "",
 	"No models found": "",
 	"No models found": "",
 	"No models selected": "",
 	"No models selected": "",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "Prompts",
 	"Prompts": "Prompts",
 	"Prompts Access": "",
 	"Prompts Access": "",
-	"Proxy URL": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Puxar \"{{searchValue}}\" do Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Puxar \"{{searchValue}}\" do Ollama.com",
 	"Pull a model from Ollama.com": "Puxar um modelo do Ollama.com",
 	"Pull a model from Ollama.com": "Puxar um modelo do Ollama.com",
 	"Query Generation Prompt": "",
 	"Query Generation Prompt": "",
-	"Query Params": "Parâmetros de Consulta",
 	"RAG Template": "Modelo RAG",
 	"RAG Template": "Modelo RAG",
 	"Rating": "",
 	"Rating": "",
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"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 splitting": "",
 	"Result": "",
 	"Result": "",
+	"Retrieval": "",
 	"Retrieval Query Generation": "",
 	"Retrieval Query Generation": "",
 	"Rich Text Input for Chat": "",
 	"Rich Text Input for Chat": "",
 	"RK": "",
 	"RK": "",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Web": "Web",
 	"Web": "Web",
 	"Web API": "Web API",
 	"Web API": "Web API",
-	"Web Loader Settings": "Configurações do Carregador da Web",
 	"Web Search": "Pesquisa na Web",
 	"Web Search": "Pesquisa na Web",
 	"Web Search Engine": "Motor de Pesquisa Web",
 	"Web Search Engine": "Motor de Pesquisa Web",
 	"Web Search in Chat": "",
 	"Web Search in Chat": "",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "O status da sua conta está atualmente com a ativação pendente.",
 	"Your account status is currently pending activation.": "O status da sua conta está atualmente com a ativação pendente.",
 	"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.": "",
 	"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.": "",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
-	"Youtube Loader Settings": "Configurações do Carregador do Youtube"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/ro-RO/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "Arhivează Toate Conversațiile",
 	"Archive All Chats": "Arhivează Toate Conversațiile",
 	"Archived Chats": "Conversații Arhivate",
 	"Archived Chats": "Conversații Arhivate",
 	"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 this channel?": "Ești sigur că vrei să ștergi acest canal?",
 	"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 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?",
 	"Are you sure you want to unarchive all archived chats?": "Ești sigur că vrei să dezarhivezi toate conversațiile arhivate?",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "",
 	"Bocha Search API Key": "",
 	"Brave Search API Key": "Cheie API Brave Search",
 	"Brave Search API Key": "Cheie API Brave Search",
 	"By {{name}}": "",
 	"By {{name}}": "",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "Ocolește verificarea SSL pentru site-uri web",
 	"Bypass SSL verification for Websites": "Ocolește verificarea SSL pentru site-uri web",
 	"Calendar": "",
 	"Calendar": "",
 	"Call": "Apel",
 	"Call": "Apel",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "Se verifică actualizările...",
 	"Checking for updates...": "Se verifică actualizările...",
 	"Choose a model before saving...": "Alege un model înainte de a salva...",
 	"Choose a model before saving...": "Alege un model înainte de a salva...",
 	"Chunk Overlap": "Suprapunere Bloc",
 	"Chunk Overlap": "Suprapunere Bloc",
-	"Chunk Params": "Parametri Bloc",
 	"Chunk Size": "Dimensiune Bloc",
 	"Chunk Size": "Dimensiune Bloc",
 	"Ciphers": "Cifruri",
 	"Ciphers": "Cifruri",
 	"Citation": "Citație",
 	"Citation": "Citație",
 	"Clear memory": "Șterge memoria",
 	"Clear memory": "Șterge memoria",
+	"Clear Memory": "",
 	"click here": "apasă aici.",
 	"click here": "apasă aici.",
 	"Click here for filter guides.": "Apasă aici pentru ghidul de filtrare.",
 	"Click here for filter guides.": "Apasă aici pentru ghidul de filtrare.",
 	"Click here for help.": "Apasă aici pentru ajutor.",
 	"Click here for help.": "Apasă aici pentru ajutor.",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Contact Admin for WebUI Access": "Contactează administratorul pentru acces WebUI",
 	"Contact Admin for WebUI Access": "Contactează administratorul pentru acces WebUI",
 	"Content": "Conținut",
 	"Content": "Conținut",
-	"Content Extraction": "Extragere Conținut",
+	"Content Extraction Engine": "",
 	"Context Length": "Lungime Context",
 	"Context Length": "Lungime Context",
 	"Continue Response": "Continuă Răspunsul",
 	"Continue Response": "Continuă Răspunsul",
 	"Continue with {{provider}}": "Continuă cu {{provider}}",
 	"Continue with {{provider}}": "Continuă cu {{provider}}",
@@ -246,6 +248,7 @@
 	"Current Model": "Model Curent",
 	"Current Model": "Model Curent",
 	"Current Password": "Parola Curentă",
 	"Current Password": "Parola Curentă",
 	"Custom": "Personalizat",
 	"Custom": "Personalizat",
+	"Danger Zone": "",
 	"Dark": "Întunecat",
 	"Dark": "Întunecat",
 	"Database": "Bază de Date",
 	"Database": "Bază de Date",
 	"December": "Decembrie",
 	"December": "Decembrie",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "ElevenLabs",
 	"ElevenLabs": "ElevenLabs",
 	"Email": "Email",
 	"Email": "Email",
 	"Embark on adventures": "",
 	"Embark on adventures": "",
+	"Embedding": "",
 	"Embedding Batch Size": "Dimensiune Lot de Încapsulare",
 	"Embedding Batch Size": "Dimensiune Lot de Încapsulare",
 	"Embedding Model": "Model de Încapsulare",
 	"Embedding Model": "Model de Încapsulare",
 	"Embedding Model Engine": "Motor de Model de Încapsulare",
 	"Embedding Model Engine": "Motor de Model de Încapsulare",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "Activează generarea automată pentru mesajele de chat",
 	"Enable autocomplete generation for chat messages": "Activează generarea automată pentru mesajele de chat",
 	"Enable Code Interpreter": "Activează interpretul de cod",
 	"Enable Code Interpreter": "Activează interpretul de cod",
 	"Enable Community Sharing": "Activează Partajarea Comunitară",
 	"Enable Community Sharing": "Activează Partajarea Comunitară",
-	"Enable Google Drive": "Activează Google Drive",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"Enable Message Rating": "Activează Evaluarea Mesajelor",
 	"Enable Message Rating": "Activează Evaluarea Mesajelor",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Activează Înscrierile Noi",
 	"Enable New Sign Ups": "Activează Înscrierile Noi",
-	"Enable OneDrive": "",
-	"Enable Web Search": "Activează Căutarea pe Web",
 	"Enabled": "Activat",
 	"Enabled": "Activat",
-	"Engine": "Motor",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Asigurați-vă că fișierul CSV include 4 coloane în această ordine: Nume, Email, Parolă, Rol.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Asigurați-vă că fișierul CSV include 4 coloane în această ordine: Nume, Email, Parolă, Rol.",
 	"Enter {{role}} message here": "Introduceți mesajul pentru {{role}} aici",
 	"Enter {{role}} message here": "Introduceți mesajul pentru {{role}} aici",
 	"Enter a detail about yourself for your LLMs to recall": "Introduceți un detaliu despre dvs. pe care LLM-urile să-l rețină",
 	"Enter a detail about yourself for your LLMs to recall": "Introduceți un detaliu despre dvs. pe care LLM-urile să-l rețină",
@@ -572,6 +572,7 @@
 	"Input commands": "Comenzi de intrare",
 	"Input commands": "Comenzi de intrare",
 	"Install from Github URL": "Instalează de la URL-ul Github",
 	"Install from Github URL": "Instalează de la URL-ul Github",
 	"Instant Auto-Send After Voice Transcription": "Trimitere Automată Instantanee După Transcrierea Vocii",
 	"Instant Auto-Send After Voice Transcription": "Trimitere Automată Instantanee După Transcrierea Vocii",
+	"Integration": "",
 	"Interface": "Interfață",
 	"Interface": "Interfață",
 	"Invalid file format.": "Format de fișier invalid.",
 	"Invalid file format.": "Format de fișier invalid.",
 	"Invalid Tag": "Etichetă Invalidă",
 	"Invalid Tag": "Etichetă Invalidă",
@@ -619,6 +620,7 @@
 	"Listening...": "Ascult...",
 	"Listening...": "Ascult...",
 	"Llama.cpp": "",
 	"Llama.cpp": "",
 	"LLMs can make mistakes. Verify important information.": "LLM-urile pot face greșeli. Verificați informațiile importante.",
 	"LLMs can make mistakes. Verify important information.": "LLM-urile pot face greșeli. Verificați informațiile importante.",
+	"Loader": "",
 	"Loading Kokoro.js...": "",
 	"Loading Kokoro.js...": "",
 	"Local": "",
 	"Local": "",
 	"Local Models": "Modele Locale",
 	"Local Models": "Modele Locale",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "Niciun conținut HTML, CSS sau JavaScript găsit.",
 	"No HTML, CSS, or JavaScript content found.": "Niciun conținut HTML, CSS sau JavaScript găsit.",
 	"No inference engine with management support found": "",
 	"No inference engine with management support found": "",
 	"No knowledge found": "Nu au fost găsite informații.",
 	"No knowledge found": "Nu au fost găsite informații.",
+	"No memories to clear": "",
 	"No model IDs": "",
 	"No model IDs": "",
 	"No models found": "Nu s-au găsit modele",
 	"No models found": "Nu s-au găsit modele",
 	"No models selected": "",
 	"No models selected": "",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "Prompturi",
 	"Prompts": "Prompturi",
 	"Prompts Access": "",
 	"Prompts Access": "",
-	"Proxy URL": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Extrage \"{{searchValue}}\" de pe Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Extrage \"{{searchValue}}\" de pe Ollama.com",
 	"Pull a model from Ollama.com": "Extrage un model de pe Ollama.com",
 	"Pull a model from Ollama.com": "Extrage un model de pe Ollama.com",
 	"Query Generation Prompt": "",
 	"Query Generation Prompt": "",
-	"Query Params": "Parametri Interogare",
 	"RAG Template": "Șablon RAG",
 	"RAG Template": "Șablon RAG",
 	"Rating": "Evaluare",
 	"Rating": "Evaluare",
 	"Re-rank models by topic similarity": "Reordonează modelele în funcție de similaritatea tematică",
 	"Re-rank models by topic similarity": "Reordonează modelele în funcție de similaritatea tematică",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Notificările de răspuns nu pot fi activate deoarece permisiunile site-ului au fost refuzate. Vă rugăm să vizitați setările browserului pentru a acorda accesul necesar.",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Notificările de răspuns nu pot fi activate deoarece permisiunile site-ului au fost refuzate. Vă rugăm să vizitați setările browserului pentru a acorda accesul necesar.",
 	"Response splitting": "Împărțirea răspunsurilor",
 	"Response splitting": "Împărțirea răspunsurilor",
 	"Result": "Rezultat",
 	"Result": "Rezultat",
+	"Retrieval": "",
 	"Retrieval Query Generation": "",
 	"Retrieval Query Generation": "",
 	"Rich Text Input for Chat": "Introducere text îmbogățit pentru chat",
 	"Rich Text Input for Chat": "Introducere text îmbogățit pentru chat",
 	"RK": "RK",
 	"RK": "RK",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Web": "Web",
 	"Web": "Web",
 	"Web API": "API Web",
 	"Web API": "API Web",
-	"Web Loader Settings": "Setări Încărcător Web",
 	"Web Search": "Căutare Web",
 	"Web Search": "Căutare Web",
 	"Web Search Engine": "Motor de Căutare Web",
 	"Web Search Engine": "Motor de Căutare Web",
 	"Web Search in Chat": "",
 	"Web Search in Chat": "",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "Statusul contului dvs. este în așteptare pentru activare.",
 	"Your account status is currently pending activation.": "Statusul contului dvs. este în așteptare pentru activare.",
 	"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.": "Întreaga dvs. contribuție va merge direct la dezvoltatorul plugin-ului; Open WebUI nu ia niciun procent. Cu toate acestea, platforma de finanțare aleasă ar putea avea propriile taxe.",
 	"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.": "Întreaga dvs. contribuție va merge direct la dezvoltatorul plugin-ului; Open WebUI nu ia niciun procent. Cu toate acestea, platforma de finanțare aleasă ar putea avea propriile taxe.",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
-	"Youtube Loader Settings": "Setări Încărcător Youtube"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/ru-RU/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "Архивировать все чаты",
 	"Archive All Chats": "Архивировать все чаты",
 	"Archived Chats": "Архив чатов",
 	"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 this channel?": "",
 	"Are you sure you want to delete this channel?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "Вы уверены, что хотите разархивировать все заархивированные чаты?",
 	"Are you sure you want to unarchive all archived chats?": "Вы уверены, что хотите разархивировать все заархивированные чаты?",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "",
 	"Bocha Search API Key": "",
 	"Brave Search API Key": "Ключ API поиска Brave",
 	"Brave Search API Key": "Ключ API поиска Brave",
 	"By {{name}}": "",
 	"By {{name}}": "",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "Обход проверки SSL для веб-сайтов",
 	"Bypass SSL verification for Websites": "Обход проверки SSL для веб-сайтов",
 	"Calendar": "",
 	"Calendar": "",
 	"Call": "Вызов",
 	"Call": "Вызов",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "Проверка обновлений...",
 	"Checking for updates...": "Проверка обновлений...",
 	"Choose a model before saving...": "Выберите модель перед сохранением...",
 	"Choose a model before saving...": "Выберите модель перед сохранением...",
 	"Chunk Overlap": "Перекрытие фрагментов",
 	"Chunk Overlap": "Перекрытие фрагментов",
-	"Chunk Params": "Параметры фрагментов",
 	"Chunk Size": "Размер фрагмента",
 	"Chunk Size": "Размер фрагмента",
 	"Ciphers": "Шифры",
 	"Ciphers": "Шифры",
 	"Citation": "Цитирование",
 	"Citation": "Цитирование",
 	"Clear memory": "Очистить воспоминания",
 	"Clear memory": "Очистить воспоминания",
+	"Clear Memory": "",
 	"click here": "кликните сюда",
 	"click here": "кликните сюда",
 	"Click here for filter guides.": "Нажмите здесь, чтобы просмотреть руководства по фильтрам.",
 	"Click here for filter guides.": "Нажмите здесь, чтобы просмотреть руководства по фильтрам.",
 	"Click here for help.": "Нажмите здесь для получения помощи.",
 	"Click here for help.": "Нажмите здесь для получения помощи.",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Contact Admin for WebUI Access": "Обратитесь к администратору для получения доступа к WebUI",
 	"Contact Admin for WebUI Access": "Обратитесь к администратору для получения доступа к WebUI",
 	"Content": "Содержание",
 	"Content": "Содержание",
-	"Content Extraction": "Извлечение контента",
+	"Content Extraction Engine": "",
 	"Context Length": "Длина контекста",
 	"Context Length": "Длина контекста",
 	"Continue Response": "Продолжить ответ",
 	"Continue Response": "Продолжить ответ",
 	"Continue with {{provider}}": "Продолжить с {{provider}}",
 	"Continue with {{provider}}": "Продолжить с {{provider}}",
@@ -246,6 +248,7 @@
 	"Current Model": "Текущая модель",
 	"Current Model": "Текущая модель",
 	"Current Password": "Текущий пароль",
 	"Current Password": "Текущий пароль",
 	"Custom": "Пользовательский",
 	"Custom": "Пользовательский",
+	"Danger Zone": "",
 	"Dark": "Темная",
 	"Dark": "Темная",
 	"Database": "База данных",
 	"Database": "База данных",
 	"December": "Декабрь",
 	"December": "Декабрь",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "ElevenLabs",
 	"ElevenLabs": "ElevenLabs",
 	"Email": "Электронная почта",
 	"Email": "Электронная почта",
 	"Embark on adventures": "Отправляйтесь в приключения",
 	"Embark on adventures": "Отправляйтесь в приключения",
+	"Embedding": "",
 	"Embedding Batch Size": "Размер пакета для встраивания",
 	"Embedding Batch Size": "Размер пакета для встраивания",
 	"Embedding Model": "Модель встраивания",
 	"Embedding Model": "Модель встраивания",
 	"Embedding Model Engine": "Движок модели встраивания",
 	"Embedding Model Engine": "Движок модели встраивания",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "Включить генерацию автозаполнения для сообщений чата",
 	"Enable autocomplete generation for chat messages": "Включить генерацию автозаполнения для сообщений чата",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Включить совместное использование",
 	"Enable Community Sharing": "Включить совместное использование",
-	"Enable Google Drive": "",
 	"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.": "Включите блокировку памяти (mlock), чтобы предотвратить выгрузку данных модели из ОЗУ. Эта опция блокирует рабочий набор страниц модели в оперативной памяти, гарантируя, что они не будут выгружены на диск. Это может помочь поддерживать производительность, избегая ошибок страниц и обеспечивая быстрый доступ к данным.",
 	"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.": "Включите блокировку памяти (mlock), чтобы предотвратить выгрузку данных модели из ОЗУ. Эта опция блокирует рабочий набор страниц модели в оперативной памяти, гарантируя, что они не будут выгружены на диск. Это может помочь поддерживать производительность, избегая ошибок страниц и обеспечивая быстрый доступ к данным.",
 	"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.": "Включите отображение памяти (mmap), чтобы загрузить данные модели. Эта опция позволяет системе использовать дисковое хранилище в качестве расширения оперативной памяти, обрабатывая дисковые файлы так, как если бы они находились в оперативной памяти. Это может улучшить производительность модели за счет более быстрого доступа к данным. Однако он может работать некорректно со всеми системами и занимать значительный объем дискового пространства.",
 	"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.": "Включите отображение памяти (mmap), чтобы загрузить данные модели. Эта опция позволяет системе использовать дисковое хранилище в качестве расширения оперативной памяти, обрабатывая дисковые файлы так, как если бы они находились в оперативной памяти. Это может улучшить производительность модели за счет более быстрого доступа к данным. Однако он может работать некорректно со всеми системами и занимать значительный объем дискового пространства.",
 	"Enable Message Rating": "Разрешить оценку ответов",
 	"Enable Message Rating": "Разрешить оценку ответов",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Разрешить новые регистрации",
 	"Enable New Sign Ups": "Разрешить новые регистрации",
-	"Enable OneDrive": "",
-	"Enable Web Search": "Включить поиск в Интернете",
 	"Enabled": "Включено",
 	"Enabled": "Включено",
-	"Engine": "Движок",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Убедитесь, что ваш CSV-файл включает в себя 4 столбца в следующем порядке: Имя, Электронная почта, Пароль, Роль.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Убедитесь, что ваш CSV-файл включает в себя 4 столбца в следующем порядке: Имя, Электронная почта, Пароль, Роль.",
 	"Enter {{role}} message here": "Введите сообщение {{role}} здесь",
 	"Enter {{role}} message here": "Введите сообщение {{role}} здесь",
 	"Enter a detail about yourself for your LLMs to recall": "Введите детали о себе, чтобы LLMs могли запомнить",
 	"Enter a detail about yourself for your LLMs to recall": "Введите детали о себе, чтобы LLMs могли запомнить",
@@ -572,6 +572,7 @@
 	"Input commands": "Введите команды",
 	"Input commands": "Введите команды",
 	"Install from Github URL": "Установка с URL-адреса Github",
 	"Install from Github URL": "Установка с URL-адреса Github",
 	"Instant Auto-Send After Voice Transcription": "Мгновенная автоматическая отправка после расшифровки голоса",
 	"Instant Auto-Send After Voice Transcription": "Мгновенная автоматическая отправка после расшифровки голоса",
+	"Integration": "",
 	"Interface": "Интерфейс",
 	"Interface": "Интерфейс",
 	"Invalid file format.": "Неверный формат файла.",
 	"Invalid file format.": "Неверный формат файла.",
 	"Invalid Tag": "Недопустимый тег",
 	"Invalid Tag": "Недопустимый тег",
@@ -619,6 +620,7 @@
 	"Listening...": "Слушаю...",
 	"Listening...": "Слушаю...",
 	"Llama.cpp": "",
 	"Llama.cpp": "",
 	"LLMs can make mistakes. Verify important information.": "LLMs могут допускать ошибки. Проверяйте важную информацию.",
 	"LLMs can make mistakes. Verify important information.": "LLMs могут допускать ошибки. Проверяйте важную информацию.",
+	"Loader": "",
 	"Loading Kokoro.js...": "",
 	"Loading Kokoro.js...": "",
 	"Local": "",
 	"Local": "",
 	"Local Models": "Локальные модели",
 	"Local Models": "Локальные модели",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No inference engine with management support found": "",
 	"No inference engine with management support found": "",
 	"No knowledge found": "Знания не найдены",
 	"No knowledge found": "Знания не найдены",
+	"No memories to clear": "",
 	"No model IDs": "",
 	"No model IDs": "",
 	"No models found": "Модели не найдены",
 	"No models found": "Модели не найдены",
 	"No models selected": "Модели не выбраны",
 	"No models selected": "Модели не выбраны",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "Промпты",
 	"Prompts": "Промпты",
 	"Prompts Access": "",
 	"Prompts Access": "",
-	"Proxy URL": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Загрузить \"{{searchValue}}\" с Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Загрузить \"{{searchValue}}\" с Ollama.com",
 	"Pull a model from Ollama.com": "Загрузить модель с Ollama.com",
 	"Pull a model from Ollama.com": "Загрузить модель с Ollama.com",
 	"Query Generation Prompt": "",
 	"Query Generation Prompt": "",
-	"Query Params": "Параметры запроса",
 	"RAG Template": "Шаблон RAG",
 	"RAG Template": "Шаблон RAG",
 	"Rating": "",
 	"Rating": "",
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Уведомления об ответах не могут быть активированы, поскольку доступ к веб-сайту был заблокирован. Пожалуйста, перейдите к настройкам своего браузера, чтобы предоставить необходимый доступ.",
 	"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 splitting": "Разделение ответов",
 	"Result": "",
 	"Result": "",
+	"Retrieval": "",
 	"Retrieval Query Generation": "",
 	"Retrieval Query Generation": "",
 	"Rich Text Input for Chat": "Ввод форматированного текста для чата",
 	"Rich Text Input for Chat": "Ввод форматированного текста для чата",
 	"RK": "",
 	"RK": "",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Web": "Веб",
 	"Web": "Веб",
 	"Web API": "Веб API",
 	"Web API": "Веб API",
-	"Web Loader Settings": "Настройки веб-загрузчика",
 	"Web Search": "Веб-поиск",
 	"Web Search": "Веб-поиск",
 	"Web Search Engine": "Поисковая система",
 	"Web Search Engine": "Поисковая система",
 	"Web Search in Chat": "",
 	"Web Search in Chat": "",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "В настоящее время ваша учетная запись ожидает активации.",
 	"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 не взимает никаких процентов. Однако выбранная платформа финансирования может иметь свои собственные сборы.",
 	"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": "YouTube",
-	"Youtube Loader Settings": "Настройки загрузчика YouTube"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/sk-SK/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "Archivovať všetky konverzácie",
 	"Archive All Chats": "Archivovať všetky konverzácie",
 	"Archived Chats": "Archivované konverzácie",
 	"Archived Chats": "Archivované konverzácie",
 	"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 this channel?": "",
 	"Are you sure you want to delete this channel?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "",
 	"Bocha Search API Key": "",
 	"Brave Search API Key": "API kľúč pre Brave Search",
 	"Brave Search API Key": "API kľúč pre Brave Search",
 	"By {{name}}": "",
 	"By {{name}}": "",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "Obísť overenie SSL pre webové stránky",
 	"Bypass SSL verification for Websites": "Obísť overenie SSL pre webové stránky",
 	"Calendar": "",
 	"Calendar": "",
 	"Call": "Volanie",
 	"Call": "Volanie",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "Kontrola aktualizácií...",
 	"Checking for updates...": "Kontrola aktualizácií...",
 	"Choose a model before saving...": "Vyberte model pred uložením...",
 	"Choose a model before saving...": "Vyberte model pred uložením...",
 	"Chunk Overlap": "",
 	"Chunk Overlap": "",
-	"Chunk Params": "",
 	"Chunk Size": "",
 	"Chunk Size": "",
 	"Ciphers": "",
 	"Ciphers": "",
 	"Citation": "Odkaz",
 	"Citation": "Odkaz",
 	"Clear memory": "Vymazať pamäť",
 	"Clear memory": "Vymazať pamäť",
+	"Clear Memory": "",
 	"click here": "",
 	"click here": "",
 	"Click here for filter guides.": "",
 	"Click here for filter guides.": "",
 	"Click here for help.": "Kliknite tu pre pomoc.",
 	"Click here for help.": "Kliknite tu pre pomoc.",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Contact Admin for WebUI Access": "Kontaktujte administrátora pre prístup k webovému rozhraniu.",
 	"Contact Admin for WebUI Access": "Kontaktujte administrátora pre prístup k webovému rozhraniu.",
 	"Content": "Obsah",
 	"Content": "Obsah",
-	"Content Extraction": "Extrakcia obsahu",
+	"Content Extraction Engine": "",
 	"Context Length": "Dĺžka kontextu",
 	"Context Length": "Dĺžka kontextu",
 	"Continue Response": "Pokračovať v odpovedi",
 	"Continue Response": "Pokračovať v odpovedi",
 	"Continue with {{provider}}": "Pokračovať s {{provider}}",
 	"Continue with {{provider}}": "Pokračovať s {{provider}}",
@@ -246,6 +248,7 @@
 	"Current Model": "Aktuálny model",
 	"Current Model": "Aktuálny model",
 	"Current Password": "Aktuálne heslo",
 	"Current Password": "Aktuálne heslo",
 	"Custom": "Na mieru",
 	"Custom": "Na mieru",
+	"Danger Zone": "",
 	"Dark": "Tmavý",
 	"Dark": "Tmavý",
 	"Database": "Databáza",
 	"Database": "Databáza",
 	"December": "December",
 	"December": "December",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "ElevenLabs",
 	"ElevenLabs": "ElevenLabs",
 	"Email": "E-mail",
 	"Email": "E-mail",
 	"Embark on adventures": "",
 	"Embark on adventures": "",
+	"Embedding": "",
 	"Embedding Batch Size": "",
 	"Embedding Batch Size": "",
 	"Embedding Model": "Vkladací model (Embedding Model)",
 	"Embedding Model": "Vkladací model (Embedding Model)",
 	"Embedding Model Engine": "",
 	"Embedding Model Engine": "",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Povoliť zdieľanie komunity",
 	"Enable Community Sharing": "Povoliť zdieľanie komunity",
-	"Enable Google Drive": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"Enable Message Rating": "Povoliť hodnotenie správ",
 	"Enable Message Rating": "Povoliť hodnotenie správ",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Povoliť nové registrácie",
 	"Enable New Sign Ups": "Povoliť nové registrácie",
-	"Enable OneDrive": "",
-	"Enable Web Search": "Povoliť webové vyhľadávanie",
 	"Enabled": "Povolené",
 	"Enabled": "Povolené",
-	"Engine": "Engine",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Uistite sa, že váš CSV súbor obsahuje 4 stĺpce v tomto poradí: Name, Email, Password, Role.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Uistite sa, že váš CSV súbor obsahuje 4 stĺpce v tomto poradí: Name, Email, Password, Role.",
 	"Enter {{role}} message here": "Zadajte správu {{role}} sem",
 	"Enter {{role}} message here": "Zadajte správu {{role}} sem",
 	"Enter a detail about yourself for your LLMs to recall": "Zadajte podrobnosť o sebe, ktorú si vaše LLM majú zapamätať.",
 	"Enter a detail about yourself for your LLMs to recall": "Zadajte podrobnosť o sebe, ktorú si vaše LLM majú zapamätať.",
@@ -572,6 +572,7 @@
 	"Input commands": "Vstupné príkazy",
 	"Input commands": "Vstupné príkazy",
 	"Install from Github URL": "Inštalácia z URL adresy Githubu",
 	"Install from Github URL": "Inštalácia z URL adresy Githubu",
 	"Instant Auto-Send After Voice Transcription": "Okamžité automatické odoslanie po prepisu hlasu",
 	"Instant Auto-Send After Voice Transcription": "Okamžité automatické odoslanie po prepisu hlasu",
+	"Integration": "",
 	"Interface": "Rozhranie",
 	"Interface": "Rozhranie",
 	"Invalid file format.": "Neplatný formát súboru.",
 	"Invalid file format.": "Neplatný formát súboru.",
 	"Invalid Tag": "Neplatný tag",
 	"Invalid Tag": "Neplatný tag",
@@ -619,6 +620,7 @@
 	"Listening...": "Počúvanie...",
 	"Listening...": "Počúvanie...",
 	"Llama.cpp": "",
 	"Llama.cpp": "",
 	"LLMs can make mistakes. Verify important information.": "LLM môžu robiť chyby. Overte si dôležité informácie.",
 	"LLMs can make mistakes. Verify important information.": "LLM môžu robiť chyby. Overte si dôležité informácie.",
+	"Loader": "",
 	"Loading Kokoro.js...": "",
 	"Loading Kokoro.js...": "",
 	"Local": "",
 	"Local": "",
 	"Local Models": "Lokálne modely",
 	"Local Models": "Lokálne modely",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "Nebola nájdená žiadny obsah HTML, CSS ani JavaScript.",
 	"No HTML, CSS, or JavaScript content found.": "Nebola nájdená žiadny obsah HTML, CSS ani JavaScript.",
 	"No inference engine with management support found": "",
 	"No inference engine with management support found": "",
 	"No knowledge found": "Neboli nájdené žiadne znalosti",
 	"No knowledge found": "Neboli nájdené žiadne znalosti",
+	"No memories to clear": "",
 	"No model IDs": "",
 	"No model IDs": "",
 	"No models found": "Neboli nájdené žiadne modely",
 	"No models found": "Neboli nájdené žiadne modely",
 	"No models selected": "",
 	"No models selected": "",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "Prompty",
 	"Prompts": "Prompty",
 	"Prompts Access": "",
 	"Prompts Access": "",
-	"Proxy URL": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Stiahnite \"{{searchValue}}\" z Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Stiahnite \"{{searchValue}}\" z Ollama.com",
 	"Pull a model from Ollama.com": "Stiahnite model z Ollama.com",
 	"Pull a model from Ollama.com": "Stiahnite model z Ollama.com",
 	"Query Generation Prompt": "",
 	"Query Generation Prompt": "",
-	"Query Params": "Parametre dotazu",
 	"RAG Template": "Šablóna RAG",
 	"RAG Template": "Šablóna RAG",
 	"Rating": "Hodnotenie",
 	"Rating": "Hodnotenie",
 	"Re-rank models by topic similarity": "Znova zoradiť modely podľa podobnosti tém.",
 	"Re-rank models by topic similarity": "Znova zoradiť modely podľa podobnosti tém.",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Oznámenia o odpovediach nie je možné aktivovať, pretože povolenia webu boli zamietnuté. Navštívte nastavenia svojho prehliadača a povoľte potrebný prístup.",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Oznámenia o odpovediach nie je možné aktivovať, pretože povolenia webu boli zamietnuté. Navštívte nastavenia svojho prehliadača a povoľte potrebný prístup.",
 	"Response splitting": "Rozdelenie odpovede",
 	"Response splitting": "Rozdelenie odpovede",
 	"Result": "Výsledok",
 	"Result": "Výsledok",
+	"Retrieval": "",
 	"Retrieval Query Generation": "",
 	"Retrieval Query Generation": "",
 	"Rich Text Input for Chat": "Vstup pre chat vo formáte Rich Text",
 	"Rich Text Input for Chat": "Vstup pre chat vo formáte Rich Text",
 	"RK": "RK",
 	"RK": "RK",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Web": "Web",
 	"Web": "Web",
 	"Web API": "Webové API",
 	"Web API": "Webové API",
-	"Web Loader Settings": "Nastavenia Web Loaderu",
 	"Web Search": "Vyhľadávanie na webe",
 	"Web Search": "Vyhľadávanie na webe",
 	"Web Search Engine": "Webový vyhľadávač",
 	"Web Search Engine": "Webový vyhľadávač",
 	"Web Search in Chat": "",
 	"Web Search in Chat": "",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "Stav vášho účtu je aktuálne čakajúci na aktiváciu.",
 	"Your account status is currently pending activation.": "Stav vášho účtu je aktuálne čakajúci na aktiváciu.",
 	"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.": "Celý váš príspevok pôjde priamo vývojárovi pluginu; Open WebUI si neberie žiadne percento. Zvolená platforma na financovanie však môže mať vlastné poplatky.",
 	"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.": "Celý váš príspevok pôjde priamo vývojárovi pluginu; Open WebUI si neberie žiadne percento. Zvolená platforma na financovanie však môže mať vlastné poplatky.",
 	"Youtube": "YouTube",
 	"Youtube": "YouTube",
-	"Youtube Loader Settings": "Nastavenia YouTube loaderu"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/sr-RS/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "Архивирај сва ћаскања",
 	"Archive All Chats": "Архивирај сва ћаскања",
 	"Archived Chats": "Архиве",
 	"Archived Chats": "Архиве",
 	"archived-chat-export": "izvezena-arhiva",
 	"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 this channel?": "Да ли сигурно желите обрисати овај канал?",
 	"Are you sure you want to delete this channel?": "Да ли сигурно желите обрисати овај канал?",
 	"Are you sure you want to delete this message?": "Да ли сигурно желите обрисати ову поруку?",
 	"Are you sure you want to delete this message?": "Да ли сигурно желите обрисати ову поруку?",
 	"Are you sure you want to unarchive all archived chats?": "Да ли сигурно желите деархивирати све архиве?",
 	"Are you sure you want to unarchive all archived chats?": "Да ли сигурно желите деархивирати све архиве?",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "",
 	"Bocha Search API Key": "",
 	"Brave Search API Key": "Апи кључ за храбру претрагу",
 	"Brave Search API Key": "Апи кључ за храбру претрагу",
 	"By {{name}}": "Од {{name}}",
 	"By {{name}}": "Од {{name}}",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "Заобиђи SSL потврђивање за веб странице",
 	"Bypass SSL verification for Websites": "Заобиђи SSL потврђивање за веб странице",
 	"Calendar": "",
 	"Calendar": "",
 	"Call": "Позив",
 	"Call": "Позив",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "Траже се ажурирања...",
 	"Checking for updates...": "Траже се ажурирања...",
 	"Choose a model before saving...": "Изабери модел пре чувања...",
 	"Choose a model before saving...": "Изабери модел пре чувања...",
 	"Chunk Overlap": "Преклапање делова",
 	"Chunk Overlap": "Преклапање делова",
-	"Chunk Params": "Параметри делова",
 	"Chunk Size": "Величина дела",
 	"Chunk Size": "Величина дела",
 	"Ciphers": "Шифре",
 	"Ciphers": "Шифре",
 	"Citation": "Цитат",
 	"Citation": "Цитат",
 	"Clear memory": "Очисти сећања",
 	"Clear memory": "Очисти сећања",
+	"Clear Memory": "",
 	"click here": "кликни овде",
 	"click here": "кликни овде",
 	"Click here for filter guides.": "Кликни овде за упутства филтера.",
 	"Click here for filter guides.": "Кликни овде за упутства филтера.",
 	"Click here for help.": "Кликните овде за помоћ.",
 	"Click here for help.": "Кликните овде за помоћ.",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Contact Admin for WebUI Access": "Пишите админима за приступ на WebUI",
 	"Contact Admin for WebUI Access": "Пишите админима за приступ на WebUI",
 	"Content": "Садржај",
 	"Content": "Садржај",
-	"Content Extraction": "Извлачење садржаја",
+	"Content Extraction Engine": "",
 	"Context Length": "Дужина контекста",
 	"Context Length": "Дужина контекста",
 	"Continue Response": "Настави одговор",
 	"Continue Response": "Настави одговор",
 	"Continue with {{provider}}": "Настави са {{provider}}",
 	"Continue with {{provider}}": "Настави са {{provider}}",
@@ -246,6 +248,7 @@
 	"Current Model": "Тренутни модел",
 	"Current Model": "Тренутни модел",
 	"Current Password": "Тренутна лозинка",
 	"Current Password": "Тренутна лозинка",
 	"Custom": "Прилагођено",
 	"Custom": "Прилагођено",
+	"Danger Zone": "",
 	"Dark": "Тамна",
 	"Dark": "Тамна",
 	"Database": "База података",
 	"Database": "База података",
 	"December": "Децембар",
 	"December": "Децембар",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "",
 	"ElevenLabs": "",
 	"Email": "Е-пошта",
 	"Email": "Е-пошта",
 	"Embark on adventures": "Започните пустоловину",
 	"Embark on adventures": "Започните пустоловину",
+	"Embedding": "",
 	"Embedding Batch Size": "",
 	"Embedding Batch Size": "",
 	"Embedding Model": "Модел уградње",
 	"Embedding Model": "Модел уградње",
 	"Embedding Model Engine": "Мотор модела уградње",
 	"Embedding Model Engine": "Мотор модела уградње",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Омогући дељење заједнице",
 	"Enable Community Sharing": "Омогући дељење заједнице",
-	"Enable Google Drive": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Омогући нове пријаве",
 	"Enable New Sign Ups": "Омогући нове пријаве",
-	"Enable OneDrive": "",
-	"Enable Web Search": "Омогући Wеб претрагу",
 	"Enabled": "Омогућено",
 	"Enabled": "Омогућено",
-	"Engine": "Мотор",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Уверите се да ваша CSV датотека укључује 4 колоне у овом редоследу: Име, Е-пошта, Лозинка, Улога.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Уверите се да ваша CSV датотека укључује 4 колоне у овом редоследу: Име, Е-пошта, Лозинка, Улога.",
 	"Enter {{role}} message here": "Унесите {{role}} поруку овде",
 	"Enter {{role}} message here": "Унесите {{role}} поруку овде",
 	"Enter a detail about yourself for your LLMs to recall": "Унесите детаље за себе да ће LLMs преузимати",
 	"Enter a detail about yourself for your LLMs to recall": "Унесите детаље за себе да ће LLMs преузимати",
@@ -572,6 +572,7 @@
 	"Input commands": "Унеси наредбе",
 	"Input commands": "Унеси наредбе",
 	"Install from Github URL": "Инсталирај из Гитхуб УРЛ адресе",
 	"Install from Github URL": "Инсталирај из Гитхуб УРЛ адресе",
 	"Instant Auto-Send After Voice Transcription": "",
 	"Instant Auto-Send After Voice Transcription": "",
+	"Integration": "",
 	"Interface": "Изглед",
 	"Interface": "Изглед",
 	"Invalid file format.": "",
 	"Invalid file format.": "",
 	"Invalid Tag": "Неисправна ознака",
 	"Invalid Tag": "Неисправна ознака",
@@ -619,6 +620,7 @@
 	"Listening...": "Слушам...",
 	"Listening...": "Слушам...",
 	"Llama.cpp": "Llama.cpp",
 	"Llama.cpp": "Llama.cpp",
 	"LLMs can make mistakes. Verify important information.": "ВЈМ-ови (LLM-ови) могу правити грешке. Проверите важне податке.",
 	"LLMs can make mistakes. Verify important information.": "ВЈМ-ови (LLM-ови) могу правити грешке. Проверите важне податке.",
+	"Loader": "",
 	"Loading Kokoro.js...": "",
 	"Loading Kokoro.js...": "",
 	"Local": "Локално",
 	"Local": "Локално",
 	"Local Models": "Локални модели",
 	"Local Models": "Локални модели",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No inference engine with management support found": "",
 	"No inference engine with management support found": "",
 	"No knowledge found": "",
 	"No knowledge found": "",
+	"No memories to clear": "",
 	"No model IDs": "",
 	"No model IDs": "",
 	"No models found": "",
 	"No models found": "",
 	"No models selected": "",
 	"No models selected": "",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "Упит измењен успешно",
 	"Prompt updated successfully": "Упит измењен успешно",
 	"Prompts": "Упити",
 	"Prompts": "Упити",
 	"Prompts Access": "Приступ упитима",
 	"Prompts Access": "Приступ упитима",
-	"Proxy URL": "Адреса посредника",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Повуците \"{{searchValue}}\" са Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Повуците \"{{searchValue}}\" са Ollama.com",
 	"Pull a model from Ollama.com": "Повуците модел са Ollama.com",
 	"Pull a model from Ollama.com": "Повуците модел са Ollama.com",
 	"Query Generation Prompt": "",
 	"Query Generation Prompt": "",
-	"Query Params": "Параметри упита",
 	"RAG Template": "RAG шаблон",
 	"RAG Template": "RAG шаблон",
 	"Rating": "Оцена",
 	"Rating": "Оцена",
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"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 splitting": "",
 	"Result": "Исход",
 	"Result": "Исход",
+	"Retrieval": "",
 	"Retrieval Query Generation": "",
 	"Retrieval Query Generation": "",
 	"Rich Text Input for Chat": "Богат унос текста у ћаскању",
 	"Rich Text Input for Chat": "Богат унос текста у ћаскању",
 	"RK": "",
 	"RK": "",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Web": "Веб",
 	"Web": "Веб",
 	"Web API": "Веб АПИ",
 	"Web API": "Веб АПИ",
-	"Web Loader Settings": "Подешавања веб учитавача",
 	"Web Search": "Веб претрага",
 	"Web Search": "Веб претрага",
 	"Web Search Engine": "Веб претраживач",
 	"Web Search Engine": "Веб претраживач",
 	"Web Search in Chat": "",
 	"Web Search in Chat": "",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "",
 	"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.": "",
 	"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.": "",
 	"Youtube": "Јутјуб",
 	"Youtube": "Јутјуб",
-	"Youtube Loader Settings": "Подешавања Јутјуб учитавача"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 14 - 12
src/lib/i18n/locales/sv-SE/translation.json

@@ -13,7 +13,7 @@
 	"A task model is used when performing tasks such as generating titles for chats and web search queries": "En uppgiftsmodell används när du utför uppgifter som att generera titlar för chattar och webbsökningsfrågor",
 	"A task model is used when performing tasks such as generating titles for chats and web search queries": "En uppgiftsmodell används när du utför uppgifter som att generera titlar för chattar och webbsökningsfrågor",
 	"a user": "en användare",
 	"a user": "en användare",
 	"About": "Om",
 	"About": "Om",
-  "Accept autocomplete generation / Jump to prompt variable": "",
+	"Accept autocomplete generation / Jump to prompt variable": "",
 	"Access": "Åtkomst",
 	"Access": "Åtkomst",
 	"Access Control": "Åtkomstkontroll",
 	"Access Control": "Åtkomstkontroll",
 	"Accessible to all users": "Tillgänglig för alla användare",
 	"Accessible to all users": "Tillgänglig för alla användare",
@@ -86,6 +86,7 @@
 	"Archive All Chats": "Arkivera alla chattar",
 	"Archive All Chats": "Arkivera alla chattar",
 	"Archived Chats": "Arkiverade chattar",
 	"Archived Chats": "Arkiverade chattar",
 	"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 this channel?": "Är du säker på att du vill radera denna kanal?",
 	"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 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?",
 	"Are you sure you want to unarchive all archived chats?": "Är du säker på att du vill avarkivera alla arkiverade chattar?",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "",
 	"Bocha Search API Key": "",
 	"Brave Search API Key": "API-nyckel för Brave Search",
 	"Brave Search API Key": "API-nyckel för Brave Search",
 	"By {{name}}": "Av {{name}}",
 	"By {{name}}": "Av {{name}}",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "Kringgå SSL-verifiering för webbplatser",
 	"Bypass SSL verification for Websites": "Kringgå SSL-verifiering för webbplatser",
 	"Calendar": "Kalender",
 	"Calendar": "Kalender",
 	"Call": "Samtal",
 	"Call": "Samtal",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "Söker efter uppdateringar...",
 	"Checking for updates...": "Söker efter uppdateringar...",
 	"Choose a model before saving...": "Välj en modell innan du sparar...",
 	"Choose a model before saving...": "Välj en modell innan du sparar...",
 	"Chunk Overlap": "Överlappning",
 	"Chunk Overlap": "Överlappning",
-	"Chunk Params": "Chunk-parametrar",
 	"Chunk Size": "Chunk-storlek",
 	"Chunk Size": "Chunk-storlek",
 	"Ciphers": "Chiffer",
 	"Ciphers": "Chiffer",
 	"Citation": "Citat",
 	"Citation": "Citat",
 	"Clear memory": "Rensa minnet",
 	"Clear memory": "Rensa minnet",
+	"Clear Memory": "",
 	"click here": "klicka här",
 	"click here": "klicka här",
 	"Click here for filter guides.": "",
 	"Click here for filter guides.": "",
 	"Click here for help.": "Klicka här för hjälp.",
 	"Click here for help.": "Klicka här för hjälp.",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Contact Admin for WebUI Access": "Kontakta administratören för att få åtkomst till WebUI",
 	"Contact Admin for WebUI Access": "Kontakta administratören för att få åtkomst till WebUI",
 	"Content": "Innehåll",
 	"Content": "Innehåll",
-	"Content Extraction": "",
+	"Content Extraction Engine": "",
 	"Context Length": "Kontextlängd",
 	"Context Length": "Kontextlängd",
 	"Continue Response": "Fortsätt svar",
 	"Continue Response": "Fortsätt svar",
 	"Continue with {{provider}}": "",
 	"Continue with {{provider}}": "",
@@ -246,6 +248,7 @@
 	"Current Model": "Aktuell modell",
 	"Current Model": "Aktuell modell",
 	"Current Password": "Nuvarande lösenord",
 	"Current Password": "Nuvarande lösenord",
 	"Custom": "Anpassad",
 	"Custom": "Anpassad",
+	"Danger Zone": "",
 	"Dark": "Mörk",
 	"Dark": "Mörk",
 	"Database": "Databas",
 	"Database": "Databas",
 	"December": "december",
 	"December": "december",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "",
 	"ElevenLabs": "",
 	"Email": "E-post",
 	"Email": "E-post",
 	"Embark on adventures": "",
 	"Embark on adventures": "",
+	"Embedding": "",
 	"Embedding Batch Size": "Batchstorlek för inbäddning",
 	"Embedding Batch Size": "Batchstorlek för inbäddning",
 	"Embedding Model": "Inbäddningsmodell",
 	"Embedding Model": "Inbäddningsmodell",
 	"Embedding Model Engine": "Motor för inbäddningsmodell",
 	"Embedding Model Engine": "Motor för inbäddningsmodell",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Aktivera community-delning",
 	"Enable Community Sharing": "Aktivera community-delning",
-	"Enable Google Drive": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Aktivera nya registreringar",
 	"Enable New Sign Ups": "Aktivera nya registreringar",
-	"Enable OneDrive": "",
-	"Enable Web Search": "Aktivera webbsökning",
 	"Enabled": "",
 	"Enabled": "",
-	"Engine": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Se till att din CSV-fil innehåller fyra kolumner i denna ordning: Name, Email, Password, Role.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Se till att din CSV-fil innehåller fyra kolumner i denna ordning: Name, Email, Password, Role.",
 	"Enter {{role}} message here": "Skriv {{role}} meddelande här",
 	"Enter {{role}} message here": "Skriv {{role}} meddelande här",
 	"Enter a detail about yourself for your LLMs to recall": "Skriv en detalj om dig själv för att dina LLMs ska komma ihåg",
 	"Enter a detail about yourself for your LLMs to recall": "Skriv en detalj om dig själv för att dina LLMs ska komma ihåg",
@@ -572,6 +572,7 @@
 	"Input commands": "Indatakommandon",
 	"Input commands": "Indatakommandon",
 	"Install from Github URL": "Installera från Github-URL",
 	"Install from Github URL": "Installera från Github-URL",
 	"Instant Auto-Send After Voice Transcription": "Skicka automatiskt efter rösttranskribering",
 	"Instant Auto-Send After Voice Transcription": "Skicka automatiskt efter rösttranskribering",
+	"Integration": "",
 	"Interface": "Gränssnitt",
 	"Interface": "Gränssnitt",
 	"Invalid file format.": "",
 	"Invalid file format.": "",
 	"Invalid Tag": "Ogiltig tagg",
 	"Invalid Tag": "Ogiltig tagg",
@@ -619,6 +620,7 @@
 	"Listening...": "Lyssnar...",
 	"Listening...": "Lyssnar...",
 	"Llama.cpp": "",
 	"Llama.cpp": "",
 	"LLMs can make mistakes. Verify important information.": "LLM:er kan göra misstag. Granska viktig information.",
 	"LLMs can make mistakes. Verify important information.": "LLM:er kan göra misstag. Granska viktig information.",
+	"Loader": "",
 	"Loading Kokoro.js...": "",
 	"Loading Kokoro.js...": "",
 	"Local": "",
 	"Local": "",
 	"Local Models": "Lokala modeller",
 	"Local Models": "Lokala modeller",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No inference engine with management support found": "",
 	"No inference engine with management support found": "",
 	"No knowledge found": "",
 	"No knowledge found": "",
+	"No memories to clear": "",
 	"No model IDs": "",
 	"No model IDs": "",
 	"No models found": "",
 	"No models found": "",
 	"No models selected": "",
 	"No models selected": "",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "Instruktioner",
 	"Prompts": "Instruktioner",
 	"Prompts Access": "",
 	"Prompts Access": "",
-	"Proxy URL": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Ladda ner \"{{searchValue}}\" från Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Ladda ner \"{{searchValue}}\" från Ollama.com",
 	"Pull a model from Ollama.com": "Ladda ner en modell från Ollama.com",
 	"Pull a model from Ollama.com": "Ladda ner en modell från Ollama.com",
 	"Query Generation Prompt": "",
 	"Query Generation Prompt": "",
-	"Query Params": "Inställningar för sökfråga",
 	"RAG Template": "RAG-mall",
 	"RAG Template": "RAG-mall",
 	"Rating": "Betyg",
 	"Rating": "Betyg",
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"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 splitting": "",
 	"Result": "",
 	"Result": "",
+	"Retrieval": "",
 	"Retrieval Query Generation": "",
 	"Retrieval Query Generation": "",
 	"Rich Text Input for Chat": "",
 	"Rich Text Input for Chat": "",
 	"RK": "",
 	"RK": "",
@@ -965,7 +967,7 @@
 	"Tags Generation": "",
 	"Tags Generation": "",
 	"Tags Generation Prompt": "",
 	"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. (default: 1)": "Tail free sampling används för att minska effekten av mindre sannolika tokens i resultatet. Ett högre värde (t.ex. 2,0) minskar effekten mer, medan ett värde på 1,0 inaktiverar den här inställningen. (standard: 1)",
 	"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. (default: 1)": "Tail free sampling används för att minska effekten av mindre sannolika tokens i resultatet. Ett högre värde (t.ex. 2,0) minskar effekten mer, medan ett värde på 1,0 inaktiverar den här inställningen. (standard: 1)",
-  "Talk to model": "",
+	"Talk to model": "",
 	"Tap to interrupt": "",
 	"Tap to interrupt": "",
 	"Tasks": "",
 	"Tasks": "",
 	"Tavily API Key": "",
 	"Tavily API Key": "",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Varning: Jupyter-exekvering möjliggör godtycklig kodkörning, vilket innebär allvarliga säkerhetsrisker - fortsätt med extrem försiktighet",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Varning: Jupyter-exekvering möjliggör godtycklig kodkörning, vilket innebär allvarliga säkerhetsrisker - fortsätt med extrem försiktighet",
 	"Web": "Webb",
 	"Web": "Webb",
 	"Web API": "Webb-API",
 	"Web API": "Webb-API",
-	"Web Loader Settings": "Web Loader-inställningar",
 	"Web Search": "Webbsökning",
 	"Web Search": "Webbsökning",
 	"Web Search Engine": "Sökmotor",
 	"Web Search Engine": "Sökmotor",
 	"Web Search in Chat": "Webbsökning i chatten",
 	"Web Search in Chat": "Webbsökning i chatten",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "Ditt konto väntar på att bli aktiverat",
 	"Your account status is currently pending activation.": "Ditt konto väntar på att bli aktiverat",
 	"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.": "Hela ditt bidrag går direkt till pluginutvecklaren; Open WebUI tar ingen procentandel. Däremot kan den valda finansieringsplattformen ha egna avgifter.",
 	"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.": "Hela ditt bidrag går direkt till pluginutvecklaren; Open WebUI tar ingen procentandel. Däremot kan den valda finansieringsplattformen ha egna avgifter.",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
-	"Youtube Loader Settings": "Youtube Loader-inställningar"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/th-TH/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "เก็บถาวรการสนทนาทั้งหมด",
 	"Archive All Chats": "เก็บถาวรการสนทนาทั้งหมด",
 	"Archived Chats": "การสนทนาที่เก็บถาวร",
 	"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 this channel?": "",
 	"Are you sure you want to delete this channel?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "",
 	"Bocha Search API Key": "",
 	"Brave Search API Key": "คีย์ API ของ Brave Search",
 	"Brave Search API Key": "คีย์ API ของ Brave Search",
 	"By {{name}}": "",
 	"By {{name}}": "",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "ข้ามการตรวจสอบ SSL สำหรับเว็บไซต์",
 	"Bypass SSL verification for Websites": "ข้ามการตรวจสอบ SSL สำหรับเว็บไซต์",
 	"Calendar": "",
 	"Calendar": "",
 	"Call": "โทร",
 	"Call": "โทร",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "กำลังตรวจสอบการอัปเดต...",
 	"Checking for updates...": "กำลังตรวจสอบการอัปเดต...",
 	"Choose a model before saving...": "เลือกโมเดลก่อนบันทึก...",
 	"Choose a model before saving...": "เลือกโมเดลก่อนบันทึก...",
 	"Chunk Overlap": "ทับซ้อนส่วนข้อมูล",
 	"Chunk Overlap": "ทับซ้อนส่วนข้อมูล",
-	"Chunk Params": "พารามิเตอร์ส่วนข้อมูล",
 	"Chunk Size": "ขนาดส่วนข้อมูล",
 	"Chunk Size": "ขนาดส่วนข้อมูล",
 	"Ciphers": "",
 	"Ciphers": "",
 	"Citation": "การอ้างอิง",
 	"Citation": "การอ้างอิง",
 	"Clear memory": "ล้างความจำ",
 	"Clear memory": "ล้างความจำ",
+	"Clear Memory": "",
 	"click here": "",
 	"click here": "",
 	"Click here for filter guides.": "",
 	"Click here for filter guides.": "",
 	"Click here for help.": "คลิกที่นี่เพื่อขอความช่วยเหลือ",
 	"Click here for help.": "คลิกที่นี่เพื่อขอความช่วยเหลือ",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Contact Admin for WebUI Access": "ติดต่อผู้ดูแลระบบสำหรับการเข้าถึง WebUI",
 	"Contact Admin for WebUI Access": "ติดต่อผู้ดูแลระบบสำหรับการเข้าถึง WebUI",
 	"Content": "เนื้อหา",
 	"Content": "เนื้อหา",
-	"Content Extraction": "การสกัดเนื้อหา",
+	"Content Extraction Engine": "",
 	"Context Length": "ความยาวของบริบท",
 	"Context Length": "ความยาวของบริบท",
 	"Continue Response": "ตอบสนองต่อไป",
 	"Continue Response": "ตอบสนองต่อไป",
 	"Continue with {{provider}}": "ดำเนินการต่อด้วย {{provider}}",
 	"Continue with {{provider}}": "ดำเนินการต่อด้วย {{provider}}",
@@ -246,6 +248,7 @@
 	"Current Model": "โมเดลปัจจุบัน",
 	"Current Model": "โมเดลปัจจุบัน",
 	"Current Password": "รหัสผ่านปัจจุบัน",
 	"Current Password": "รหัสผ่านปัจจุบัน",
 	"Custom": "กำหนดเอง",
 	"Custom": "กำหนดเอง",
+	"Danger Zone": "",
 	"Dark": "มืด",
 	"Dark": "มืด",
 	"Database": "ฐานข้อมูล",
 	"Database": "ฐานข้อมูล",
 	"December": "ธันวาคม",
 	"December": "ธันวาคม",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "",
 	"ElevenLabs": "",
 	"Email": "อีเมล",
 	"Email": "อีเมล",
 	"Embark on adventures": "",
 	"Embark on adventures": "",
+	"Embedding": "",
 	"Embedding Batch Size": "ขนาดชุดการฝัง",
 	"Embedding Batch Size": "ขนาดชุดการฝัง",
 	"Embedding Model": "โมเดลการฝัง",
 	"Embedding Model": "โมเดลการฝัง",
 	"Embedding Model Engine": "เครื่องยนต์โมเดลการฝัง",
 	"Embedding Model Engine": "เครื่องยนต์โมเดลการฝัง",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "เปิดใช้งานการแชร์ในชุมชน",
 	"Enable Community Sharing": "เปิดใช้งานการแชร์ในชุมชน",
-	"Enable Google Drive": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "เปิดใช้งานการสมัครใหม่",
 	"Enable New Sign Ups": "เปิดใช้งานการสมัครใหม่",
-	"Enable OneDrive": "",
-	"Enable Web Search": "เปิดใช้งานการค้นหาเว็บ",
 	"Enabled": "เปิดใช้งาน",
 	"Enabled": "เปิดใช้งาน",
-	"Engine": "เครื่องยนต์",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ตรวจสอบว่าไฟล์ CSV ของคุณมี 4 คอลัมน์ในลำดับนี้: ชื่อ, อีเมล, รหัสผ่าน, บทบาท",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ตรวจสอบว่าไฟล์ CSV ของคุณมี 4 คอลัมน์ในลำดับนี้: ชื่อ, อีเมล, รหัสผ่าน, บทบาท",
 	"Enter {{role}} message here": "ใส่ข้อความ {{role}} ที่นี่",
 	"Enter {{role}} message here": "ใส่ข้อความ {{role}} ที่นี่",
 	"Enter a detail about yourself for your LLMs to recall": "ใส่รายละเอียดเกี่ยวกับตัวคุณสำหรับ LLMs ของคุณให้จดจำ",
 	"Enter a detail about yourself for your LLMs to recall": "ใส่รายละเอียดเกี่ยวกับตัวคุณสำหรับ LLMs ของคุณให้จดจำ",
@@ -572,6 +572,7 @@
 	"Input commands": "คำสั่งป้อนข้อมูล",
 	"Input commands": "คำสั่งป้อนข้อมูล",
 	"Install from Github URL": "ติดตั้งจาก URL ของ Github",
 	"Install from Github URL": "ติดตั้งจาก URL ของ Github",
 	"Instant Auto-Send After Voice Transcription": "ส่งอัตโนมัติทันทีหลังจากการถอดเสียง",
 	"Instant Auto-Send After Voice Transcription": "ส่งอัตโนมัติทันทีหลังจากการถอดเสียง",
+	"Integration": "",
 	"Interface": "อินเทอร์เฟซ",
 	"Interface": "อินเทอร์เฟซ",
 	"Invalid file format.": "",
 	"Invalid file format.": "",
 	"Invalid Tag": "แท็กไม่ถูกต้อง",
 	"Invalid Tag": "แท็กไม่ถูกต้อง",
@@ -619,6 +620,7 @@
 	"Listening...": "กำลังฟัง...",
 	"Listening...": "กำลังฟัง...",
 	"Llama.cpp": "",
 	"Llama.cpp": "",
 	"LLMs can make mistakes. Verify important information.": "LLMs สามารถทำผิดพลาดได้ ตรวจสอบข้อมูลสำคัญ",
 	"LLMs can make mistakes. Verify important information.": "LLMs สามารถทำผิดพลาดได้ ตรวจสอบข้อมูลสำคัญ",
+	"Loader": "",
 	"Loading Kokoro.js...": "",
 	"Loading Kokoro.js...": "",
 	"Local": "",
 	"Local": "",
 	"Local Models": "โมเดลท้องถิ่น",
 	"Local Models": "โมเดลท้องถิ่น",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No inference engine with management support found": "",
 	"No inference engine with management support found": "",
 	"No knowledge found": "",
 	"No knowledge found": "",
+	"No memories to clear": "",
 	"No model IDs": "",
 	"No model IDs": "",
 	"No models found": "",
 	"No models found": "",
 	"No models selected": "",
 	"No models selected": "",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "พรอมต์",
 	"Prompts": "พรอมต์",
 	"Prompts Access": "",
 	"Prompts Access": "",
-	"Proxy URL": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull a model from Ollama.com": "",
 	"Pull a model from Ollama.com": "",
 	"Query Generation Prompt": "",
 	"Query Generation Prompt": "",
-	"Query Params": "พารามิเตอร์การค้นหา",
 	"RAG Template": "แม่แบบ RAG",
 	"RAG Template": "แม่แบบ RAG",
 	"Rating": "",
 	"Rating": "",
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "ไม่สามารถเปิดการแจ้งเตือนการตอบสนองได้เนื่องจากเว็บไซต์ปฏิเสธ กรุณาเข้าการตั้งค่าเบราว์เซอร์ของคุณเพื่อให้สิทธิ์การเข้าถึงที่จำเป็น",
 	"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 splitting": "",
 	"Result": "",
 	"Result": "",
+	"Retrieval": "",
 	"Retrieval Query Generation": "",
 	"Retrieval Query Generation": "",
 	"Rich Text Input for Chat": "",
 	"Rich Text Input for Chat": "",
 	"RK": "",
 	"RK": "",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Web": "เว็บ",
 	"Web": "เว็บ",
 	"Web API": "เว็บ API",
 	"Web API": "เว็บ API",
-	"Web Loader Settings": "การตั้งค่าเว็บโหลดเดอร์",
 	"Web Search": "การค้นหาเว็บ",
 	"Web Search": "การค้นหาเว็บ",
 	"Web Search Engine": "เครื่องมือค้นหาเว็บ",
 	"Web Search Engine": "เครื่องมือค้นหาเว็บ",
 	"Web Search in Chat": "",
 	"Web Search in Chat": "",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "สถานะบัญชีของคุณกำลังรอการเปิดใช้งาน",
 	"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 ไม่รับส่วนแบ่งใด ๆ อย่างไรก็ตาม แพลตฟอร์มการระดมทุนที่เลือกอาจมีค่าธรรมเนียมของตัวเอง",
 	"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": "Youtube",
-	"Youtube Loader Settings": "การตั้งค่าโหลดเดอร์ Youtube"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/tk-TW/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "",
 	"Archive All Chats": "",
 	"Archived Chats": "",
 	"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 this channel?": "",
 	"Are you sure you want to delete this channel?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "",
 	"Bocha Search API Key": "",
 	"Brave Search API Key": "",
 	"Brave Search API Key": "",
 	"By {{name}}": "",
 	"By {{name}}": "",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "",
 	"Bypass SSL verification for Websites": "",
 	"Calendar": "",
 	"Calendar": "",
 	"Call": "",
 	"Call": "",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "",
 	"Checking for updates...": "",
 	"Choose a model before saving...": "",
 	"Choose a model before saving...": "",
 	"Chunk Overlap": "",
 	"Chunk Overlap": "",
-	"Chunk Params": "",
 	"Chunk Size": "",
 	"Chunk Size": "",
 	"Ciphers": "",
 	"Ciphers": "",
 	"Citation": "",
 	"Citation": "",
 	"Clear memory": "",
 	"Clear memory": "",
+	"Clear Memory": "",
 	"click here": "",
 	"click here": "",
 	"Click here for filter guides.": "",
 	"Click here for filter guides.": "",
 	"Click here for help.": "",
 	"Click here for help.": "",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Contact Admin for WebUI Access": "",
 	"Contact Admin for WebUI Access": "",
 	"Content": "",
 	"Content": "",
-	"Content Extraction": "",
+	"Content Extraction Engine": "",
 	"Context Length": "",
 	"Context Length": "",
 	"Continue Response": "",
 	"Continue Response": "",
 	"Continue with {{provider}}": "",
 	"Continue with {{provider}}": "",
@@ -246,6 +248,7 @@
 	"Current Model": "",
 	"Current Model": "",
 	"Current Password": "",
 	"Current Password": "",
 	"Custom": "",
 	"Custom": "",
+	"Danger Zone": "",
 	"Dark": "",
 	"Dark": "",
 	"Database": "",
 	"Database": "",
 	"December": "",
 	"December": "",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "",
 	"ElevenLabs": "",
 	"Email": "",
 	"Email": "",
 	"Embark on adventures": "",
 	"Embark on adventures": "",
+	"Embedding": "",
 	"Embedding Batch Size": "",
 	"Embedding Batch Size": "",
 	"Embedding Model": "",
 	"Embedding Model": "",
 	"Embedding Model Engine": "",
 	"Embedding Model Engine": "",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "",
 	"Enable Community Sharing": "",
-	"Enable Google Drive": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"Enable Message Rating": "",
 	"Enable Message Rating": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "",
 	"Enable New Sign Ups": "",
-	"Enable OneDrive": "",
-	"Enable Web Search": "",
 	"Enabled": "",
 	"Enabled": "",
-	"Engine": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
 	"Enter {{role}} message here": "",
 	"Enter {{role}} message here": "",
 	"Enter a detail about yourself for your LLMs to recall": "",
 	"Enter a detail about yourself for your LLMs to recall": "",
@@ -572,6 +572,7 @@
 	"Input commands": "",
 	"Input commands": "",
 	"Install from Github URL": "",
 	"Install from Github URL": "",
 	"Instant Auto-Send After Voice Transcription": "",
 	"Instant Auto-Send After Voice Transcription": "",
+	"Integration": "",
 	"Interface": "",
 	"Interface": "",
 	"Invalid file format.": "",
 	"Invalid file format.": "",
 	"Invalid Tag": "",
 	"Invalid Tag": "",
@@ -619,6 +620,7 @@
 	"Listening...": "",
 	"Listening...": "",
 	"Llama.cpp": "",
 	"Llama.cpp": "",
 	"LLMs can make mistakes. Verify important information.": "",
 	"LLMs can make mistakes. Verify important information.": "",
+	"Loader": "",
 	"Loading Kokoro.js...": "",
 	"Loading Kokoro.js...": "",
 	"Local": "",
 	"Local": "",
 	"Local Models": "",
 	"Local Models": "",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No inference engine with management support found": "",
 	"No inference engine with management support found": "",
 	"No knowledge found": "",
 	"No knowledge found": "",
+	"No memories to clear": "",
 	"No model IDs": "",
 	"No model IDs": "",
 	"No models found": "",
 	"No models found": "",
 	"No models selected": "",
 	"No models selected": "",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "",
 	"Prompts": "",
 	"Prompts Access": "",
 	"Prompts Access": "",
-	"Proxy URL": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull a model from Ollama.com": "",
 	"Pull a model from Ollama.com": "",
 	"Query Generation Prompt": "",
 	"Query Generation Prompt": "",
-	"Query Params": "",
 	"RAG Template": "",
 	"RAG Template": "",
 	"Rating": "",
 	"Rating": "",
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"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 splitting": "",
 	"Result": "",
 	"Result": "",
+	"Retrieval": "",
 	"Retrieval Query Generation": "",
 	"Retrieval Query Generation": "",
 	"Rich Text Input for Chat": "",
 	"Rich Text Input for Chat": "",
 	"RK": "",
 	"RK": "",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Web": "",
 	"Web": "",
 	"Web API": "",
 	"Web API": "",
-	"Web Loader Settings": "",
 	"Web Search": "",
 	"Web Search": "",
 	"Web Search Engine": "",
 	"Web Search Engine": "",
 	"Web Search in Chat": "",
 	"Web Search in Chat": "",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "",
 	"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.": "",
 	"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.": "",
 	"Youtube": "",
 	"Youtube": "",
-	"Youtube Loader Settings": ""
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/tr-TR/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "Tüm Sohbetleri Arşivle",
 	"Archive All Chats": "Tüm Sohbetleri Arşivle",
 	"Archived Chats": "Arşivlenmiş Sohbetler",
 	"Archived Chats": "Arşivlenmiş Sohbetler",
 	"archived-chat-export": "arşivlenmiş-sohbet-aktarımı",
 	"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 this channel?": "Bu kanalı silmek istediğinizden emin misiniz?",
 	"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 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?",
 	"Are you sure you want to unarchive all archived chats?": "Arşivlenmiş tüm sohbetlerin arşivini kaldırmak istediğinizden emin misiniz?",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "",
 	"Bocha Search API Key": "",
 	"Brave Search API Key": "Brave Search API Anahtarı",
 	"Brave Search API Key": "Brave Search API Anahtarı",
 	"By {{name}}": "{{name}} Tarafından",
 	"By {{name}}": "{{name}} Tarafından",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "Web Siteleri için SSL doğrulamasını atlayın",
 	"Bypass SSL verification for Websites": "Web Siteleri için SSL doğrulamasını atlayın",
 	"Calendar": "",
 	"Calendar": "",
 	"Call": "Arama",
 	"Call": "Arama",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "Güncellemeler kontrol ediliyor...",
 	"Checking for updates...": "Güncellemeler kontrol ediliyor...",
 	"Choose a model before saving...": "Kaydetmeden önce bir model seçin...",
 	"Choose a model before saving...": "Kaydetmeden önce bir model seçin...",
 	"Chunk Overlap": "Chunk Çakışması",
 	"Chunk Overlap": "Chunk Çakışması",
-	"Chunk Params": "Chunk Parametreleri",
 	"Chunk Size": "Chunk Boyutu",
 	"Chunk Size": "Chunk Boyutu",
 	"Ciphers": "Şifreler",
 	"Ciphers": "Şifreler",
 	"Citation": "Alıntı",
 	"Citation": "Alıntı",
 	"Clear memory": "Belleği temizle",
 	"Clear memory": "Belleği temizle",
+	"Clear Memory": "",
 	"click here": "buraya tıklayın",
 	"click here": "buraya tıklayın",
 	"Click here for filter guides.": "Filtre kılavuzları için buraya tıklayın.",
 	"Click here for filter guides.": "Filtre kılavuzları için buraya tıklayın.",
 	"Click here for help.": "Yardım için buraya tıklayın.",
 	"Click here for help.": "Yardım için buraya tıklayın.",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Contact Admin for WebUI Access": "WebUI Erişimi için Yöneticiyle İletişime Geçin",
 	"Contact Admin for WebUI Access": "WebUI Erişimi için Yöneticiyle İletişime Geçin",
 	"Content": "İçerik",
 	"Content": "İçerik",
-	"Content Extraction": "İçerik Çıkarma",
+	"Content Extraction Engine": "",
 	"Context Length": "Bağlam Uzunluğu",
 	"Context Length": "Bağlam Uzunluğu",
 	"Continue Response": "Yanıta Devam Et",
 	"Continue Response": "Yanıta Devam Et",
 	"Continue with {{provider}}": "{{provider}} ile devam et",
 	"Continue with {{provider}}": "{{provider}} ile devam et",
@@ -246,6 +248,7 @@
 	"Current Model": "Mevcut Model",
 	"Current Model": "Mevcut Model",
 	"Current Password": "Mevcut Parola",
 	"Current Password": "Mevcut Parola",
 	"Custom": "Özel",
 	"Custom": "Özel",
+	"Danger Zone": "",
 	"Dark": "Koyu",
 	"Dark": "Koyu",
 	"Database": "Veritabanı",
 	"Database": "Veritabanı",
 	"December": "Aralık",
 	"December": "Aralık",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "",
 	"ElevenLabs": "",
 	"Email": "E-posta",
 	"Email": "E-posta",
 	"Embark on adventures": "Maceralara atıl",
 	"Embark on adventures": "Maceralara atıl",
+	"Embedding": "",
 	"Embedding Batch Size": "Gömme Yığın Boyutu",
 	"Embedding Batch Size": "Gömme Yığın Boyutu",
 	"Embedding Model": "Gömme Modeli",
 	"Embedding Model": "Gömme Modeli",
 	"Embedding Model Engine": "Gömme Modeli Motoru",
 	"Embedding Model Engine": "Gömme Modeli Motoru",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "Sohbet mesajları için otomatik tamamlama üretimini etkinleştir",
 	"Enable autocomplete generation for chat messages": "Sohbet mesajları için otomatik tamamlama üretimini etkinleştir",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Topluluk Paylaşımını Etkinleştir",
 	"Enable Community Sharing": "Topluluk Paylaşımını Etkinleştir",
-	"Enable Google Drive": "Google Drive'ı Etkinleştir",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"Enable Message Rating": "Mesaj Değerlendirmeyi Etkinleştir",
 	"Enable Message Rating": "Mesaj Değerlendirmeyi Etkinleştir",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Perplexity'yi kontrol etmek için Mirostat örnekleme özelliğini etkinleştirin. (Varsayılan: 0, 0 = Devre Dışı, 1 = Mirostat, 2 = Mirostat 2.0)",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Perplexity'yi kontrol etmek için Mirostat örnekleme özelliğini etkinleştirin. (Varsayılan: 0, 0 = Devre Dışı, 1 = Mirostat, 2 = Mirostat 2.0)",
 	"Enable New Sign Ups": "Yeni Kayıtları Etkinleştir",
 	"Enable New Sign Ups": "Yeni Kayıtları Etkinleştir",
-	"Enable OneDrive": "",
-	"Enable Web Search": "Web Aramasını Etkinleştir",
 	"Enabled": "Etkin",
 	"Enabled": "Etkin",
-	"Engine": "Motor",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "CSV dosyanızın şu sırayla 4 sütun içerdiğinden emin olun: İsim, E-posta, Şifre, Rol.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "CSV dosyanızın şu sırayla 4 sütun içerdiğinden emin olun: İsim, E-posta, Şifre, Rol.",
 	"Enter {{role}} message here": "Buraya {{role}} mesajını girin",
 	"Enter {{role}} message here": "Buraya {{role}} mesajını girin",
 	"Enter a detail about yourself for your LLMs to recall": "LLM'lerinizin hatırlaması için kendiniz hakkında bir bilgi girin",
 	"Enter a detail about yourself for your LLMs to recall": "LLM'lerinizin hatırlaması için kendiniz hakkında bir bilgi girin",
@@ -572,6 +572,7 @@
 	"Input commands": "Giriş komutları",
 	"Input commands": "Giriş komutları",
 	"Install from Github URL": "Github URL'sinden yükleyin",
 	"Install from Github URL": "Github URL'sinden yükleyin",
 	"Instant Auto-Send After Voice Transcription": "Ses Transkripsiyonundan Sonra Anında Otomatik Gönder",
 	"Instant Auto-Send After Voice Transcription": "Ses Transkripsiyonundan Sonra Anında Otomatik Gönder",
+	"Integration": "",
 	"Interface": "Arayüz",
 	"Interface": "Arayüz",
 	"Invalid file format.": "Geçersiz dosya biçimi.",
 	"Invalid file format.": "Geçersiz dosya biçimi.",
 	"Invalid Tag": "Geçersiz etiket",
 	"Invalid Tag": "Geçersiz etiket",
@@ -619,6 +620,7 @@
 	"Listening...": "Dinleniyor...",
 	"Listening...": "Dinleniyor...",
 	"Llama.cpp": "",
 	"Llama.cpp": "",
 	"LLMs can make mistakes. Verify important information.": "LLM'ler hata yapabilir. Önemli bilgileri doğrulayın.",
 	"LLMs can make mistakes. Verify important information.": "LLM'ler hata yapabilir. Önemli bilgileri doğrulayın.",
+	"Loader": "",
 	"Loading Kokoro.js...": "",
 	"Loading Kokoro.js...": "",
 	"Local": "Yerel",
 	"Local": "Yerel",
 	"Local Models": "Yerel Modeller",
 	"Local Models": "Yerel Modeller",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "HTML, CSS veya JavaScript içeriği bulunamadı.",
 	"No HTML, CSS, or JavaScript content found.": "HTML, CSS veya JavaScript içeriği bulunamadı.",
 	"No inference engine with management support found": "",
 	"No inference engine with management support found": "",
 	"No knowledge found": "Bilgi bulunamadı",
 	"No knowledge found": "Bilgi bulunamadı",
+	"No memories to clear": "",
 	"No model IDs": "",
 	"No model IDs": "",
 	"No models found": "Model bulunamadı",
 	"No models found": "Model bulunamadı",
 	"No models selected": "Model seçilmedi",
 	"No models selected": "Model seçilmedi",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "Prompt başarıyla güncellendi",
 	"Prompt updated successfully": "Prompt başarıyla güncellendi",
 	"Prompts": "Promptlar",
 	"Prompts": "Promptlar",
 	"Prompts Access": "Promptlara Erişim",
 	"Prompts Access": "Promptlara Erişim",
-	"Proxy URL": "Proxy URL'si",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com'dan \"{{searchValue}}\" çekin",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com'dan \"{{searchValue}}\" çekin",
 	"Pull a model from Ollama.com": "Ollama.com'dan bir model çekin",
 	"Pull a model from Ollama.com": "Ollama.com'dan bir model çekin",
 	"Query Generation Prompt": "Sorgu Oluşturma Promptu",
 	"Query Generation Prompt": "Sorgu Oluşturma Promptu",
-	"Query Params": "Sorgu Parametreleri",
 	"RAG Template": "RAG Şablonu",
 	"RAG Template": "RAG Şablonu",
 	"Rating": "Derecelendirme",
 	"Rating": "Derecelendirme",
 	"Re-rank models by topic similarity": "Konu benzerliğine göre modelleri yeniden sırala",
 	"Re-rank models by topic similarity": "Konu benzerliğine göre modelleri yeniden sırala",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Web sitesi izinleri reddedildiğinden yanıt bildirimleri etkinleştirilemiyor. Gerekli erişimi sağlamak için lütfen tarayıcı ayarlarınızı ziyaret edin.",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Web sitesi izinleri reddedildiğinden yanıt bildirimleri etkinleştirilemiyor. Gerekli erişimi sağlamak için lütfen tarayıcı ayarlarınızı ziyaret edin.",
 	"Response splitting": "Yanıt bölme",
 	"Response splitting": "Yanıt bölme",
 	"Result": "Sonuç",
 	"Result": "Sonuç",
+	"Retrieval": "",
 	"Retrieval Query Generation": "Alıntı Sorgu Oluşturma",
 	"Retrieval Query Generation": "Alıntı Sorgu Oluşturma",
 	"Rich Text Input for Chat": "Sohbet için Zengin Metin Girişi",
 	"Rich Text Input for Chat": "Sohbet için Zengin Metin Girişi",
 	"RK": "RK",
 	"RK": "RK",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Web": "Web",
 	"Web": "Web",
 	"Web API": "Web API",
 	"Web API": "Web API",
-	"Web Loader Settings": "Web Yükleyici Ayarları",
 	"Web Search": "Web Araması",
 	"Web Search": "Web Araması",
 	"Web Search Engine": "Web Arama Motoru",
 	"Web Search Engine": "Web Arama Motoru",
 	"Web Search in Chat": "",
 	"Web Search in Chat": "",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "Hesap durumunuz şu anda etkinleştirilmeyi bekliyor.",
 	"Your account status is currently pending activation.": "Hesap durumunuz şu anda etkinleştirilmeyi bekliyor.",
 	"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.": "Tüm katkınız doğrudan eklenti geliştiricisine gidecektir; Open WebUI herhangi bir yüzde almaz. Ancak seçilen finansman platformunun kendi ücretleri olabilir.",
 	"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.": "Tüm katkınız doğrudan eklenti geliştiricisine gidecektir; Open WebUI herhangi bir yüzde almaz. Ancak seçilen finansman platformunun kendi ücretleri olabilir.",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
-	"Youtube Loader Settings": "Youtube Yükleyici Ayarları"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/uk-UA/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "Архівувати всі чати",
 	"Archive All Chats": "Архівувати всі чати",
 	"Archived Chats": "Архівовані чати",
 	"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 this channel?": "Ви впевнені, що хочете видалити цей канал?",
 	"Are you sure you want to delete this channel?": "Ви впевнені, що хочете видалити цей канал?",
 	"Are you sure you want to delete this message?": "Ви впевнені, що хочете видалити це повідомлення?",
 	"Are you sure you want to delete this message?": "Ви впевнені, що хочете видалити це повідомлення?",
 	"Are you sure you want to unarchive all archived chats?": "Ви впевнені, що хочете розархівувати всі архівовані чати?",
 	"Are you sure you want to unarchive all archived chats?": "Ви впевнені, що хочете розархівувати всі архівовані чати?",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "Ключ API пошуку Bocha",
 	"Bocha Search API Key": "Ключ API пошуку Bocha",
 	"Brave Search API Key": "Ключ API пошуку Brave",
 	"Brave Search API Key": "Ключ API пошуку Brave",
 	"By {{name}}": "Від {{name}}",
 	"By {{name}}": "Від {{name}}",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "Обхід SSL-перевірки для веб-сайтів",
 	"Bypass SSL verification for Websites": "Обхід SSL-перевірки для веб-сайтів",
 	"Calendar": "",
 	"Calendar": "",
 	"Call": "Виклик",
 	"Call": "Виклик",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "Перевірка оновлень...",
 	"Checking for updates...": "Перевірка оновлень...",
 	"Choose a model before saving...": "Оберіть модель перед збереженням...",
 	"Choose a model before saving...": "Оберіть модель перед збереженням...",
 	"Chunk Overlap": "Перекриття фрагментів",
 	"Chunk Overlap": "Перекриття фрагментів",
-	"Chunk Params": "Параметри фрагментів",
 	"Chunk Size": "Розмір фрагменту",
 	"Chunk Size": "Розмір фрагменту",
 	"Ciphers": "Шифри",
 	"Ciphers": "Шифри",
 	"Citation": "Цитування",
 	"Citation": "Цитування",
 	"Clear memory": "Очистити пам'ять",
 	"Clear memory": "Очистити пам'ять",
+	"Clear Memory": "",
 	"click here": "натисніть тут",
 	"click here": "натисніть тут",
 	"Click here for filter guides.": "Натисніть тут для інструкцій із фільтрації",
 	"Click here for filter guides.": "Натисніть тут для інструкцій із фільтрації",
 	"Click here for help.": "Натисніть тут, щоб отримати допомогу.",
 	"Click here for help.": "Натисніть тут, щоб отримати допомогу.",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "Обмежує зусилля на міркування для моделей міркування. Застосовується лише до моделей від певних постачальників, які підтримують зусилля на міркування. (За замовчуванням: середній)",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "Обмежує зусилля на міркування для моделей міркування. Застосовується лише до моделей від певних постачальників, які підтримують зусилля на міркування. (За замовчуванням: середній)",
 	"Contact Admin for WebUI Access": "Зверніться до адміна для отримання доступу до WebUI",
 	"Contact Admin for WebUI Access": "Зверніться до адміна для отримання доступу до WebUI",
 	"Content": "Зміст",
 	"Content": "Зміст",
-	"Content Extraction": "Вилучення вмісту",
+	"Content Extraction Engine": "",
 	"Context Length": "Довжина контексту",
 	"Context Length": "Довжина контексту",
 	"Continue Response": "Продовжити відповідь",
 	"Continue Response": "Продовжити відповідь",
 	"Continue with {{provider}}": "Продовжити з {{provider}}",
 	"Continue with {{provider}}": "Продовжити з {{provider}}",
@@ -246,6 +248,7 @@
 	"Current Model": "Поточна модель",
 	"Current Model": "Поточна модель",
 	"Current Password": "Поточний пароль",
 	"Current Password": "Поточний пароль",
 	"Custom": "Налаштувати",
 	"Custom": "Налаштувати",
+	"Danger Zone": "",
 	"Dark": "Темна",
 	"Dark": "Темна",
 	"Database": "База даних",
 	"Database": "База даних",
 	"December": "Грудень",
 	"December": "Грудень",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "ElevenLabs",
 	"ElevenLabs": "ElevenLabs",
 	"Email": "Ел. пошта",
 	"Email": "Ел. пошта",
 	"Embark on adventures": "Вирушайте в пригоди",
 	"Embark on adventures": "Вирушайте в пригоди",
+	"Embedding": "",
 	"Embedding Batch Size": "Розмір пакету під час вбудовування",
 	"Embedding Batch Size": "Розмір пакету під час вбудовування",
 	"Embedding Model": "Модель вбудовування",
 	"Embedding Model": "Модель вбудовування",
 	"Embedding Model Engine": "Рушій моделі вбудовування ",
 	"Embedding Model Engine": "Рушій моделі вбудовування ",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "Увімкнути генерацію автозаповнення для повідомлень чату",
 	"Enable autocomplete generation for chat messages": "Увімкнути генерацію автозаповнення для повідомлень чату",
 	"Enable Code Interpreter": "Увімкнути інтерпретатор коду",
 	"Enable Code Interpreter": "Увімкнути інтерпретатор коду",
 	"Enable Community Sharing": "Увімкнути спільний доступ",
 	"Enable Community Sharing": "Увімкнути спільний доступ",
-	"Enable Google Drive": "Увімкнути Google Drive",
 	"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.": "Увімкнути блокування пам'яті (mlock), щоб запобігти виведенню даних моделі з оперативної пам'яті. Цей параметр блокує робочий набір сторінок моделі в оперативній пам'яті, гарантуючи, що вони не будуть виведені на диск. Це може допомогти підтримувати продуктивність, уникати помилок сторінок та забезпечувати швидкий доступ до даних.",
 	"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.": "Увімкнути блокування пам'яті (mlock), щоб запобігти виведенню даних моделі з оперативної пам'яті. Цей параметр блокує робочий набір сторінок моделі в оперативній пам'яті, гарантуючи, що вони не будуть виведені на диск. Це може допомогти підтримувати продуктивність, уникати помилок сторінок та забезпечувати швидкий доступ до даних.",
 	"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.": "Увімкнути відображення пам'яті (mmap) для завантаження даних моделі. Цей параметр дозволяє системі використовувати дискове сховище як розширення оперативної пам'яті, трактуючи файли на диску, як ніби вони знаходяться в RAM. Це може покращити продуктивність моделі, дозволяючи швидший доступ до даних. Однак, він може не працювати коректно на всіх системах і може споживати значну кількість дискового простору.",
 	"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.": "Увімкнути відображення пам'яті (mmap) для завантаження даних моделі. Цей параметр дозволяє системі використовувати дискове сховище як розширення оперативної пам'яті, трактуючи файли на диску, як ніби вони знаходяться в RAM. Це може покращити продуктивність моделі, дозволяючи швидший доступ до даних. Однак, він може не працювати коректно на всіх системах і може споживати значну кількість дискового простору.",
 	"Enable Message Rating": "Увімкнути оцінку повідомлень",
 	"Enable Message Rating": "Увімкнути оцінку повідомлень",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Увімкнути вибірку Mirostat для контролю над непередбачуваністю. (За замовчуванням: 0, 0 = Вимкнено, 1 = Mirostat, 2 = Mirostat 2.0)",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Увімкнути вибірку Mirostat для контролю над непередбачуваністю. (За замовчуванням: 0, 0 = Вимкнено, 1 = Mirostat, 2 = Mirostat 2.0)",
 	"Enable New Sign Ups": "Дозволити нові реєстрації",
 	"Enable New Sign Ups": "Дозволити нові реєстрації",
-	"Enable OneDrive": "",
-	"Enable Web Search": "Увімкнути веб-пошук",
 	"Enabled": "Увімкнено",
 	"Enabled": "Увімкнено",
-	"Engine": "Рушій",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Переконайтеся, що ваш CSV-файл містить 4 колонки в такому порядку: Ім'я, Email, Пароль, Роль.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Переконайтеся, що ваш CSV-файл містить 4 колонки в такому порядку: Ім'я, Email, Пароль, Роль.",
 	"Enter {{role}} message here": "Введіть повідомлення {{role}} тут",
 	"Enter {{role}} message here": "Введіть повідомлення {{role}} тут",
 	"Enter a detail about yourself for your LLMs to recall": "Введіть відомості про себе для запам'ятовування вашими LLM.",
 	"Enter a detail about yourself for your LLMs to recall": "Введіть відомості про себе для запам'ятовування вашими LLM.",
@@ -572,6 +572,7 @@
 	"Input commands": "Команди вводу",
 	"Input commands": "Команди вводу",
 	"Install from Github URL": "Встановіть з URL-адреси Github",
 	"Install from Github URL": "Встановіть з URL-адреси Github",
 	"Instant Auto-Send After Voice Transcription": "Миттєва автоматична відправка після транскрипції голосу",
 	"Instant Auto-Send After Voice Transcription": "Миттєва автоматична відправка після транскрипції голосу",
+	"Integration": "",
 	"Interface": "Інтерфейс",
 	"Interface": "Інтерфейс",
 	"Invalid file format.": "Неправильний формат файлу.",
 	"Invalid file format.": "Неправильний формат файлу.",
 	"Invalid Tag": "Недійсний тег",
 	"Invalid Tag": "Недійсний тег",
@@ -619,6 +620,7 @@
 	"Listening...": "Слухаю...",
 	"Listening...": "Слухаю...",
 	"Llama.cpp": "Llama.cpp",
 	"Llama.cpp": "Llama.cpp",
 	"LLMs can make mistakes. Verify important information.": "LLMs можуть помилятися. Перевірте важливу інформацію.",
 	"LLMs can make mistakes. Verify important information.": "LLMs можуть помилятися. Перевірте важливу інформацію.",
+	"Loader": "",
 	"Loading Kokoro.js...": "Завантаження Kokoro.js...",
 	"Loading Kokoro.js...": "Завантаження Kokoro.js...",
 	"Local": "Локальний",
 	"Local": "Локальний",
 	"Local Models": "Локальні моделі",
 	"Local Models": "Локальні моделі",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "HTML, CSS або JavaScript контент не знайдено.",
 	"No HTML, CSS, or JavaScript content found.": "HTML, CSS або JavaScript контент не знайдено.",
 	"No inference engine with management support found": "Не знайдено двигуна висновків з підтримкою керування",
 	"No inference engine with management support found": "Не знайдено двигуна висновків з підтримкою керування",
 	"No knowledge found": "Знання не знайдено.",
 	"No knowledge found": "Знання не знайдено.",
+	"No memories to clear": "",
 	"No model IDs": "Немає ID моделей",
 	"No model IDs": "Немає ID моделей",
 	"No models found": "Моделей не знайдено",
 	"No models found": "Моделей не знайдено",
 	"No models selected": "Моделі не вибрано",
 	"No models selected": "Моделі не вибрано",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "Підказку успішно оновлено",
 	"Prompt updated successfully": "Підказку успішно оновлено",
 	"Prompts": "Промти",
 	"Prompts": "Промти",
 	"Prompts Access": "Доступ до підказок",
 	"Prompts Access": "Доступ до підказок",
-	"Proxy URL": "URL проксі",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Завантажити \"{{searchValue}}\" з Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Завантажити \"{{searchValue}}\" з Ollama.com",
 	"Pull a model from Ollama.com": "Завантажити модель з Ollama.com",
 	"Pull a model from Ollama.com": "Завантажити модель з Ollama.com",
 	"Query Generation Prompt": "Підказка для генерації запиту",
 	"Query Generation Prompt": "Підказка для генерації запиту",
-	"Query Params": "Параметри запиту",
 	"RAG Template": "Шаблон RAG",
 	"RAG Template": "Шаблон RAG",
 	"Rating": "Оцінка",
 	"Rating": "Оцінка",
 	"Re-rank models by topic similarity": "Перестановка моделей за схожістю тем",
 	"Re-rank models by topic similarity": "Перестановка моделей за схожістю тем",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Сповіщення про відповіді не можуть бути активовані, оскільки вам було відмовлено в доступі до веб-сайту. Будь ласка, відвідайте налаштування вашого браузера, щоб надати необхідний доступ.",
 	"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 splitting": "Розбиття відповіді",
 	"Result": "Результат",
 	"Result": "Результат",
+	"Retrieval": "",
 	"Retrieval Query Generation": "Генерація запиту для отримання даних",
 	"Retrieval Query Generation": "Генерація запиту для отримання даних",
 	"Rich Text Input for Chat": "Ввід тексту з форматуванням для чату",
 	"Rich Text Input for Chat": "Ввід тексту з форматуванням для чату",
 	"RK": "RK",
 	"RK": "RK",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Web": "Веб",
 	"Web": "Веб",
 	"Web API": "Веб-API",
 	"Web API": "Веб-API",
-	"Web Loader Settings": "Налаштування веб-завантажувача",
 	"Web Search": "Веб-пошук",
 	"Web Search": "Веб-пошук",
 	"Web Search Engine": "Веб-пошукова система",
 	"Web Search Engine": "Веб-пошукова система",
 	"Web Search in Chat": "Пошук в інтернеті в чаті",
 	"Web Search in Chat": "Пошук в інтернеті в чаті",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "Статус вашого облікового запису наразі очікує на активацію.",
 	"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 не бере жодних відсотків. Однак, обрана платформа фінансування може мати свої власні збори.",
 	"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": "Youtube",
-	"Youtube Loader Settings": "Налаштування завантажувача Youtube"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/ur-PK/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "تمام چیٹس محفوظ کریں",
 	"Archive All Chats": "تمام چیٹس محفوظ کریں",
 	"Archived Chats": "محفوظ شدہ بات چیت",
 	"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 this channel?": "",
 	"Are you sure you want to delete this channel?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "",
 	"Bocha Search API Key": "",
 	"Brave Search API Key": "بریو سرچ API کلید",
 	"Brave Search API Key": "بریو سرچ API کلید",
 	"By {{name}}": "",
 	"By {{name}}": "",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "ویب سائٹس کے لیے SSL تصدیق کو نظر انداز کریں",
 	"Bypass SSL verification for Websites": "ویب سائٹس کے لیے SSL تصدیق کو نظر انداز کریں",
 	"Calendar": "",
 	"Calendar": "",
 	"Call": "کال کریں",
 	"Call": "کال کریں",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "تازہ ترین معلومات کی جانچ کر رہا ہے...",
 	"Checking for updates...": "تازہ ترین معلومات کی جانچ کر رہا ہے...",
 	"Choose a model before saving...": "محفوظ کرنے سے پہلے ایک ماڈل منتخب کریں...",
 	"Choose a model before saving...": "محفوظ کرنے سے پہلے ایک ماڈل منتخب کریں...",
 	"Chunk Overlap": "حصے کی اوورلیپ",
 	"Chunk Overlap": "حصے کی اوورلیپ",
-	"Chunk Params": "چنک پیرا میٹرز",
 	"Chunk Size": "چنک سائز",
 	"Chunk Size": "چنک سائز",
 	"Ciphers": "",
 	"Ciphers": "",
 	"Citation": "حوالہ",
 	"Citation": "حوالہ",
 	"Clear memory": "میموری صاف کریں",
 	"Clear memory": "میموری صاف کریں",
+	"Clear Memory": "",
 	"click here": "",
 	"click here": "",
 	"Click here for filter guides.": "",
 	"Click here for filter guides.": "",
 	"Click here for help.": "مدد کے لیے یہاں کلک کریں",
 	"Click here for help.": "مدد کے لیے یہاں کلک کریں",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Contact Admin for WebUI Access": "ویب یو آئی رسائی کے لیے ایڈمن سے رابطہ کریں",
 	"Contact Admin for WebUI Access": "ویب یو آئی رسائی کے لیے ایڈمن سے رابطہ کریں",
 	"Content": "مواد",
 	"Content": "مواد",
-	"Content Extraction": "مواد نکالنا",
+	"Content Extraction Engine": "",
 	"Context Length": "سیاق کی لمبائی",
 	"Context Length": "سیاق کی لمبائی",
 	"Continue Response": "ردعمل جاری رکھیں",
 	"Continue Response": "ردعمل جاری رکھیں",
 	"Continue with {{provider}}": "{{provider}} کے ساتھ جاری رکھیں",
 	"Continue with {{provider}}": "{{provider}} کے ساتھ جاری رکھیں",
@@ -246,6 +248,7 @@
 	"Current Model": "موجودہ ماڈل",
 	"Current Model": "موجودہ ماڈل",
 	"Current Password": "موجودہ پاس ورڈ",
 	"Current Password": "موجودہ پاس ورڈ",
 	"Custom": "حسب ضرورت",
 	"Custom": "حسب ضرورت",
+	"Danger Zone": "",
 	"Dark": "ڈارک",
 	"Dark": "ڈارک",
 	"Database": "ڈیٹا بیس",
 	"Database": "ڈیٹا بیس",
 	"December": "دسمبر",
 	"December": "دسمبر",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "الیون لیبز",
 	"ElevenLabs": "الیون لیبز",
 	"Email": "ای میل",
 	"Email": "ای میل",
 	"Embark on adventures": "",
 	"Embark on adventures": "",
+	"Embedding": "",
 	"Embedding Batch Size": "بیچ سائز شامل کرنا",
 	"Embedding Batch Size": "بیچ سائز شامل کرنا",
 	"Embedding Model": "ایمبیڈنگ ماڈل",
 	"Embedding Model": "ایمبیڈنگ ماڈل",
 	"Embedding Model Engine": "ایمبیڈنگ ماڈل انجن",
 	"Embedding Model Engine": "ایمبیڈنگ ماڈل انجن",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "کمیونٹی شیئرنگ فعال کریں",
 	"Enable Community Sharing": "کمیونٹی شیئرنگ فعال کریں",
-	"Enable Google Drive": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"Enable Message Rating": "پیغام کی درجہ بندی فعال کریں",
 	"Enable Message Rating": "پیغام کی درجہ بندی فعال کریں",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "نئے سائن اپس کو فعال کریں",
 	"Enable New Sign Ups": "نئے سائن اپس کو فعال کریں",
-	"Enable OneDrive": "",
-	"Enable Web Search": "ویب تلاش فعال کریں",
 	"Enabled": "فعال کردیا گیا ہے",
 	"Enabled": "فعال کردیا گیا ہے",
-	"Engine": "انجن",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "یقینی بنائیں کہ آپ کی CSV فائل میں 4 کالم اس ترتیب میں شامل ہوں: نام، ای میل، پاس ورڈ، کردار",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "یقینی بنائیں کہ آپ کی CSV فائل میں 4 کالم اس ترتیب میں شامل ہوں: نام، ای میل، پاس ورڈ، کردار",
 	"Enter {{role}} message here": "یہاں {{کردار}} پیغام درج کریں",
 	"Enter {{role}} message here": "یہاں {{کردار}} پیغام درج کریں",
 	"Enter a detail about yourself for your LLMs to recall": "اپنی ذات کے بارے میں کوئی تفصیل درج کریں تاکہ آپ کے LLMs اسے یاد رکھ سکیں",
 	"Enter a detail about yourself for your LLMs to recall": "اپنی ذات کے بارے میں کوئی تفصیل درج کریں تاکہ آپ کے LLMs اسے یاد رکھ سکیں",
@@ -572,6 +572,7 @@
 	"Input commands": "کمانڈز داخل کریں",
 	"Input commands": "کمانڈز داخل کریں",
 	"Install from Github URL": "گِٹ حب یو آر ایل سے انسٹال کریں",
 	"Install from Github URL": "گِٹ حب یو آر ایل سے انسٹال کریں",
 	"Instant Auto-Send After Voice Transcription": "آواز کی نقل کے بعد فوری خودکار بھیجنا",
 	"Instant Auto-Send After Voice Transcription": "آواز کی نقل کے بعد فوری خودکار بھیجنا",
+	"Integration": "",
 	"Interface": "انٹرفیس",
 	"Interface": "انٹرفیس",
 	"Invalid file format.": "غلط فائل فارمیٹ",
 	"Invalid file format.": "غلط فائل فارمیٹ",
 	"Invalid Tag": "غلط ٹیگ",
 	"Invalid Tag": "غلط ٹیگ",
@@ -619,6 +620,7 @@
 	"Listening...": "سن رہے ہیں...",
 	"Listening...": "سن رہے ہیں...",
 	"Llama.cpp": "",
 	"Llama.cpp": "",
 	"LLMs can make mistakes. Verify important information.": "ایل ایل ایم غلطیاں کر سکتے ہیں اہم معلومات کی تصدیق کریں",
 	"LLMs can make mistakes. Verify important information.": "ایل ایل ایم غلطیاں کر سکتے ہیں اہم معلومات کی تصدیق کریں",
+	"Loader": "",
 	"Loading Kokoro.js...": "",
 	"Loading Kokoro.js...": "",
 	"Local": "",
 	"Local": "",
 	"Local Models": "مقامی ماڈلز",
 	"Local Models": "مقامی ماڈلز",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "کوئی HTML، CSS، یا جاوا اسکرپٹ مواد نہیں ملا",
 	"No HTML, CSS, or JavaScript content found.": "کوئی HTML، CSS، یا جاوا اسکرپٹ مواد نہیں ملا",
 	"No inference engine with management support found": "",
 	"No inference engine with management support found": "",
 	"No knowledge found": "کوئی معلومات نہیں ملی",
 	"No knowledge found": "کوئی معلومات نہیں ملی",
+	"No memories to clear": "",
 	"No model IDs": "",
 	"No model IDs": "",
 	"No models found": "کوئی ماڈل نہیں ملا",
 	"No models found": "کوئی ماڈل نہیں ملا",
 	"No models selected": "",
 	"No models selected": "",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "پرومپٹس",
 	"Prompts": "پرومپٹس",
 	"Prompts Access": "",
 	"Prompts Access": "",
-	"Proxy URL": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com سے \"{{searchValue}}\" کو کھینچیں",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com سے \"{{searchValue}}\" کو کھینچیں",
 	"Pull a model from Ollama.com": "Ollama.com سے ماڈل حاصل کریں",
 	"Pull a model from Ollama.com": "Ollama.com سے ماڈل حاصل کریں",
 	"Query Generation Prompt": "",
 	"Query Generation Prompt": "",
-	"Query Params": "کوئری پیرامیٹرز",
 	"RAG Template": "آر اے جی سانچہ",
 	"RAG Template": "آر اے جی سانچہ",
 	"Rating": "درجہ بندی",
 	"Rating": "درجہ بندی",
 	"Re-rank models by topic similarity": "موضوع کی مماثلت کے لحاظ سے ماڈلز کی دوبارہ ترتیب دیں",
 	"Re-rank models by topic similarity": "موضوع کی مماثلت کے لحاظ سے ماڈلز کی دوبارہ ترتیب دیں",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "جواب کی اطلاعات کو فعال نہیں کیا جا سکتا کیونکہ ویب سائٹ کی اجازتیں مسترد کر دی گئی ہیں براہ کرم اپنے براؤزر کی سیٹنگز پر جائیں تاکہ ضروری رسائی کی اجازت دے سکیں",
 	"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 splitting": "جواب کو تقسیم کرنا",
 	"Result": "نتیجہ",
 	"Result": "نتیجہ",
+	"Retrieval": "",
 	"Retrieval Query Generation": "",
 	"Retrieval Query Generation": "",
 	"Rich Text Input for Chat": "چیٹ کے لیے رچ ٹیکسٹ ان پٹ",
 	"Rich Text Input for Chat": "چیٹ کے لیے رچ ٹیکسٹ ان پٹ",
 	"RK": "آر کے",
 	"RK": "آر کے",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Web": "ویب",
 	"Web": "ویب",
 	"Web API": "ویب اے پی آئی",
 	"Web API": "ویب اے پی آئی",
-	"Web Loader Settings": "ویب لوڈر کی ترتیبات",
 	"Web Search": "ویب تلاش کریں",
 	"Web Search": "ویب تلاش کریں",
 	"Web Search Engine": "ویب تلاش انجن",
 	"Web Search Engine": "ویب تلاش انجن",
 	"Web Search in Chat": "",
 	"Web Search in Chat": "",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "آپ کے اکاؤنٹ کی حالت فی الحال فعال ہونے کے منتظر ہے",
 	"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.": "آپ کی پوری شراکت براہ راست پلگ ان ڈیولپر کو جائے گی؛ اوپن ویب یو آئی کوئی فیصد نہیں لیتی تاہم، منتخب کردہ فنڈنگ پلیٹ فارم کی اپنی فیس ہو سکتی ہیں",
 	"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.": "آپ کی پوری شراکت براہ راست پلگ ان ڈیولپر کو جائے گی؛ اوپن ویب یو آئی کوئی فیصد نہیں لیتی تاہم، منتخب کردہ فنڈنگ پلیٹ فارم کی اپنی فیس ہو سکتی ہیں",
 	"Youtube": "یوٹیوب",
 	"Youtube": "یوٹیوب",
-	"Youtube Loader Settings": "یوٹیوب لوڈر کی ترتیبات"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/vi-VN/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "Lưu tất cả các cuộc Chat",
 	"Archive All Chats": "Lưu tất cả các cuộc Chat",
 	"Archived Chats": "Lưu các cuộc Chat",
 	"Archived Chats": "Lưu các cuộc Chat",
 	"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 this channel?": "",
 	"Are you sure you want to delete this channel?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to delete this message?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
 	"Are you sure you want to unarchive all archived chats?": "",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "",
 	"Bocha Search API Key": "",
 	"Brave Search API Key": "Khóa API tìm kiếm dũng cảm",
 	"Brave Search API Key": "Khóa API tìm kiếm dũng cảm",
 	"By {{name}}": "",
 	"By {{name}}": "",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "Bỏ qua xác thực SSL cho các trang web",
 	"Bypass SSL verification for Websites": "Bỏ qua xác thực SSL cho các trang web",
 	"Calendar": "",
 	"Calendar": "",
 	"Call": "Gọi",
 	"Call": "Gọi",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "Đang kiểm tra cập nhật...",
 	"Checking for updates...": "Đang kiểm tra cập nhật...",
 	"Choose a model before saving...": "Chọn mô hình trước khi lưu...",
 	"Choose a model before saving...": "Chọn mô hình trước khi lưu...",
 	"Chunk Overlap": "Chồng lấn (overlap)",
 	"Chunk Overlap": "Chồng lấn (overlap)",
-	"Chunk Params": "Tham số khối (chunk)",
 	"Chunk Size": "Kích thước khối (size)",
 	"Chunk Size": "Kích thước khối (size)",
 	"Ciphers": "",
 	"Ciphers": "",
 	"Citation": "Trích dẫn",
 	"Citation": "Trích dẫn",
 	"Clear memory": "Xóa bộ nhớ",
 	"Clear memory": "Xóa bộ nhớ",
+	"Clear Memory": "",
 	"click here": "",
 	"click here": "",
 	"Click here for filter guides.": "",
 	"Click here for filter guides.": "",
 	"Click here for help.": "Bấm vào đây để được trợ giúp.",
 	"Click here for help.": "Bấm vào đây để được trợ giúp.",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
 	"Contact Admin for WebUI Access": "Liên hệ với Quản trị viên để được cấp quyền truy cập",
 	"Contact Admin for WebUI Access": "Liên hệ với Quản trị viên để được cấp quyền truy cập",
 	"Content": "Nội dung",
 	"Content": "Nội dung",
-	"Content Extraction": "Trích xuất nội dung",
+	"Content Extraction Engine": "",
 	"Context Length": "Độ dài ngữ cảnh (Context Length)",
 	"Context Length": "Độ dài ngữ cảnh (Context Length)",
 	"Continue Response": "Tiếp tục trả lời",
 	"Continue Response": "Tiếp tục trả lời",
 	"Continue with {{provider}}": "Tiếp tục với {{provider}}",
 	"Continue with {{provider}}": "Tiếp tục với {{provider}}",
@@ -246,6 +248,7 @@
 	"Current Model": "Mô hình hiện tại",
 	"Current Model": "Mô hình hiện tại",
 	"Current Password": "Mật khẩu hiện tại",
 	"Current Password": "Mật khẩu hiện tại",
 	"Custom": "Tùy chỉnh",
 	"Custom": "Tùy chỉnh",
+	"Danger Zone": "",
 	"Dark": "Tối",
 	"Dark": "Tối",
 	"Database": "Cơ sở dữ liệu",
 	"Database": "Cơ sở dữ liệu",
 	"December": "Tháng 12",
 	"December": "Tháng 12",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "",
 	"ElevenLabs": "",
 	"Email": "Email",
 	"Email": "Email",
 	"Embark on adventures": "",
 	"Embark on adventures": "",
+	"Embedding": "",
 	"Embedding Batch Size": "",
 	"Embedding Batch Size": "",
 	"Embedding Model": "Mô hình embedding",
 	"Embedding Model": "Mô hình embedding",
 	"Embedding Model Engine": "Trình xử lý embedding",
 	"Embedding Model Engine": "Trình xử lý embedding",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Cho phép Chia sẻ Cộng đồng",
 	"Enable Community Sharing": "Cho phép Chia sẻ Cộng đồng",
-	"Enable Google Drive": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"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.": "",
 	"Enable Message Rating": "Cho phép phản hồi, đánh giá",
 	"Enable Message Rating": "Cho phép phản hồi, đánh giá",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Cho phép đăng ký mới",
 	"Enable New Sign Ups": "Cho phép đăng ký mới",
-	"Enable OneDrive": "",
-	"Enable Web Search": "Cho phép tìm kiếm Web",
 	"Enabled": "Đã bật",
 	"Enabled": "Đã bật",
-	"Engine": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Đảm bảo tệp CSV của bạn bao gồm 4 cột theo thứ tự sau: Name, Email, Password, Role.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Đảm bảo tệp CSV của bạn bao gồm 4 cột theo thứ tự sau: Name, Email, Password, Role.",
 	"Enter {{role}} message here": "Nhập yêu cầu của {{role}} ở đây",
 	"Enter {{role}} message here": "Nhập yêu cầu của {{role}} ở đây",
 	"Enter a detail about yourself for your LLMs to recall": "Nhập chi tiết về bản thân của bạn để LLMs có thể nhớ",
 	"Enter a detail about yourself for your LLMs to recall": "Nhập chi tiết về bản thân của bạn để LLMs có thể nhớ",
@@ -572,6 +572,7 @@
 	"Input commands": "Nhập các câu lệnh",
 	"Input commands": "Nhập các câu lệnh",
 	"Install from Github URL": "Cài đặt từ Github URL",
 	"Install from Github URL": "Cài đặt từ Github URL",
 	"Instant Auto-Send After Voice Transcription": "Tự động gửi ngay lập tức sau khi phiên dịch giọng nói",
 	"Instant Auto-Send After Voice Transcription": "Tự động gửi ngay lập tức sau khi phiên dịch giọng nói",
+	"Integration": "",
 	"Interface": "Giao diện",
 	"Interface": "Giao diện",
 	"Invalid file format.": "",
 	"Invalid file format.": "",
 	"Invalid Tag": "Tag không hợp lệ",
 	"Invalid Tag": "Tag không hợp lệ",
@@ -619,6 +620,7 @@
 	"Listening...": "Đang nghe...",
 	"Listening...": "Đang nghe...",
 	"Llama.cpp": "",
 	"Llama.cpp": "",
 	"LLMs can make mistakes. Verify important information.": "Hệ thống có thể tạo ra nội dung không chính xác hoặc sai. Hãy kiểm chứng kỹ lưỡng thông tin trước khi tiếp nhận và sử dụng.",
 	"LLMs can make mistakes. Verify important information.": "Hệ thống có thể tạo ra nội dung không chính xác hoặc sai. Hãy kiểm chứng kỹ lưỡng thông tin trước khi tiếp nhận và sử dụng.",
+	"Loader": "",
 	"Loading Kokoro.js...": "",
 	"Loading Kokoro.js...": "",
 	"Local": "",
 	"Local": "",
 	"Local Models": "",
 	"Local Models": "",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No HTML, CSS, or JavaScript content found.": "",
 	"No inference engine with management support found": "",
 	"No inference engine with management support found": "",
 	"No knowledge found": "",
 	"No knowledge found": "",
+	"No memories to clear": "",
 	"No model IDs": "",
 	"No model IDs": "",
 	"No models found": "",
 	"No models found": "",
 	"No models selected": "",
 	"No models selected": "",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "Prompt",
 	"Prompts": "Prompt",
 	"Prompts Access": "",
 	"Prompts Access": "",
-	"Proxy URL": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Tải \"{{searchValue}}\" từ Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Tải \"{{searchValue}}\" từ Ollama.com",
 	"Pull a model from Ollama.com": "Tải mô hình từ Ollama.com",
 	"Pull a model from Ollama.com": "Tải mô hình từ Ollama.com",
 	"Query Generation Prompt": "",
 	"Query Generation Prompt": "",
-	"Query Params": "Tham số Truy vấn",
 	"RAG Template": "Mẫu prompt cho RAG",
 	"RAG Template": "Mẫu prompt cho RAG",
 	"Rating": "",
 	"Rating": "",
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Không thể kích hoạt thông báo vì trang web không cấp quyền. Vui lòng truy cập cài đặt trình duyệt của bạn để cấp quyền cần thiết.",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Không thể kích hoạt thông báo vì trang web không cấp quyền. Vui lòng truy cập cài đặt trình duyệt của bạn để cấp quyền cần thiết.",
 	"Response splitting": "",
 	"Response splitting": "",
 	"Result": "",
 	"Result": "",
+	"Retrieval": "",
 	"Retrieval Query Generation": "",
 	"Retrieval Query Generation": "",
 	"Rich Text Input for Chat": "",
 	"Rich Text Input for Chat": "",
 	"RK": "",
 	"RK": "",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
 	"Web": "Web",
 	"Web": "Web",
 	"Web API": "",
 	"Web API": "",
-	"Web Loader Settings": "Cài đặt Web Loader",
 	"Web Search": "Tìm kiếm Web",
 	"Web Search": "Tìm kiếm Web",
 	"Web Search Engine": "Chức năng Tìm kiếm Web",
 	"Web Search Engine": "Chức năng Tìm kiếm Web",
 	"Web Search in Chat": "",
 	"Web Search in Chat": "",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "Tài khoản của bạn hiện đang ở trạng thái chờ kích hoạt.",
 	"Your account status is currently pending activation.": "Tài khoản của bạn hiện đang ở trạng thái chờ kích hoạt.",
 	"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.": "Toàn bộ đóng góp của bạn sẽ được chuyển trực tiếp đến nhà phát triển plugin; Open WebUI không lấy bất kỳ tỷ lệ phần trăm nào. Tuy nhiên, nền tảng được chọn tài trợ có thể có phí riêng.",
 	"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.": "Toàn bộ đóng góp của bạn sẽ được chuyển trực tiếp đến nhà phát triển plugin; Open WebUI không lấy bất kỳ tỷ lệ phần trăm nào. Tuy nhiên, nền tảng được chọn tài trợ có thể có phí riêng.",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
-	"Youtube Loader Settings": "Cài đặt Youtube Loader"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/zh-CN/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "归档所有对话记录",
 	"Archive All Chats": "归档所有对话记录",
 	"Archived Chats": "已归档对话",
 	"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 this channel?": "是否确认删除此频道?",
 	"Are you sure you want to delete this channel?": "是否确认删除此频道?",
 	"Are you sure you want to delete this message?": "是否确认删除此消息?",
 	"Are you sure you want to delete this message?": "是否确认删除此消息?",
 	"Are you sure you want to unarchive all archived chats?": "是否确认取消所有已归档的对话?",
 	"Are you sure you want to unarchive all archived chats?": "是否确认取消所有已归档的对话?",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "Bocha Search API 密钥",
 	"Bocha Search API Key": "Bocha Search API 密钥",
 	"Brave Search API Key": "Brave Search API 密钥",
 	"Brave Search API Key": "Brave Search API 密钥",
 	"By {{name}}": "由 {{name}} 提供",
 	"By {{name}}": "由 {{name}} 提供",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "绕过网站的 SSL 验证",
 	"Bypass SSL verification for Websites": "绕过网站的 SSL 验证",
 	"Calendar": "日历",
 	"Calendar": "日历",
 	"Call": "呼叫",
 	"Call": "呼叫",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "正在检查更新...",
 	"Checking for updates...": "正在检查更新...",
 	"Choose a model before saving...": "保存前选择一个模型...",
 	"Choose a model before saving...": "保存前选择一个模型...",
 	"Chunk Overlap": "块重叠 (Chunk Overlap)",
 	"Chunk Overlap": "块重叠 (Chunk Overlap)",
-	"Chunk Params": "块参数 (Chunk Params)",
 	"Chunk Size": "块大小 (Chunk Size)",
 	"Chunk Size": "块大小 (Chunk Size)",
 	"Ciphers": "加密算法 (Ciphers)",
 	"Ciphers": "加密算法 (Ciphers)",
 	"Citation": "引文",
 	"Citation": "引文",
 	"Clear memory": "清除记忆",
 	"Clear memory": "清除记忆",
+	"Clear Memory": "",
 	"click here": "点击此处",
 	"click here": "点击此处",
 	"Click here for filter guides.": "点击此处查看 filter 指南。",
 	"Click here for filter guides.": "点击此处查看 filter 指南。",
 	"Click here for help.": "点击这里获取帮助。",
 	"Click here for help.": "点击这里获取帮助。",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "限制模型的努力。仅适用于支持努力的特定提供商的模型。(默认值:中等)",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "限制模型的努力。仅适用于支持努力的特定提供商的模型。(默认值:中等)",
 	"Contact Admin for WebUI Access": "请联系管理员以获取访问权限",
 	"Contact Admin for WebUI Access": "请联系管理员以获取访问权限",
 	"Content": "内容",
 	"Content": "内容",
-	"Content Extraction": "内容提取",
+	"Content Extraction Engine": "",
 	"Context Length": "上下文长度",
 	"Context Length": "上下文长度",
 	"Continue Response": "继续生成",
 	"Continue Response": "继续生成",
 	"Continue with {{provider}}": "使用 {{provider}} 继续",
 	"Continue with {{provider}}": "使用 {{provider}} 继续",
@@ -246,6 +248,7 @@
 	"Current Model": "当前模型",
 	"Current Model": "当前模型",
 	"Current Password": "当前密码",
 	"Current Password": "当前密码",
 	"Custom": "自定义",
 	"Custom": "自定义",
+	"Danger Zone": "",
 	"Dark": "暗色",
 	"Dark": "暗色",
 	"Database": "数据库",
 	"Database": "数据库",
 	"December": "十二月",
 	"December": "十二月",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "ElevenLabs",
 	"ElevenLabs": "ElevenLabs",
 	"Email": "电子邮箱",
 	"Email": "电子邮箱",
 	"Embark on adventures": "踏上冒险之旅",
 	"Embark on adventures": "踏上冒险之旅",
+	"Embedding": "",
 	"Embedding Batch Size": "嵌入层批处理大小 (Embedding Batch Size)",
 	"Embedding Batch Size": "嵌入层批处理大小 (Embedding Batch Size)",
 	"Embedding Model": "语义向量模型",
 	"Embedding Model": "语义向量模型",
 	"Embedding Model Engine": "语义向量模型引擎",
 	"Embedding Model Engine": "语义向量模型引擎",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "启用聊天消息的输入框内容猜测补全",
 	"Enable autocomplete generation for chat messages": "启用聊天消息的输入框内容猜测补全",
 	"Enable Code Interpreter": "启用代码解释器",
 	"Enable Code Interpreter": "启用代码解释器",
 	"Enable Community Sharing": "启用分享至社区",
 	"Enable Community Sharing": "启用分享至社区",
-	"Enable Google Drive": "启用 Google 云端硬盘",
 	"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.": "启用内存锁定(mlock)以防止模型数据被交换出RAM。此选项将模型的工作集页面锁定在RAM中,确保它们不会被交换到磁盘。这可以通过避免页面错误和确保快速数据访问来帮助维持性能。",
 	"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.": "启用内存锁定(mlock)以防止模型数据被交换出RAM。此选项将模型的工作集页面锁定在RAM中,确保它们不会被交换到磁盘。这可以通过避免页面错误和确保快速数据访问来帮助维持性能。",
 	"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.": "启用内存映射(mmap)以加载模型数据。此选项允许系统通过将磁盘文件视为在RAM中来使用磁盘存储作为RAM的扩展。这可以通过更快的数据访问来提高模型性能。然而,它可能无法在所有系统上正常工作,并且可能会消耗大量磁盘空间。",
 	"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.": "启用内存映射(mmap)以加载模型数据。此选项允许系统通过将磁盘文件视为在RAM中来使用磁盘存储作为RAM的扩展。这可以通过更快的数据访问来提高模型性能。然而,它可能无法在所有系统上正常工作,并且可能会消耗大量磁盘空间。",
 	"Enable Message Rating": "启用回复评价",
 	"Enable Message Rating": "启用回复评价",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "启用 Mirostat 采样以控制困惑度。(默认值:0,0 = 禁用,1 = Mirostat,2 = Mirostat 2.0)",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "启用 Mirostat 采样以控制困惑度。(默认值:0,0 = 禁用,1 = Mirostat,2 = Mirostat 2.0)",
 	"Enable New Sign Ups": "允许新用户注册",
 	"Enable New Sign Ups": "允许新用户注册",
-	"Enable OneDrive": "启用 OneDrive",
-	"Enable Web Search": "启用联网搜索",
 	"Enabled": "启用",
 	"Enabled": "启用",
-	"Engine": "引擎",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "确保您的 CSV 文件按以下顺序包含 4 列: 姓名、电子邮箱、密码、角色。",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "确保您的 CSV 文件按以下顺序包含 4 列: 姓名、电子邮箱、密码、角色。",
 	"Enter {{role}} message here": "在此处输入 {{role}} 的对话内容",
 	"Enter {{role}} message here": "在此处输入 {{role}} 的对话内容",
 	"Enter a detail about yourself for your LLMs to recall": "输入一个关于你自己的详细信息,方便你的大语言模型记住这些内容",
 	"Enter a detail about yourself for your LLMs to recall": "输入一个关于你自己的详细信息,方便你的大语言模型记住这些内容",
@@ -572,6 +572,7 @@
 	"Input commands": "输入命令",
 	"Input commands": "输入命令",
 	"Install from Github URL": "从 Github URL 安装",
 	"Install from Github URL": "从 Github URL 安装",
 	"Instant Auto-Send After Voice Transcription": "语音转录文字后即时自动发送",
 	"Instant Auto-Send After Voice Transcription": "语音转录文字后即时自动发送",
+	"Integration": "",
 	"Interface": "界面",
 	"Interface": "界面",
 	"Invalid file format.": "无效文件格式。",
 	"Invalid file format.": "无效文件格式。",
 	"Invalid Tag": "无效标签",
 	"Invalid Tag": "无效标签",
@@ -619,6 +620,7 @@
 	"Listening...": "正在倾听...",
 	"Listening...": "正在倾听...",
 	"Llama.cpp": "Llama.cpp",
 	"Llama.cpp": "Llama.cpp",
 	"LLMs can make mistakes. Verify important information.": "大语言模型可能会生成误导性错误信息,请对关键信息加以验证。",
 	"LLMs can make mistakes. Verify important information.": "大语言模型可能会生成误导性错误信息,请对关键信息加以验证。",
+	"Loader": "",
 	"Loading Kokoro.js...": "载入 Kokoro.js...",
 	"Loading Kokoro.js...": "载入 Kokoro.js...",
 	"Local": "本地",
 	"Local": "本地",
 	"Local Models": "本地模型",
 	"Local Models": "本地模型",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "未找到 HTML、CSS 或 JavaScript 内容。",
 	"No HTML, CSS, or JavaScript content found.": "未找到 HTML、CSS 或 JavaScript 内容。",
 	"No inference engine with management support found": "未找到支持管理的推理引擎",
 	"No inference engine with management support found": "未找到支持管理的推理引擎",
 	"No knowledge found": "未找到知识",
 	"No knowledge found": "未找到知识",
+	"No memories to clear": "",
 	"No model IDs": "没有模型 ID",
 	"No model IDs": "没有模型 ID",
 	"No models found": "未找到任何模型",
 	"No models found": "未找到任何模型",
 	"No models selected": "未选择任何模型",
 	"No models selected": "未选择任何模型",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "提示词更新成功",
 	"Prompt updated successfully": "提示词更新成功",
 	"Prompts": "提示词",
 	"Prompts": "提示词",
 	"Prompts Access": "访问提示词",
 	"Prompts Access": "访问提示词",
-	"Proxy URL": "代理 URL",
 	"Pull \"{{searchValue}}\" from Ollama.com": "从 Ollama.com 拉取 \"{{searchValue}}\"",
 	"Pull \"{{searchValue}}\" from Ollama.com": "从 Ollama.com 拉取 \"{{searchValue}}\"",
 	"Pull a model from Ollama.com": "从 Ollama.com 拉取一个模型",
 	"Pull a model from Ollama.com": "从 Ollama.com 拉取一个模型",
 	"Query Generation Prompt": "查询生成提示词",
 	"Query Generation Prompt": "查询生成提示词",
-	"Query Params": "查询参数",
 	"RAG Template": "RAG 提示词模板",
 	"RAG Template": "RAG 提示词模板",
 	"Rating": "评价",
 	"Rating": "评价",
 	"Re-rank models by topic similarity": "根据主题相似性对模型重新排序",
 	"Re-rank models by topic similarity": "根据主题相似性对模型重新排序",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "无法激活回复时发送通知。请检查浏览器设置,并授予必要的访问权限。",
 	"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 splitting": "拆分回复",
 	"Result": "结果",
 	"Result": "结果",
+	"Retrieval": "",
 	"Retrieval Query Generation": "检索查询生成",
 	"Retrieval Query Generation": "检索查询生成",
 	"Rich Text Input for Chat": "对话富文本输入",
 	"Rich Text Input for Chat": "对话富文本输入",
 	"RK": "排名",
 	"RK": "排名",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "警告:Jupyter 执行允许任意代码执行,存在严重的安全风险——请极其谨慎地操作。",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "警告:Jupyter 执行允许任意代码执行,存在严重的安全风险——请极其谨慎地操作。",
 	"Web": "网页",
 	"Web": "网页",
 	"Web API": "网页 API",
 	"Web API": "网页 API",
-	"Web Loader Settings": "网页爬取设置",
 	"Web Search": "联网搜索",
 	"Web Search": "联网搜索",
 	"Web Search Engine": "联网搜索引擎",
 	"Web Search Engine": "联网搜索引擎",
 	"Web Search in Chat": "聊天中的网页搜索",
 	"Web Search in Chat": "聊天中的网页搜索",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "您的账号当前状态为待激活。",
 	"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 不会收取任何比例。但众筹平台可能会有服务费、抽成。",
 	"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": "YouTube",
-	"Youtube Loader Settings": "YouTube 爬取设置"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }

+ 12 - 10
src/lib/i18n/locales/zh-TW/translation.json

@@ -86,6 +86,7 @@
 	"Archive All Chats": "封存所有對話紀錄",
 	"Archive All Chats": "封存所有對話紀錄",
 	"Archived Chats": "封存的對話紀錄",
 	"Archived Chats": "封存的對話紀錄",
 	"archived-chat-export": "archived-chat-export",
 	"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 this channel?": "您確定要刪除此頻道嗎?",
 	"Are you sure you want to delete this channel?": "您確定要刪除此頻道嗎?",
 	"Are you sure you want to delete this message?": "您確定要刪除此訊息嗎?",
 	"Are you sure you want to delete this message?": "您確定要刪除此訊息嗎?",
 	"Are you sure you want to unarchive all archived chats?": "您確定要解除封存所有封存的對話記錄嗎?",
 	"Are you sure you want to unarchive all archived chats?": "您確定要解除封存所有封存的對話記錄嗎?",
@@ -128,6 +129,7 @@
 	"Bocha Search API Key": "Bocha 搜尋 API 金鑰",
 	"Bocha Search API Key": "Bocha 搜尋 API 金鑰",
 	"Brave Search API Key": "Brave 搜尋 API 金鑰",
 	"Brave Search API Key": "Brave 搜尋 API 金鑰",
 	"By {{name}}": "由 {{name}} 製作",
 	"By {{name}}": "由 {{name}} 製作",
+	"Bypass Embedding and Retrieval": "",
 	"Bypass SSL verification for Websites": "略過網站的 SSL 驗證",
 	"Bypass SSL verification for Websites": "略過網站的 SSL 驗證",
 	"Calendar": "日曆",
 	"Calendar": "日曆",
 	"Call": "通話",
 	"Call": "通話",
@@ -157,11 +159,11 @@
 	"Checking for updates...": "正在檢查更新...",
 	"Checking for updates...": "正在檢查更新...",
 	"Choose a model before saving...": "儲存前請選擇一個模型...",
 	"Choose a model before saving...": "儲存前請選擇一個模型...",
 	"Chunk Overlap": "區塊重疊",
 	"Chunk Overlap": "區塊重疊",
-	"Chunk Params": "區塊參數",
 	"Chunk Size": "區塊大小",
 	"Chunk Size": "區塊大小",
 	"Ciphers": "加密方式",
 	"Ciphers": "加密方式",
 	"Citation": "引用",
 	"Citation": "引用",
 	"Clear memory": "清除記憶",
 	"Clear memory": "清除記憶",
+	"Clear Memory": "",
 	"click here": "點選這裡",
 	"click here": "點選這裡",
 	"Click here for filter guides.": "點選這裡查看篩選器指南。",
 	"Click here for filter guides.": "點選這裡查看篩選器指南。",
 	"Click here for help.": "點選這裡取得協助。",
 	"Click here for help.": "點選這裡取得協助。",
@@ -209,7 +211,7 @@
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "限制用於推理模型的推理程度 。僅適用於特定供應商提供的、支援推理程度設定的推理模型。(預設:中等)",
 	"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "限制用於推理模型的推理程度 。僅適用於特定供應商提供的、支援推理程度設定的推理模型。(預設:中等)",
 	"Contact Admin for WebUI Access": "請聯絡管理員以取得 WebUI 存取權限",
 	"Contact Admin for WebUI Access": "請聯絡管理員以取得 WebUI 存取權限",
 	"Content": "內容",
 	"Content": "內容",
-	"Content Extraction": "內容擷取",
+	"Content Extraction Engine": "",
 	"Context Length": "上下文長度",
 	"Context Length": "上下文長度",
 	"Continue Response": "繼續回應",
 	"Continue Response": "繼續回應",
 	"Continue with {{provider}}": "使用 {{provider}} 繼續",
 	"Continue with {{provider}}": "使用 {{provider}} 繼續",
@@ -246,6 +248,7 @@
 	"Current Model": "目前模型",
 	"Current Model": "目前模型",
 	"Current Password": "目前密碼",
 	"Current Password": "目前密碼",
 	"Custom": "自訂",
 	"Custom": "自訂",
+	"Danger Zone": "",
 	"Dark": "深色",
 	"Dark": "深色",
 	"Database": "資料庫",
 	"Database": "資料庫",
 	"December": "12 月",
 	"December": "12 月",
@@ -343,6 +346,7 @@
 	"ElevenLabs": "ElevenLabs",
 	"ElevenLabs": "ElevenLabs",
 	"Email": "Email",
 	"Email": "Email",
 	"Embark on adventures": "展開探險之旅",
 	"Embark on adventures": "展開探險之旅",
+	"Embedding": "",
 	"Embedding Batch Size": "嵌入批次大小",
 	"Embedding Batch Size": "嵌入批次大小",
 	"Embedding Model": "嵌入模型",
 	"Embedding Model": "嵌入模型",
 	"Embedding Model Engine": "嵌入模型引擎",
 	"Embedding Model Engine": "嵌入模型引擎",
@@ -351,16 +355,12 @@
 	"Enable autocomplete generation for chat messages": "啟用聊天訊息的自動完成生成",
 	"Enable autocomplete generation for chat messages": "啟用聊天訊息的自動完成生成",
 	"Enable Code Interpreter": "啟用程式碼解釋器",
 	"Enable Code Interpreter": "啟用程式碼解釋器",
 	"Enable Community Sharing": "啟用社群分享",
 	"Enable Community Sharing": "啟用社群分享",
-	"Enable Google Drive": "啟用 Google Drive",
 	"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.": "啟用記憶體鎖定(mlock)以防止模型資料被換出 RAM。此選項會將模型的工作頁面集鎖定在 RAM 中,確保它們不會被換出到磁碟。這可以透過避免頁面錯誤和確保快速資料存取來維持效能。",
 	"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.": "啟用記憶體鎖定(mlock)以防止模型資料被換出 RAM。此選項會將模型的工作頁面集鎖定在 RAM 中,確保它們不會被換出到磁碟。這可以透過避免頁面錯誤和確保快速資料存取來維持效能。",
 	"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.": "啟用記憶體映射(mmap)以載入模型資料。此選項允許系統使用磁碟儲存作為 RAM 的延伸,透過將磁碟檔案視為在 RAM 中來處理。這可以透過允許更快的資料存取來改善模型效能。然而,它可能無法在所有系統上正常運作,並且可能會消耗大量磁碟空間。",
 	"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.": "啟用記憶體映射(mmap)以載入模型資料。此選項允許系統使用磁碟儲存作為 RAM 的延伸,透過將磁碟檔案視為在 RAM 中來處理。這可以透過允許更快的資料存取來改善模型效能。然而,它可能無法在所有系統上正常運作,並且可能會消耗大量磁碟空間。",
 	"Enable Message Rating": "啟用訊息評分",
 	"Enable Message Rating": "啟用訊息評分",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "啟用 Mirostat 採樣以控制困惑度。(預設:0,0 = 停用,1 = Mirostat,2 = Mirostat 2.0)",
 	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "啟用 Mirostat 採樣以控制困惑度。(預設:0,0 = 停用,1 = Mirostat,2 = Mirostat 2.0)",
 	"Enable New Sign Ups": "允許新使用者註冊",
 	"Enable New Sign Ups": "允許新使用者註冊",
-	"Enable OneDrive": "啟用 OneDrive",
-	"Enable Web Search": "啟用網頁搜尋",
 	"Enabled": "已啟用",
 	"Enabled": "已啟用",
-	"Engine": "引擎",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "請確認您的 CSV 檔案包含以下 4 個欄位,並按照此順序排列:姓名、電子郵件、密碼、角色。",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "請確認您的 CSV 檔案包含以下 4 個欄位,並按照此順序排列:姓名、電子郵件、密碼、角色。",
 	"Enter {{role}} message here": "在此輸入 {{role}} 訊息",
 	"Enter {{role}} message here": "在此輸入 {{role}} 訊息",
 	"Enter a detail about yourself for your LLMs to recall": "輸入有關您的詳細資訊,讓您的大型語言模型可以回想起來",
 	"Enter a detail about yourself for your LLMs to recall": "輸入有關您的詳細資訊,讓您的大型語言模型可以回想起來",
@@ -572,6 +572,7 @@
 	"Input commands": "輸入命令",
 	"Input commands": "輸入命令",
 	"Install from Github URL": "從 GitHub URL 安裝",
 	"Install from Github URL": "從 GitHub URL 安裝",
 	"Instant Auto-Send After Voice Transcription": "語音轉錄後立即自動傳送",
 	"Instant Auto-Send After Voice Transcription": "語音轉錄後立即自動傳送",
+	"Integration": "",
 	"Interface": "介面",
 	"Interface": "介面",
 	"Invalid file format.": "無效檔案格式。",
 	"Invalid file format.": "無效檔案格式。",
 	"Invalid Tag": "無效標籤",
 	"Invalid Tag": "無效標籤",
@@ -619,6 +620,7 @@
 	"Listening...": "正在聆聽...",
 	"Listening...": "正在聆聽...",
 	"Llama.cpp": "Llama.cpp",
 	"Llama.cpp": "Llama.cpp",
 	"LLMs can make mistakes. Verify important information.": "大型語言模型可能會出錯。請驗證重要資訊。",
 	"LLMs can make mistakes. Verify important information.": "大型語言模型可能會出錯。請驗證重要資訊。",
+	"Loader": "",
 	"Loading Kokoro.js...": "Kokoro.js 載入中……",
 	"Loading Kokoro.js...": "Kokoro.js 載入中……",
 	"Local": "本機",
 	"Local": "本機",
 	"Local Models": "本機模型",
 	"Local Models": "本機模型",
@@ -697,6 +699,7 @@
 	"No HTML, CSS, or JavaScript content found.": "找不到 HTML、CSS 或 JavaScript 內容。",
 	"No HTML, CSS, or JavaScript content found.": "找不到 HTML、CSS 或 JavaScript 內容。",
 	"No inference engine with management support found": "找不到支援管理功能的推理引擎",
 	"No inference engine with management support found": "找不到支援管理功能的推理引擎",
 	"No knowledge found": "找不到知識",
 	"No knowledge found": "找不到知識",
+	"No memories to clear": "",
 	"No model IDs": "沒有任何模型 ID",
 	"No model IDs": "沒有任何模型 ID",
 	"No models found": "找不到模型",
 	"No models found": "找不到模型",
 	"No models selected": "未選取模型",
 	"No models selected": "未選取模型",
@@ -797,11 +800,9 @@
 	"Prompt updated successfully": "提示詞更新成功",
 	"Prompt updated successfully": "提示詞更新成功",
 	"Prompts": "提示詞",
 	"Prompts": "提示詞",
 	"Prompts Access": "提示詞存取",
 	"Prompts Access": "提示詞存取",
-	"Proxy URL": "代理網址",
 	"Pull \"{{searchValue}}\" from Ollama.com": "從 Ollama.com 下載「{{searchValue}}」",
 	"Pull \"{{searchValue}}\" from Ollama.com": "從 Ollama.com 下載「{{searchValue}}」",
 	"Pull a model from Ollama.com": "從 Ollama.com 下載模型",
 	"Pull a model from Ollama.com": "從 Ollama.com 下載模型",
 	"Query Generation Prompt": "查詢生成提示詞",
 	"Query Generation Prompt": "查詢生成提示詞",
-	"Query Params": "查詢參數",
 	"RAG Template": "RAG 範本",
 	"RAG Template": "RAG 範本",
 	"Rating": "評分",
 	"Rating": "評分",
 	"Re-rank models by topic similarity": "根據主題相似度重新排序模型",
 	"Re-rank models by topic similarity": "根據主題相似度重新排序模型",
@@ -836,6 +837,7 @@
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "無法啟用回應通知,因為網站權限已遭拒。請前往瀏覽器設定以授予必要存取權限。",
 	"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 splitting": "回應分割",
 	"Result": "結果",
 	"Result": "結果",
+	"Retrieval": "",
 	"Retrieval Query Generation": "檢索查詢生成",
 	"Retrieval Query Generation": "檢索查詢生成",
 	"Rich Text Input for Chat": "使用富文本輸入對話",
 	"Rich Text Input for Chat": "使用富文本輸入對話",
 	"RK": "RK",
 	"RK": "RK",
@@ -1114,7 +1116,6 @@
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "警告:Jupyter 執行允許任意程式碼執行,構成嚴重安全風險——請務必極度謹慎。",
 	"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "警告:Jupyter 執行允許任意程式碼執行,構成嚴重安全風險——請務必極度謹慎。",
 	"Web": "網頁",
 	"Web": "網頁",
 	"Web API": "網頁 API",
 	"Web API": "網頁 API",
-	"Web Loader Settings": "網頁載入器設定",
 	"Web Search": "網頁搜尋",
 	"Web Search": "網頁搜尋",
 	"Web Search Engine": "網頁搜尋引擎",
 	"Web Search Engine": "網頁搜尋引擎",
 	"Web Search in Chat": "在對話中進行網路搜尋",
 	"Web Search in Chat": "在對話中進行網路搜尋",
@@ -1156,5 +1157,6 @@
 	"Your account status is currently pending activation.": "您的帳號目前正在等待啟用。",
 	"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 不會收取任何百分比。然而,所選擇的贊助平臺可能有其自身的費用。",
 	"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": "YouTube",
-	"Youtube Loader Settings": "YouTube 載入器設定"
+	"Youtube Language": "",
+	"Youtube Proxy URL": ""
 }
 }