瀏覽代碼

chore: format

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

+ 13 - 4
backend/open_webui/retrieval/utils.py

@@ -299,7 +299,10 @@ def query_collection_with_hybrid_search(
             log.exception(f"Failed to fetch collection {collection_name}: {e}")
             log.exception(f"Failed to fetch collection {collection_name}: {e}")
             collection_results[collection_name] = None
             collection_results[collection_name] = None
 
 
-    log.info(f"Starting hybrid search for {len(queries)} queries in {len(collection_names)} collections...")
+    log.info(
+        f"Starting hybrid search for {len(queries)} queries in {len(collection_names)} collections..."
+    )
+
     def process_query(collection_name, query):
     def process_query(collection_name, query):
         try:
         try:
             result = query_doc_with_hybrid_search(
             result = query_doc_with_hybrid_search(
@@ -317,7 +320,11 @@ def query_collection_with_hybrid_search(
             log.exception(f"Error when querying the collection with hybrid_search: {e}")
             log.exception(f"Error when querying the collection with hybrid_search: {e}")
             return None, e
             return None, e
 
 
-    tasks = [(collection_name, query) for collection_name in collection_names for query in queries]
+    tasks = [
+        (collection_name, query)
+        for collection_name in collection_names
+        for query in queries
+    ]
 
 
     with ThreadPoolExecutor() as executor:
     with ThreadPoolExecutor() as executor:
         future_results = [executor.submit(process_query, cn, q) for cn, q in tasks]
         future_results = [executor.submit(process_query, cn, q) for cn, q in tasks]
@@ -330,8 +337,10 @@ def query_collection_with_hybrid_search(
             results.append(result)
             results.append(result)
 
 
     if error and not results:
     if error and not results:
-        raise Exception("Hybrid search failed for all collections. Using Non-hybrid search as fallback.")
-        
+        raise Exception(
+            "Hybrid search failed for all collections. Using Non-hybrid search as fallback."
+        )
+
     return merge_and_sort_query_results(results, k=k)
     return merge_and_sort_query_results(results, k=k)
 
 
 
 

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "تفعيل عمليات التسجيل الجديدة",
 	"Enable New Sign Ups": "تفعيل عمليات التسجيل الجديدة",
 	"Enabled": "",
 	"Enabled": "",
+	"Enforce Temporary Chat": "",
 	"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": "ادخل معلومات عنك تريد أن يتذكرها الموديل",
@@ -569,6 +570,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "أخفاء",
 	"Hide": "أخفاء",
+	"Hide Model": "",
 	"Home": "",
 	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "كيف استطيع مساعدتك اليوم؟",
 	"How can I help you today?": "كيف استطيع مساعدتك اليوم؟",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "",
 	"Knowledge Access": "",
 	"Knowledge created successfully.": "",
 	"Knowledge created successfully.": "",
 	"Knowledge deleted successfully.": "",
 	"Knowledge deleted successfully.": "",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
 	"Knowledge updated successfully": "",
 	"Kokoro.js (Browser)": "",
 	"Kokoro.js (Browser)": "",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "لم يتم العثور على النموذج {{modelId}}.",
 	"Model {{modelId}} not found": "لم يتم العثور على النموذج {{modelId}}.",
 	"Model {{modelName}} is not vision capable": "نموذج {{modelName}} غير قادر على الرؤية",
 	"Model {{modelName}} is not vision capable": "نموذج {{modelName}} غير قادر على الرؤية",
 	"Model {{name}} is now {{status}}": "نموذج {{name}} هو الآن {{status}}",
 	"Model {{name}} is now {{status}}": "نموذج {{name}} هو الآن {{status}}",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "",
 	"Model accepts image inputs": "",
 	"Model created successfully!": "",
 	"Model created successfully!": "",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "تم اكتشاف مسار نظام الملفات النموذجي. الاسم المختصر للنموذج مطلوب للتحديث، ولا يمكن الاستمرار.",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "تم اكتشاف مسار نظام الملفات النموذجي. الاسم المختصر للنموذج مطلوب للتحديث، ولا يمكن الاستمرار.",
@@ -712,6 +717,7 @@
 	"Models": "الموديلات",
 	"Models": "الموديلات",
 	"Models Access": "",
 	"Models Access": "",
 	"Models configuration saved successfully": "",
 	"Models configuration saved successfully": "",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "",
 	"Mojeek Search API Key": "",
 	"more": "",
 	"more": "",
 	"More": "المزيد",
 	"More": "المزيد",
@@ -836,6 +842,7 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "مطالبات",
 	"Prompts": "مطالبات",
 	"Prompts Access": "",
 	"Prompts Access": "",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"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 سحب الموديل من ",
@@ -968,9 +975,11 @@
 	"Share": "كشاركة",
 	"Share": "كشاركة",
 	"Share Chat": "مشاركة الدردشة",
 	"Share Chat": "مشاركة الدردشة",
 	"Share to Open WebUI Community": "OpenWebUI شارك في مجتمع",
 	"Share to Open WebUI Community": "OpenWebUI شارك في مجتمع",
+	"Sharing Permissions": "",
 	"Show": "عرض",
 	"Show": "عرض",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "",
 	"Show Admin Details in Account Pending Overlay": "",
+	"Show Model": "",
 	"Show shortcuts": "إظهار الاختصارات",
 	"Show shortcuts": "إظهار الاختصارات",
 	"Show your support!": "",
 	"Show your support!": "",
 	"Showcased creativity": "أظهر الإبداع",
 	"Showcased creativity": "أظهر الإبداع",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "",
 	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
+	"Tools Public Sharing": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "Top P",
 	"Top P": "Top P",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "Включване на нови регистрации",
 	"Enable New Sign Ups": "Включване на нови регистрации",
 	"Enabled": "Активирано",
 	"Enabled": "Активирано",
+	"Enforce Temporary Chat": "",
 	"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",
@@ -569,6 +570,7 @@
 	"Hex Color": "Hex цвят",
 	"Hex Color": "Hex цвят",
 	"Hex Color - Leave empty for default color": "Hex цвят - Оставете празно за цвят по подразбиране",
 	"Hex Color - Leave empty for default color": "Hex цвят - Оставете празно за цвят по подразбиране",
 	"Hide": "Скрий",
 	"Hide": "Скрий",
+	"Hide Model": "",
 	"Home": "Начало",
 	"Home": "Начало",
 	"Host": "Хост",
 	"Host": "Хост",
 	"How can I help you today?": "Как мога да ви помогна днес?",
 	"How can I help you today?": "Как мога да ви помогна днес?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "Достъп до знания",
 	"Knowledge Access": "Достъп до знания",
 	"Knowledge created successfully.": "Знанието е създадено успешно.",
 	"Knowledge created successfully.": "Знанието е създадено успешно.",
 	"Knowledge deleted successfully.": "Знанието е изтрито успешно.",
 	"Knowledge deleted successfully.": "Знанието е изтрито успешно.",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "Знанието е нулирано успешно.",
 	"Knowledge reset successfully.": "Знанието е нулирано успешно.",
 	"Knowledge updated successfully": "Знанието е актуализирано успешно",
 	"Knowledge updated successfully": "Знанието е актуализирано успешно",
 	"Kokoro.js (Browser)": "Kokoro.js (Браузър)",
 	"Kokoro.js (Browser)": "Kokoro.js (Браузър)",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "Моделът {{modelId}} не е намерен",
 	"Model {{modelId}} not found": "Моделът {{modelId}} не е намерен",
 	"Model {{modelName}} is not vision capable": "Моделът {{modelName}} не поддържа визуални възможности",
 	"Model {{modelName}} is not vision capable": "Моделът {{modelName}} не поддържа визуални възможности",
 	"Model {{name}} is now {{status}}": "Моделът {{name}} сега е {{status}}",
 	"Model {{name}} is now {{status}}": "Моделът {{name}} сега е {{status}}",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "Моделът приема входни изображения",
 	"Model accepts image inputs": "Моделът приема входни изображения",
 	"Model created successfully!": "Моделът е създаден успешно!",
 	"Model created successfully!": "Моделът е създаден успешно!",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Открит е път до файловата система на модела. За актуализацията се изисква съкратено име на модела, не може да продължи.",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Открит е път до файловата система на модела. За актуализацията се изисква съкратено име на модела, не може да продължи.",
@@ -712,6 +717,7 @@
 	"Models": "Модели",
 	"Models": "Модели",
 	"Models Access": "Достъп до модели",
 	"Models Access": "Достъп до модели",
 	"Models configuration saved successfully": "Конфигурацията на моделите е запазена успешно",
 	"Models configuration saved successfully": "Конфигурацията на моделите е запазена успешно",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "API ключ за Mojeek Search",
 	"Mojeek Search API Key": "API ключ за Mojeek Search",
 	"more": "още",
 	"more": "още",
 	"More": "Повече",
 	"More": "Повече",
@@ -836,6 +842,7 @@
 	"Prompt updated successfully": "Промптът е актуализиран успешно",
 	"Prompt updated successfully": "Промптът е актуализиран успешно",
 	"Prompts": "Промптове",
 	"Prompts": "Промптове",
 	"Prompts Access": "Достъп до промптове",
 	"Prompts Access": "Достъп до промптове",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"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",
@@ -968,9 +975,11 @@
 	"Share": "Подели",
 	"Share": "Подели",
 	"Share Chat": "Подели Чат",
 	"Share Chat": "Подели Чат",
 	"Share to Open WebUI Community": "Споделете с OpenWebUI Общността",
 	"Share to Open WebUI Community": "Споделете с OpenWebUI Общността",
+	"Sharing Permissions": "",
 	"Show": "Покажи",
 	"Show": "Покажи",
 	"Show \"What's New\" modal on login": "Покажи модалния прозорец \"Какво е ново\" при вписване",
 	"Show \"What's New\" modal on login": "Покажи модалния прозорец \"Какво е ново\" при вписване",
 	"Show Admin Details in Account Pending Overlay": "Покажи детайлите на администратора в наслагването на изчакващ акаунт",
 	"Show Admin Details in Account Pending Overlay": "Покажи детайлите на администратора в наслагването на изчакващ акаунт",
+	"Show Model": "",
 	"Show shortcuts": "Покажи преки пътища",
 	"Show shortcuts": "Покажи преки пътища",
 	"Show your support!": "Покажете вашата подкрепа!",
 	"Show your support!": "Покажете вашата подкрепа!",
 	"Showcased creativity": "Показана креативност",
 	"Showcased creativity": "Показана креативност",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "Промпт за извикване на функции на инструментите",
 	"Tools Function Calling Prompt": "Промпт за извикване на функции на инструментите",
 	"Tools have a function calling system that allows arbitrary code execution": "Инструментите имат система за извикване на функции, която позволява произволно изпълнение на код",
 	"Tools have a function calling system that allows arbitrary code execution": "Инструментите имат система за извикване на функции, която позволява произволно изпълнение на код",
 	"Tools have a function calling system that allows arbitrary code execution.": "Инструментите имат система за извикване на функции, която позволява произволно изпълнение на код.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Инструментите имат система за извикване на функции, която позволява произволно изпълнение на код.",
+	"Tools Public Sharing": "",
 	"Top K": "Топ K",
 	"Top K": "Топ K",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "Топ P",
 	"Top P": "Топ P",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "নতুন সাইনআপ চালু করুন",
 	"Enable New Sign Ups": "নতুন সাইনআপ চালু করুন",
 	"Enabled": "",
 	"Enabled": "",
+	"Enforce Temporary Chat": "",
 	"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": "আপনার এলএলএমগুলি স্মরণ করার জন্য নিজের সম্পর্কে একটি বিশদ লিখুন",
@@ -569,6 +570,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "লুকান",
 	"Hide": "লুকান",
+	"Hide Model": "",
 	"Home": "",
 	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "আপনাকে আজ কিভাবে সাহায্য করতে পারি?",
 	"How can I help you today?": "আপনাকে আজ কিভাবে সাহায্য করতে পারি?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "",
 	"Knowledge Access": "",
 	"Knowledge created successfully.": "",
 	"Knowledge created successfully.": "",
 	"Knowledge deleted successfully.": "",
 	"Knowledge deleted successfully.": "",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
 	"Knowledge updated successfully": "",
 	"Kokoro.js (Browser)": "",
 	"Kokoro.js (Browser)": "",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "{{modelId}} মডেল পাওয়া যায়নি",
 	"Model {{modelId}} not found": "{{modelId}} মডেল পাওয়া যায়নি",
 	"Model {{modelName}} is not vision capable": "মডেল {{modelName}} দৃষ্টি সক্ষম নয়",
 	"Model {{modelName}} is not vision capable": "মডেল {{modelName}} দৃষ্টি সক্ষম নয়",
 	"Model {{name}} is now {{status}}": "মডেল {{name}} এখন {{status}}",
 	"Model {{name}} is now {{status}}": "মডেল {{name}} এখন {{status}}",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "",
 	"Model accepts image inputs": "",
 	"Model created successfully!": "",
 	"Model created successfully!": "",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "মডেল ফাইলসিস্টেম পাথ পাওয়া গেছে। আপডেটের জন্য মডেলের শর্টনেম আবশ্যক, এগিয়ে যাওয়া যাচ্ছে না।",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "মডেল ফাইলসিস্টেম পাথ পাওয়া গেছে। আপডেটের জন্য মডেলের শর্টনেম আবশ্যক, এগিয়ে যাওয়া যাচ্ছে না।",
@@ -712,6 +717,7 @@
 	"Models": "মডেলসমূহ",
 	"Models": "মডেলসমূহ",
 	"Models Access": "",
 	"Models Access": "",
 	"Models configuration saved successfully": "",
 	"Models configuration saved successfully": "",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "",
 	"Mojeek Search API Key": "",
 	"more": "",
 	"more": "",
 	"More": "আরো",
 	"More": "আরো",
@@ -836,6 +842,7 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "প্রম্পটসমূহ",
 	"Prompts": "প্রম্পটসমূহ",
 	"Prompts Access": "",
 	"Prompts Access": "",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"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 থেকে একটি টেনে আনুন আনুন",
@@ -968,9 +975,11 @@
 	"Share": "শেয়ার করুন",
 	"Share": "শেয়ার করুন",
 	"Share Chat": "চ্যাট শেয়ার করুন",
 	"Share Chat": "চ্যাট শেয়ার করুন",
 	"Share to Open WebUI Community": "OpenWebUI কমিউনিটিতে শেয়ার করুন",
 	"Share to Open WebUI Community": "OpenWebUI কমিউনিটিতে শেয়ার করুন",
+	"Sharing Permissions": "",
 	"Show": "দেখান",
 	"Show": "দেখান",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "",
 	"Show Admin Details in Account Pending Overlay": "",
+	"Show Model": "",
 	"Show shortcuts": "শর্টকাটগুলো দেখান",
 	"Show shortcuts": "শর্টকাটগুলো দেখান",
 	"Show your support!": "",
 	"Show your support!": "",
 	"Showcased creativity": "সৃজনশীলতা প্রদর্শন",
 	"Showcased creativity": "সৃজনশীলতা প্রদর্শন",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "",
 	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
+	"Tools Public Sharing": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "Top P",
 	"Top P": "Top P",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "Permetre el mostreig de Mirostat per controlar la perplexitat",
 	"Enable Mirostat sampling for controlling perplexity.": "Permetre el mostreig de Mirostat per controlar la perplexitat",
 	"Enable New Sign Ups": "Permetre nous registres",
 	"Enable New Sign Ups": "Permetre nous registres",
 	"Enabled": "Habilitat",
 	"Enabled": "Habilitat",
+	"Enforce Temporary Chat": "",
 	"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",
@@ -569,6 +570,7 @@
 	"Hex Color": "Color hexadecimal",
 	"Hex Color": "Color hexadecimal",
 	"Hex Color - Leave empty for default color": "Color hexadecimal - Deixar buit per a color per defecte",
 	"Hex Color - Leave empty for default color": "Color hexadecimal - Deixar buit per a color per defecte",
 	"Hide": "Amaga",
 	"Hide": "Amaga",
+	"Hide Model": "",
 	"Home": "Inici",
 	"Home": "Inici",
 	"Host": "Servidor",
 	"Host": "Servidor",
 	"How can I help you today?": "Com et puc ajudar avui?",
 	"How can I help you today?": "Com et puc ajudar avui?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "Accés al coneixement",
 	"Knowledge Access": "Accés al coneixement",
 	"Knowledge created successfully.": "Coneixement creat correctament.",
 	"Knowledge created successfully.": "Coneixement creat correctament.",
 	"Knowledge deleted successfully.": "Coneixement eliminat correctament.",
 	"Knowledge deleted successfully.": "Coneixement eliminat correctament.",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "Coneixement restablert correctament.",
 	"Knowledge reset successfully.": "Coneixement restablert correctament.",
 	"Knowledge updated successfully": "Coneixement actualitzat correctament.",
 	"Knowledge updated successfully": "Coneixement actualitzat correctament.",
 	"Kokoro.js (Browser)": "Kokoro.js (Navegador)",
 	"Kokoro.js (Browser)": "Kokoro.js (Navegador)",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "No s'ha trobat el model {{modelId}}",
 	"Model {{modelId}} not found": "No s'ha trobat el model {{modelId}}",
 	"Model {{modelName}} is not vision capable": "El model {{modelName}} no és capaç de visió",
 	"Model {{modelName}} is not vision capable": "El model {{modelName}} no és capaç de visió",
 	"Model {{name}} is now {{status}}": "El model {{name}} ara és {{status}}",
 	"Model {{name}} is now {{status}}": "El model {{name}} ara és {{status}}",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "El model accepta entrades d'imatge",
 	"Model accepts image inputs": "El model accepta entrades d'imatge",
 	"Model created successfully!": "Model creat correctament",
 	"Model created successfully!": "Model creat correctament",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "S'ha detectat el camí del sistema de fitxers del model. És necessari un nom curt del model per actualitzar, no es pot continuar.",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "S'ha detectat el camí del sistema de fitxers del model. És necessari un nom curt del model per actualitzar, no es pot continuar.",
@@ -712,6 +717,7 @@
 	"Models": "Models",
 	"Models": "Models",
 	"Models Access": "Accés als models",
 	"Models Access": "Accés als models",
 	"Models configuration saved successfully": "La configuració dels models s'ha desat correctament",
 	"Models configuration saved successfully": "La configuració dels models s'ha desat correctament",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "Clau API de Mojeek Search",
 	"Mojeek Search API Key": "Clau API de Mojeek Search",
 	"more": "més",
 	"more": "més",
 	"More": "Més",
 	"More": "Més",
@@ -836,6 +842,7 @@
 	"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",
+	"Prompts Public Sharing": "",
 	"Public": "Públic",
 	"Public": "Públic",
 	"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",
@@ -968,9 +975,11 @@
 	"Share": "Compartir",
 	"Share": "Compartir",
 	"Share Chat": "Compartir el xat",
 	"Share Chat": "Compartir el xat",
 	"Share to Open WebUI Community": "Compartir amb la comunitat OpenWebUI",
 	"Share to Open WebUI Community": "Compartir amb la comunitat OpenWebUI",
+	"Sharing Permissions": "",
 	"Show": "Mostrar",
 	"Show": "Mostrar",
 	"Show \"What's New\" modal on login": "Veure 'Què hi ha de nou' a l'entrada",
 	"Show \"What's New\" modal on login": "Veure 'Què hi ha de nou' a l'entrada",
 	"Show Admin Details in Account Pending Overlay": "Mostrar els detalls de l'administrador a la superposició del compte pendent",
 	"Show Admin Details in Account Pending Overlay": "Mostrar els detalls de l'administrador a la superposició del compte pendent",
+	"Show Model": "",
 	"Show shortcuts": "Mostrar dreceres",
 	"Show shortcuts": "Mostrar dreceres",
 	"Show your support!": "Mostra el teu suport!",
 	"Show your support!": "Mostra el teu suport!",
 	"Showcased creativity": "Creativitat mostrada",
 	"Showcased creativity": "Creativitat mostrada",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "Indicació per a la crida de funcions",
 	"Tools Function Calling Prompt": "Indicació per a la crida de funcions",
 	"Tools have a function calling system that allows arbitrary code execution": "Les eines disposen d'un sistema de crida a funcions que permet execució de codi arbitrari",
 	"Tools have a function calling system that allows arbitrary code execution": "Les eines disposen d'un sistema de crida a funcions que permet execució de codi arbitrari",
 	"Tools have a function calling system that allows arbitrary code execution.": "Les eines disposen d'un sistema de crida a funcions que permet execució de codi arbitrari.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Les eines disposen d'un sistema de crida a funcions que permet execució de codi arbitrari.",
+	"Tools Public Sharing": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top K Reranker": "Top K Reranker",
 	"Top K Reranker": "Top K Reranker",
 	"Top P": "Top P",
 	"Top P": "Top P",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "I-enable ang bag-ong mga rehistro",
 	"Enable New Sign Ups": "I-enable ang bag-ong mga rehistro",
 	"Enabled": "",
 	"Enabled": "",
+	"Enforce Temporary Chat": "",
 	"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": "",
@@ -569,6 +570,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "Tagoa",
 	"Hide": "Tagoa",
+	"Hide Model": "",
 	"Home": "",
 	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "Unsaon nako pagtabang kanimo karon?",
 	"How can I help you today?": "Unsaon nako pagtabang kanimo karon?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "",
 	"Knowledge Access": "",
 	"Knowledge created successfully.": "",
 	"Knowledge created successfully.": "",
 	"Knowledge deleted successfully.": "",
 	"Knowledge deleted successfully.": "",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
 	"Knowledge updated successfully": "",
 	"Kokoro.js (Browser)": "",
 	"Kokoro.js (Browser)": "",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "Modelo {{modelId}} wala makit-an",
 	"Model {{modelId}} not found": "Modelo {{modelId}} wala makit-an",
 	"Model {{modelName}} is not vision capable": "",
 	"Model {{modelName}} is not vision capable": "",
 	"Model {{name}} is now {{status}}": "",
 	"Model {{name}} is now {{status}}": "",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "",
 	"Model accepts image inputs": "",
 	"Model created successfully!": "",
 	"Model created successfully!": "",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "",
@@ -712,6 +717,7 @@
 	"Models": "Mga modelo",
 	"Models": "Mga modelo",
 	"Models Access": "",
 	"Models Access": "",
 	"Models configuration saved successfully": "",
 	"Models configuration saved successfully": "",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "",
 	"Mojeek Search API Key": "",
 	"more": "",
 	"more": "",
 	"More": "",
 	"More": "",
@@ -836,6 +842,7 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "Mga aghat",
 	"Prompts": "Mga aghat",
 	"Prompts Access": "",
 	"Prompts Access": "",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"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",
@@ -968,9 +975,11 @@
 	"Share": "",
 	"Share": "",
 	"Share Chat": "",
 	"Share Chat": "",
 	"Share to Open WebUI Community": "Ipakigbahin sa komunidad sa OpenWebUI",
 	"Share to Open WebUI Community": "Ipakigbahin sa komunidad sa OpenWebUI",
+	"Sharing Permissions": "",
 	"Show": "Pagpakita",
 	"Show": "Pagpakita",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "",
 	"Show Admin Details in Account Pending Overlay": "",
+	"Show Model": "",
 	"Show shortcuts": "Ipakita ang mga shortcut",
 	"Show shortcuts": "Ipakita ang mga shortcut",
 	"Show your support!": "",
 	"Show your support!": "",
 	"Showcased creativity": "",
 	"Showcased creativity": "",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "",
 	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
+	"Tools Public Sharing": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "Ibabaw nga P",
 	"Top P": "Ibabaw nga P",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "Povolit nové registrace",
 	"Enable New Sign Ups": "Povolit nové registrace",
 	"Enabled": "Povoleno",
 	"Enabled": "Povoleno",
+	"Enforce Temporary Chat": "",
 	"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.",
@@ -569,6 +570,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "Schovej",
 	"Hide": "Schovej",
+	"Hide Model": "",
 	"Home": "",
 	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "Jak vám mohu dnes pomoci?",
 	"How can I help you today?": "Jak vám mohu dnes pomoci?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "",
 	"Knowledge Access": "",
 	"Knowledge created successfully.": "Znalost úspěšně vytvořena.",
 	"Knowledge created successfully.": "Znalost úspěšně vytvořena.",
 	"Knowledge deleted successfully.": "Znalosti byly úspěšně odstraněny.",
 	"Knowledge deleted successfully.": "Znalosti byly úspěšně odstraněny.",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "Úspěšné obnovení znalostí.",
 	"Knowledge reset successfully.": "Úspěšné obnovení znalostí.",
 	"Knowledge updated successfully": "Znalosti úspěšně aktualizovány",
 	"Knowledge updated successfully": "Znalosti úspěšně aktualizovány",
 	"Kokoro.js (Browser)": "",
 	"Kokoro.js (Browser)": "",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "Model {{modelId}} nebyl nalezen",
 	"Model {{modelId}} not found": "Model {{modelId}} nebyl nalezen",
 	"Model {{modelName}} is not vision capable": "Model {{modelName}} není schopen zpracovávat vizuální data.",
 	"Model {{modelName}} is not vision capable": "Model {{modelName}} není schopen zpracovávat vizuální data.",
 	"Model {{name}} is now {{status}}": "Model {{name}} je nyní {{status}}.",
 	"Model {{name}} is now {{status}}": "Model {{name}} je nyní {{status}}.",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "Model přijímá vstupy ve formě obrázků",
 	"Model accepts image inputs": "Model přijímá vstupy ve formě obrázků",
 	"Model created successfully!": "Model byl úspěšně vytvořen!",
 	"Model created successfully!": "Model byl úspěšně vytvořen!",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Detekována cesta v\u00a0souborovém systému. Je vyžadován krátký název modelu pro aktualizaci, nelze pokračovat.",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Detekována cesta v\u00a0souborovém systému. Je vyžadován krátký název modelu pro aktualizaci, nelze pokračovat.",
@@ -712,6 +717,7 @@
 	"Models": "Modely",
 	"Models": "Modely",
 	"Models Access": "",
 	"Models Access": "",
 	"Models configuration saved successfully": "",
 	"Models configuration saved successfully": "",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "",
 	"Mojeek Search API Key": "",
 	"more": "více",
 	"more": "více",
 	"More": "Více",
 	"More": "Více",
@@ -836,6 +842,7 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "Prompty",
 	"Prompts": "Prompty",
 	"Prompts Access": "",
 	"Prompts Access": "",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"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",
@@ -968,9 +975,11 @@
 	"Share": "Sdílet",
 	"Share": "Sdílet",
 	"Share Chat": "Sdílet chat",
 	"Share Chat": "Sdílet chat",
 	"Share to Open WebUI Community": "Sdílet s komunitou OpenWebUI",
 	"Share to Open WebUI Community": "Sdílet s komunitou OpenWebUI",
+	"Sharing Permissions": "",
 	"Show": "Zobrazit",
 	"Show": "Zobrazit",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "Zobrazit podrobnosti administrátora v překryvném okně s čekajícím účtem",
 	"Show Admin Details in Account Pending Overlay": "Zobrazit podrobnosti administrátora v překryvném okně s čekajícím účtem",
+	"Show Model": "",
 	"Show shortcuts": "Zobrazit klávesové zkratky",
 	"Show shortcuts": "Zobrazit klávesové zkratky",
 	"Show your support!": "Vyjadřete svou podporu!",
 	"Show your support!": "Vyjadřete svou podporu!",
 	"Showcased creativity": "Předvedená kreativita",
 	"Showcased creativity": "Předvedená kreativita",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "",
 	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "Nástroje mají systém volání funkcí, který umožňuje libovolné spouštění kódu.",
 	"Tools have a function calling system that allows arbitrary code execution": "Nástroje mají systém volání funkcí, který umožňuje libovolné spouštění kódu.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Nástroje mají systém volání funkcí, který umožňuje spuštění libovolného kódu.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Nástroje mají systém volání funkcí, který umožňuje spuštění libovolného kódu.",
+	"Tools Public Sharing": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "Top P",
 	"Top P": "Top P",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "Aktiver nye signups",
 	"Enable New Sign Ups": "Aktiver nye signups",
 	"Enabled": "Aktiveret",
 	"Enabled": "Aktiveret",
+	"Enforce Temporary Chat": "",
 	"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",
@@ -569,6 +570,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "Skjul",
 	"Hide": "Skjul",
+	"Hide Model": "",
 	"Home": "",
 	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "Hvordan kan jeg hjælpe dig i dag?",
 	"How can I help you today?": "Hvordan kan jeg hjælpe dig i dag?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "",
 	"Knowledge Access": "",
 	"Knowledge created successfully.": "Viden oprettet.",
 	"Knowledge created successfully.": "Viden oprettet.",
 	"Knowledge deleted successfully.": "Viden slettet.",
 	"Knowledge deleted successfully.": "Viden slettet.",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "Viden nulstillet.",
 	"Knowledge reset successfully.": "Viden nulstillet.",
 	"Knowledge updated successfully": "Viden opdateret.",
 	"Knowledge updated successfully": "Viden opdateret.",
 	"Kokoro.js (Browser)": "",
 	"Kokoro.js (Browser)": "",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "Model {{modelId}} ikke fundet",
 	"Model {{modelId}} not found": "Model {{modelId}} ikke fundet",
 	"Model {{modelName}} is not vision capable": "Model {{modelName}} understøtter ikke billeder",
 	"Model {{modelName}} is not vision capable": "Model {{modelName}} understøtter ikke billeder",
 	"Model {{name}} is now {{status}}": "Model {{name}} er nu {{status}}",
 	"Model {{name}} is now {{status}}": "Model {{name}} er nu {{status}}",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "Model accepterer billedinput",
 	"Model accepts image inputs": "Model accepterer billedinput",
 	"Model created successfully!": "Model oprettet!",
 	"Model created successfully!": "Model oprettet!",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Model filsystemsti registreret. Modelkortnavn er påkrævet til opdatering, kan ikke fortsætte.",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Model filsystemsti registreret. Modelkortnavn er påkrævet til opdatering, kan ikke fortsætte.",
@@ -712,6 +717,7 @@
 	"Models": "Modeller",
 	"Models": "Modeller",
 	"Models Access": "",
 	"Models Access": "",
 	"Models configuration saved successfully": "",
 	"Models configuration saved successfully": "",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "",
 	"Mojeek Search API Key": "",
 	"more": "",
 	"more": "",
 	"More": "Mere",
 	"More": "Mere",
@@ -836,6 +842,7 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "Prompts",
 	"Prompts": "Prompts",
 	"Prompts Access": "",
 	"Prompts Access": "",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"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",
@@ -968,9 +975,11 @@
 	"Share": "Del",
 	"Share": "Del",
 	"Share Chat": "Del chat",
 	"Share Chat": "Del chat",
 	"Share to Open WebUI Community": "Del til OpenWebUI Community",
 	"Share to Open WebUI Community": "Del til OpenWebUI Community",
+	"Sharing Permissions": "",
 	"Show": "Vis",
 	"Show": "Vis",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "Vis administratordetaljer i overlay for ventende konto",
 	"Show Admin Details in Account Pending Overlay": "Vis administratordetaljer i overlay for ventende konto",
+	"Show Model": "",
 	"Show shortcuts": "Vis genveje",
 	"Show shortcuts": "Vis genveje",
 	"Show your support!": "Vis din støtte!",
 	"Show your support!": "Vis din støtte!",
 	"Showcased creativity": "Udstillet kreativitet",
 	"Showcased creativity": "Udstillet kreativitet",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "",
 	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "Værktøjer har et funktionkaldssystem, der tillader vilkårlig kodeudførelse",
 	"Tools have a function calling system that allows arbitrary code execution": "Værktøjer har et funktionkaldssystem, der tillader vilkårlig kodeudførelse",
 	"Tools have a function calling system that allows arbitrary code execution.": "Værktøjer har et funktionkaldssystem, der tillader vilkårlig kodeudførelse.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Værktøjer har et funktionkaldssystem, der tillader vilkårlig kodeudførelse.",
+	"Tools Public Sharing": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "Top P",
 	"Top P": "Top P",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "Registrierung erlauben",
 	"Enable New Sign Ups": "Registrierung erlauben",
 	"Enabled": "Aktiviert",
 	"Enabled": "Aktiviert",
+	"Enforce Temporary Chat": "",
 	"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",
@@ -569,6 +570,7 @@
 	"Hex Color": "Hex-Farbe",
 	"Hex Color": "Hex-Farbe",
 	"Hex Color - Leave empty for default color": "Hex-Farbe - Leer lassen für Standardfarbe",
 	"Hex Color - Leave empty for default color": "Hex-Farbe - Leer lassen für Standardfarbe",
 	"Hide": "Verbergen",
 	"Hide": "Verbergen",
+	"Hide Model": "",
 	"Home": "",
 	"Home": "",
 	"Host": "Host",
 	"Host": "Host",
 	"How can I help you today?": "Wie kann ich Ihnen heute helfen?",
 	"How can I help you today?": "Wie kann ich Ihnen heute helfen?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "Wissenszugriff",
 	"Knowledge Access": "Wissenszugriff",
 	"Knowledge created successfully.": "Wissen erfolgreich erstellt.",
 	"Knowledge created successfully.": "Wissen erfolgreich erstellt.",
 	"Knowledge deleted successfully.": "Wissen erfolgreich gelöscht.",
 	"Knowledge deleted successfully.": "Wissen erfolgreich gelöscht.",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "Wissen erfolgreich zurückgesetzt.",
 	"Knowledge reset successfully.": "Wissen erfolgreich zurückgesetzt.",
 	"Knowledge updated successfully": "Wissen erfolgreich aktualisiert",
 	"Knowledge updated successfully": "Wissen erfolgreich aktualisiert",
 	"Kokoro.js (Browser)": "",
 	"Kokoro.js (Browser)": "",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "Modell {{modelId}} nicht gefunden",
 	"Model {{modelId}} not found": "Modell {{modelId}} nicht gefunden",
 	"Model {{modelName}} is not vision capable": "Das Modell {{modelName}} ist nicht für die Bildverarbeitung geeignet",
 	"Model {{modelName}} is not vision capable": "Das Modell {{modelName}} ist nicht für die Bildverarbeitung geeignet",
 	"Model {{name}} is now {{status}}": "Modell {{name}} ist jetzt {{status}}",
 	"Model {{name}} is now {{status}}": "Modell {{name}} ist jetzt {{status}}",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "Modell akzeptiert Bildeingaben",
 	"Model accepts image inputs": "Modell akzeptiert Bildeingaben",
 	"Model created successfully!": "Modell erfolgreich erstellt!",
 	"Model created successfully!": "Modell erfolgreich erstellt!",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Modell-Dateisystempfad erkannt. Modellkurzname ist für das Update erforderlich, Fortsetzung nicht möglich.",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Modell-Dateisystempfad erkannt. Modellkurzname ist für das Update erforderlich, Fortsetzung nicht möglich.",
@@ -712,6 +717,7 @@
 	"Models": "Modelle",
 	"Models": "Modelle",
 	"Models Access": "Modell-Zugriff",
 	"Models Access": "Modell-Zugriff",
 	"Models configuration saved successfully": "Modellkonfiguration erfolgreich gespeichert",
 	"Models configuration saved successfully": "Modellkonfiguration erfolgreich gespeichert",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "Mojeek Search API-Schlüssel",
 	"Mojeek Search API Key": "Mojeek Search API-Schlüssel",
 	"more": "mehr",
 	"more": "mehr",
 	"More": "Mehr",
 	"More": "Mehr",
@@ -836,6 +842,7 @@
 	"Prompt updated successfully": "Prompt erfolgreich aktualisiert",
 	"Prompt updated successfully": "Prompt erfolgreich aktualisiert",
 	"Prompts": "Prompts",
 	"Prompts": "Prompts",
 	"Prompts Access": "Prompt-Zugriff",
 	"Prompts Access": "Prompt-Zugriff",
+	"Prompts Public Sharing": "",
 	"Public": "Öffentlich",
 	"Public": "Öffentlich",
 	"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",
@@ -968,9 +975,11 @@
 	"Share": "Teilen",
 	"Share": "Teilen",
 	"Share Chat": "Chat teilen",
 	"Share Chat": "Chat teilen",
 	"Share to Open WebUI Community": "Mit OpenWebUI Community teilen",
 	"Share to Open WebUI Community": "Mit OpenWebUI Community teilen",
+	"Sharing Permissions": "",
 	"Show": "Anzeigen",
 	"Show": "Anzeigen",
 	"Show \"What's New\" modal on login": "\"Was gibt's Neues\"-Modal beim Anmelden anzeigen",
 	"Show \"What's New\" modal on login": "\"Was gibt's Neues\"-Modal beim Anmelden anzeigen",
 	"Show Admin Details in Account Pending Overlay": "Admin-Details im Account-Pending-Overlay anzeigen",
 	"Show Admin Details in Account Pending Overlay": "Admin-Details im Account-Pending-Overlay anzeigen",
+	"Show Model": "",
 	"Show shortcuts": "Verknüpfungen anzeigen",
 	"Show shortcuts": "Verknüpfungen anzeigen",
 	"Show your support!": "Zeigen Sie Ihre Unterstützung!",
 	"Show your support!": "Zeigen Sie Ihre Unterstützung!",
 	"Showcased creativity": "Kreativität gezeigt",
 	"Showcased creativity": "Kreativität gezeigt",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "Prompt für Funktionssystemaufrufe",
 	"Tools Function Calling Prompt": "Prompt für Funktionssystemaufrufe",
 	"Tools have a function calling system that allows arbitrary code execution": "Werkezuge verfügen über ein Funktionssystem, das die Ausführung beliebigen Codes ermöglicht",
 	"Tools have a function calling system that allows arbitrary code execution": "Werkezuge verfügen über ein Funktionssystem, das die Ausführung beliebigen Codes ermöglicht",
 	"Tools have a function calling system that allows arbitrary code execution.": "Werkzeuge verfügen über ein Funktionssystem, das die Ausführung beliebigen Codes ermöglicht.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Werkzeuge verfügen über ein Funktionssystem, das die Ausführung beliebigen Codes ermöglicht.",
+	"Tools Public Sharing": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "Top P",
 	"Top P": "Top P",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "Enable New Bark Ups",
 	"Enable New Sign Ups": "Enable New Bark Ups",
 	"Enabled": "",
 	"Enabled": "",
+	"Enforce Temporary Chat": "",
 	"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": "",
@@ -569,6 +570,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "Hide",
 	"Hide": "Hide",
+	"Hide Model": "",
 	"Home": "",
 	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "How can I halp u today?",
 	"How can I help you today?": "How can I halp u today?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "",
 	"Knowledge Access": "",
 	"Knowledge created successfully.": "",
 	"Knowledge created successfully.": "",
 	"Knowledge deleted successfully.": "",
 	"Knowledge deleted successfully.": "",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
 	"Knowledge updated successfully": "",
 	"Kokoro.js (Browser)": "",
 	"Kokoro.js (Browser)": "",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "Model {{modelId}} not found",
 	"Model {{modelId}} not found": "Model {{modelId}} not found",
 	"Model {{modelName}} is not vision capable": "",
 	"Model {{modelName}} is not vision capable": "",
 	"Model {{name}} is now {{status}}": "",
 	"Model {{name}} is now {{status}}": "",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "",
 	"Model accepts image inputs": "",
 	"Model created successfully!": "",
 	"Model created successfully!": "",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Model filesystem bark detected. Model shortname is required for update, cannot continue.",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Model filesystem bark detected. Model shortname is required for update, cannot continue.",
@@ -712,6 +717,7 @@
 	"Models": "Wowdels",
 	"Models": "Wowdels",
 	"Models Access": "",
 	"Models Access": "",
 	"Models configuration saved successfully": "",
 	"Models configuration saved successfully": "",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "",
 	"Mojeek Search API Key": "",
 	"more": "",
 	"more": "",
 	"More": "",
 	"More": "",
@@ -836,6 +842,7 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "Promptos",
 	"Prompts": "Promptos",
 	"Prompts Access": "",
 	"Prompts Access": "",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"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",
@@ -968,9 +975,11 @@
 	"Share": "",
 	"Share": "",
 	"Share Chat": "",
 	"Share Chat": "",
 	"Share to Open WebUI Community": "Share to Open WebUI Community much community",
 	"Share to Open WebUI Community": "Share to Open WebUI Community much community",
+	"Sharing Permissions": "",
 	"Show": "Show much show",
 	"Show": "Show much show",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "",
 	"Show Admin Details in Account Pending Overlay": "",
+	"Show Model": "",
 	"Show shortcuts": "Show shortcuts much shortcut",
 	"Show shortcuts": "Show shortcuts much shortcut",
 	"Show your support!": "",
 	"Show your support!": "",
 	"Showcased creativity": "",
 	"Showcased creativity": "",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "",
 	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
+	"Tools Public Sharing": "",
 	"Top K": "Top K very top",
 	"Top K": "Top K very top",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "Top P very top",
 	"Top P": "Top P very top",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "Ενεργοποίηση Νέων Εγγραφών",
 	"Enable New Sign Ups": "Ενεργοποίηση Νέων Εγγραφών",
 	"Enabled": "Ενεργοποιημένο",
 	"Enabled": "Ενεργοποιημένο",
+	"Enforce Temporary Chat": "",
 	"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 να την ανακαλούν",
@@ -569,6 +570,7 @@
 	"Hex Color": "Χρώμα Hex",
 	"Hex Color": "Χρώμα Hex",
 	"Hex Color - Leave empty for default color": "Χρώμα Hex - Αφήστε κενό για προεπιλεγμένο χρώμα",
 	"Hex Color - Leave empty for default color": "Χρώμα Hex - Αφήστε κενό για προεπιλεγμένο χρώμα",
 	"Hide": "Απόκρυψη",
 	"Hide": "Απόκρυψη",
+	"Hide Model": "",
 	"Home": "",
 	"Home": "",
 	"Host": "Διακομιστής",
 	"Host": "Διακομιστής",
 	"How can I help you today?": "Πώς μπορώ να σας βοηθήσω σήμερα;",
 	"How can I help you today?": "Πώς μπορώ να σας βοηθήσω σήμερα;",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "Πρόσβαση στη Γνώση",
 	"Knowledge Access": "Πρόσβαση στη Γνώση",
 	"Knowledge created successfully.": "Η γνώση δημιουργήθηκε με επιτυχία.",
 	"Knowledge created successfully.": "Η γνώση δημιουργήθηκε με επιτυχία.",
 	"Knowledge deleted successfully.": "Η γνώση διαγράφηκε με επιτυχία.",
 	"Knowledge deleted successfully.": "Η γνώση διαγράφηκε με επιτυχία.",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "Η γνώση επαναφέρθηκε με επιτυχία.",
 	"Knowledge reset successfully.": "Η γνώση επαναφέρθηκε με επιτυχία.",
 	"Knowledge updated successfully": "Η γνώση ενημερώθηκε με επιτυχία",
 	"Knowledge updated successfully": "Η γνώση ενημερώθηκε με επιτυχία",
 	"Kokoro.js (Browser)": "",
 	"Kokoro.js (Browser)": "",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "Το μοντέλο {{modelId}} δεν βρέθηκε",
 	"Model {{modelId}} not found": "Το μοντέλο {{modelId}} δεν βρέθηκε",
 	"Model {{modelName}} is not vision capable": "Το μοντέλο {{modelName}} δεν έχει δυνατότητα όρασης",
 	"Model {{modelName}} is not vision capable": "Το μοντέλο {{modelName}} δεν έχει δυνατότητα όρασης",
 	"Model {{name}} is now {{status}}": "Το μοντέλο {{name}} είναι τώρα {{status}}",
 	"Model {{name}} is now {{status}}": "Το μοντέλο {{name}} είναι τώρα {{status}}",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "Το μοντέλο δέχεται είσοδο εικόνας",
 	"Model accepts image inputs": "Το μοντέλο δέχεται είσοδο εικόνας",
 	"Model created successfully!": "Το μοντέλο δημιουργήθηκε με επιτυχία!",
 	"Model created successfully!": "Το μοντέλο δημιουργήθηκε με επιτυχία!",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Ανιχνεύθηκε διαδρομή αρχείου μοντέλου. Το σύντομο όνομα μοντέλου απαιτείται για ενημέρωση, δεν μπορεί να συνεχιστεί.",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Ανιχνεύθηκε διαδρομή αρχείου μοντέλου. Το σύντομο όνομα μοντέλου απαιτείται για ενημέρωση, δεν μπορεί να συνεχιστεί.",
@@ -712,6 +717,7 @@
 	"Models": "Μοντέλα",
 	"Models": "Μοντέλα",
 	"Models Access": "Πρόσβαση Μοντέλων",
 	"Models Access": "Πρόσβαση Μοντέλων",
 	"Models configuration saved successfully": "Η διαμόρφωση των μοντέλων αποθηκεύτηκε με επιτυχία",
 	"Models configuration saved successfully": "Η διαμόρφωση των μοντέλων αποθηκεύτηκε με επιτυχία",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "Κλειδί API Mojeek Search",
 	"Mojeek Search API Key": "Κλειδί API Mojeek Search",
 	"more": "περισσότερα",
 	"more": "περισσότερα",
 	"More": "Περισσότερα",
 	"More": "Περισσότερα",
@@ -836,6 +842,7 @@
 	"Prompt updated successfully": "Η προτροπή ενημερώθηκε με επιτυχία",
 	"Prompt updated successfully": "Η προτροπή ενημερώθηκε με επιτυχία",
 	"Prompts": "Προτροπές",
 	"Prompts": "Προτροπές",
 	"Prompts Access": "Πρόσβαση Προτροπών",
 	"Prompts Access": "Πρόσβαση Προτροπών",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"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",
@@ -968,9 +975,11 @@
 	"Share": "Κοινή Χρήση",
 	"Share": "Κοινή Χρήση",
 	"Share Chat": "Κοινή Χρήση Συνομιλίας",
 	"Share Chat": "Κοινή Χρήση Συνομιλίας",
 	"Share to Open WebUI Community": "Κοινή Χρήση στην Κοινότητα OpenWebUI",
 	"Share to Open WebUI Community": "Κοινή Χρήση στην Κοινότητα OpenWebUI",
+	"Sharing Permissions": "",
 	"Show": "Εμφάνιση",
 	"Show": "Εμφάνιση",
 	"Show \"What's New\" modal on login": "Εμφάνιση του παράθυρου \"Τι νέο υπάρχει\" κατά την είσοδο",
 	"Show \"What's New\" modal on login": "Εμφάνιση του παράθυρου \"Τι νέο υπάρχει\" κατά την είσοδο",
 	"Show Admin Details in Account Pending Overlay": "Εμφάνιση Λεπτομερειών Διαχειριστή στο Υπέρθεση Εκκρεμής Λογαριασμού",
 	"Show Admin Details in Account Pending Overlay": "Εμφάνιση Λεπτομερειών Διαχειριστή στο Υπέρθεση Εκκρεμής Λογαριασμού",
+	"Show Model": "",
 	"Show shortcuts": "Εμφάνιση συντομεύσεων",
 	"Show shortcuts": "Εμφάνιση συντομεύσεων",
 	"Show your support!": "Δείξτε την υποστήριξή σας!",
 	"Show your support!": "Δείξτε την υποστήριξή σας!",
 	"Showcased creativity": "Εμφανιζόμενη δημιουργικότητα",
 	"Showcased creativity": "Εμφανιζόμενη δημιουργικότητα",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "",
 	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "Τα εργαλεία διαθέτουν ένα σύστημα κλήσης λειτουργιών που επιτρέπει την αυθαίρετη εκτέλεση κώδικα",
 	"Tools have a function calling system that allows arbitrary code execution": "Τα εργαλεία διαθέτουν ένα σύστημα κλήσης λειτουργιών που επιτρέπει την αυθαίρετη εκτέλεση κώδικα",
 	"Tools have a function calling system that allows arbitrary code execution.": "Τα εργαλεία διαθέτουν ένα σύστημα κλήσης λειτουργιών που επιτρέπει την αυθαίρετη εκτέλεση κώδικα.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Τα εργαλεία διαθέτουν ένα σύστημα κλήσης λειτουργιών που επιτρέπει την αυθαίρετη εκτέλεση κώδικα.",
+	"Tools Public Sharing": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "Top P",
 	"Top P": "Top P",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "",
 	"Enable New Sign Ups": "",
 	"Enabled": "",
 	"Enabled": "",
+	"Enforce Temporary Chat": "",
 	"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": "",
@@ -569,6 +570,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "",
 	"Hide": "",
+	"Hide Model": "",
 	"Home": "",
 	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "",
 	"How can I help you today?": "",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "",
 	"Knowledge Access": "",
 	"Knowledge created successfully.": "",
 	"Knowledge created successfully.": "",
 	"Knowledge deleted successfully.": "",
 	"Knowledge deleted successfully.": "",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
 	"Knowledge updated successfully": "",
 	"Kokoro.js (Browser)": "",
 	"Kokoro.js (Browser)": "",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "",
 	"Model {{modelId}} not found": "",
 	"Model {{modelName}} is not vision capable": "",
 	"Model {{modelName}} is not vision capable": "",
 	"Model {{name}} is now {{status}}": "",
 	"Model {{name}} is now {{status}}": "",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "",
 	"Model accepts image inputs": "",
 	"Model created successfully!": "",
 	"Model created successfully!": "",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "",
@@ -712,6 +717,7 @@
 	"Models": "",
 	"Models": "",
 	"Models Access": "",
 	"Models Access": "",
 	"Models configuration saved successfully": "",
 	"Models configuration saved successfully": "",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "",
 	"Mojeek Search API Key": "",
 	"more": "",
 	"more": "",
 	"More": "",
 	"More": "",
@@ -836,6 +842,7 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "",
 	"Prompts": "",
 	"Prompts Access": "",
 	"Prompts Access": "",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull a model from Ollama.com": "",
 	"Pull a model from Ollama.com": "",
@@ -968,9 +975,11 @@
 	"Share": "",
 	"Share": "",
 	"Share Chat": "",
 	"Share Chat": "",
 	"Share to Open WebUI Community": "",
 	"Share to Open WebUI Community": "",
+	"Sharing Permissions": "",
 	"Show": "",
 	"Show": "",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "",
 	"Show Admin Details in Account Pending Overlay": "",
+	"Show Model": "",
 	"Show shortcuts": "",
 	"Show shortcuts": "",
 	"Show your support!": "",
 	"Show your support!": "",
 	"Showcased creativity": "",
 	"Showcased creativity": "",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "",
 	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
+	"Tools Public Sharing": "",
 	"Top K": "",
 	"Top K": "",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "",
 	"Top P": "",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "",
 	"Enable New Sign Ups": "",
 	"Enabled": "",
 	"Enabled": "",
+	"Enforce Temporary Chat": "",
 	"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": "",
@@ -569,6 +570,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "",
 	"Hide": "",
+	"Hide Model": "",
 	"Home": "",
 	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "",
 	"How can I help you today?": "",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "",
 	"Knowledge Access": "",
 	"Knowledge created successfully.": "",
 	"Knowledge created successfully.": "",
 	"Knowledge deleted successfully.": "",
 	"Knowledge deleted successfully.": "",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
 	"Knowledge updated successfully": "",
 	"Kokoro.js (Browser)": "",
 	"Kokoro.js (Browser)": "",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "",
 	"Model {{modelId}} not found": "",
 	"Model {{modelName}} is not vision capable": "",
 	"Model {{modelName}} is not vision capable": "",
 	"Model {{name}} is now {{status}}": "",
 	"Model {{name}} is now {{status}}": "",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "",
 	"Model accepts image inputs": "",
 	"Model created successfully!": "",
 	"Model created successfully!": "",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "",
@@ -712,6 +717,7 @@
 	"Models": "",
 	"Models": "",
 	"Models Access": "",
 	"Models Access": "",
 	"Models configuration saved successfully": "",
 	"Models configuration saved successfully": "",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "",
 	"Mojeek Search API Key": "",
 	"more": "",
 	"more": "",
 	"More": "",
 	"More": "",
@@ -836,6 +842,7 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "",
 	"Prompts": "",
 	"Prompts Access": "",
 	"Prompts Access": "",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull a model from Ollama.com": "",
 	"Pull a model from Ollama.com": "",
@@ -968,9 +975,11 @@
 	"Share": "",
 	"Share": "",
 	"Share Chat": "",
 	"Share Chat": "",
 	"Share to Open WebUI Community": "",
 	"Share to Open WebUI Community": "",
+	"Sharing Permissions": "",
 	"Show": "",
 	"Show": "",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "",
 	"Show Admin Details in Account Pending Overlay": "",
+	"Show Model": "",
 	"Show shortcuts": "",
 	"Show shortcuts": "",
 	"Show your support!": "",
 	"Show your support!": "",
 	"Showcased creativity": "",
 	"Showcased creativity": "",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "",
 	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
+	"Tools Public Sharing": "",
 	"Top K": "",
 	"Top K": "",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "",
 	"Top P": "",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "Habilitar muestreo Mirostat para controlar la perplejidad.",
 	"Enable Mirostat sampling for controlling perplexity.": "Habilitar muestreo Mirostat para controlar la perplejidad.",
 	"Enable New Sign Ups": "Habilitar Registros de Nuevos Usuarios",
 	"Enable New Sign Ups": "Habilitar Registros de Nuevos Usuarios",
 	"Enabled": "Habilitado",
 	"Enabled": "Habilitado",
+	"Enforce Temporary Chat": "",
 	"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": "Ingresar mensaje {{role}} aquí",
 	"Enter {{role}} message here": "Ingresar mensaje {{role}} aquí",
 	"Enter a detail about yourself for your LLMs to recall": "Ingresar detalles sobre ti para que los recuerden sus LLMs",
 	"Enter a detail about yourself for your LLMs to recall": "Ingresar detalles sobre ti para que los recuerden sus LLMs",
@@ -569,6 +570,7 @@
 	"Hex Color": "Color Hex",
 	"Hex Color": "Color Hex",
 	"Hex Color - Leave empty for default color": "Color Hex - Deja vacío para el color predeterminado",
 	"Hex Color - Leave empty for default color": "Color Hex - Deja vacío para el color predeterminado",
 	"Hide": "Esconder",
 	"Hide": "Esconder",
+	"Hide Model": "",
 	"Home": "Inicio",
 	"Home": "Inicio",
 	"Host": "Host",
 	"Host": "Host",
 	"How can I help you today?": "¿Cómo puedo ayudarte hoy?",
 	"How can I help you today?": "¿Cómo puedo ayudarte hoy?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "Acceso a Conocimiento",
 	"Knowledge Access": "Acceso a Conocimiento",
 	"Knowledge created successfully.": "Conocimiento creado correctamente.",
 	"Knowledge created successfully.": "Conocimiento creado correctamente.",
 	"Knowledge deleted successfully.": "Conocimiento eliminado correctamente.",
 	"Knowledge deleted successfully.": "Conocimiento eliminado correctamente.",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "Conocimiento restablecido correctamente.",
 	"Knowledge reset successfully.": "Conocimiento restablecido correctamente.",
 	"Knowledge updated successfully": "Conocimiento actualizado correctamente.",
 	"Knowledge updated successfully": "Conocimiento actualizado correctamente.",
 	"Kokoro.js (Browser)": "Kokoro.js (Navegador)",
 	"Kokoro.js (Browser)": "Kokoro.js (Navegador)",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "Modelo {{modelId}} no encontrado",
 	"Model {{modelId}} not found": "Modelo {{modelId}} no encontrado",
 	"Model {{modelName}} is not vision capable": "Modelo {{modelName}} no esta capacitado para visión",
 	"Model {{modelName}} is not vision capable": "Modelo {{modelName}} no esta capacitado para visión",
 	"Model {{name}} is now {{status}}": "Modelo {{name}} está ahora {{status}}",
 	"Model {{name}} is now {{status}}": "Modelo {{name}} está ahora {{status}}",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "Modelo acepta entradas de imágen",
 	"Model accepts image inputs": "Modelo acepta entradas de imágen",
 	"Model created successfully!": "¡Modelo creado correctamente!",
 	"Model created successfully!": "¡Modelo creado correctamente!",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Detectada ruta del sistema al modelo. Para actualizar se requiere el nombre corto del modelo, no se puede continuar.",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Detectada ruta del sistema al modelo. Para actualizar se requiere el nombre corto del modelo, no se puede continuar.",
@@ -712,6 +717,7 @@
 	"Models": "Modelos",
 	"Models": "Modelos",
 	"Models Access": "Acceso Modelos",
 	"Models Access": "Acceso Modelos",
 	"Models configuration saved successfully": "Configuración de Modelos guardada correctamente",
 	"Models configuration saved successfully": "Configuración de Modelos guardada correctamente",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "Clave API de Mojeek Search",
 	"Mojeek Search API Key": "Clave API de Mojeek Search",
 	"more": "más",
 	"more": "más",
 	"More": "Más",
 	"More": "Más",
@@ -836,6 +842,7 @@
 	"Prompt updated successfully": "Indicador(prompt) actualizado correctamente",
 	"Prompt updated successfully": "Indicador(prompt) actualizado correctamente",
 	"Prompts": "Indicadores(prompts)",
 	"Prompts": "Indicadores(prompts)",
 	"Prompts Access": "Acceso a Indicadores(prompts)",
 	"Prompts Access": "Acceso a Indicadores(prompts)",
+	"Prompts Public Sharing": "",
 	"Public": "Público",
 	"Public": "Público",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Extraer \"{{searchValue}}\" desde Ollama.com",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Extraer \"{{searchValue}}\" desde Ollama.com",
 	"Pull a model from Ollama.com": "Extraer un modelo desde Ollama.com",
 	"Pull a model from Ollama.com": "Extraer un modelo desde Ollama.com",
@@ -968,9 +975,11 @@
 	"Share": "Compartir",
 	"Share": "Compartir",
 	"Share Chat": "Compartir Chat",
 	"Share Chat": "Compartir Chat",
 	"Share to Open WebUI Community": "Compartir con la Comunidad Open-WebUI",
 	"Share to Open WebUI Community": "Compartir con la Comunidad Open-WebUI",
+	"Sharing Permissions": "",
 	"Show": "Mostrar",
 	"Show": "Mostrar",
 	"Show \"What's New\" modal on login": "Mostrar modal \"Qué hay de Nuevo\" al iniciar sesión",
 	"Show \"What's New\" modal on login": "Mostrar modal \"Qué hay de Nuevo\" al iniciar sesión",
 	"Show Admin Details in Account Pending Overlay": "Mostrar Detalles Admin en la Sobrecapa Cuenta Pendiente",
 	"Show Admin Details in Account Pending Overlay": "Mostrar Detalles Admin en la Sobrecapa Cuenta Pendiente",
+	"Show Model": "",
 	"Show shortcuts": "Mostrar Atajos",
 	"Show shortcuts": "Mostrar Atajos",
 	"Show your support!": "¡Muestra tu apoyo!",
 	"Show your support!": "¡Muestra tu apoyo!",
 	"Showcased creativity": "Creatividad exhibida",
 	"Showcased creativity": "Creatividad exhibida",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "Indicador(prompt) para la Función de Llamada a las Herramientas",
 	"Tools Function Calling Prompt": "Indicador(prompt) para la Función de Llamada a las Herramientas",
 	"Tools have a function calling system that allows arbitrary code execution": "Las herramientas tienen un sistema de llamadas de funciones que permite la ejecución de código arbitrario",
 	"Tools have a function calling system that allows arbitrary code execution": "Las herramientas tienen un sistema de llamadas de funciones que permite la ejecución de código arbitrario",
 	"Tools have a function calling system that allows arbitrary code execution.": "Las herramientas tienen un sistema de llamada de funciones que permite la ejecución de código arbitrario.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Las herramientas tienen un sistema de llamada de funciones que permite la ejecución de código arbitrario.",
+	"Tools Public Sharing": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top K Reranker": "Top K Reclasificador",
 	"Top K Reranker": "Top K Reclasificador",
 	"Top P": "Top P",
 	"Top P": "Top P",

+ 10 - 0
src/lib/i18n/locales/et-EE/translation.json

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "Luba Mirostat'i valim perplekssuse juhtimiseks.",
 	"Enable Mirostat sampling for controlling perplexity.": "Luba Mirostat'i valim perplekssuse juhtimiseks.",
 	"Enable New Sign Ups": "Luba uued registreerimised",
 	"Enable New Sign Ups": "Luba uued registreerimised",
 	"Enabled": "Lubatud",
 	"Enabled": "Lubatud",
+	"Enforce Temporary Chat": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Veenduge, et teie CSV-fail sisaldab 4 veergu selles järjekorras: Nimi, E-post, Parool, Roll.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Veenduge, et teie CSV-fail sisaldab 4 veergu selles järjekorras: Nimi, E-post, Parool, Roll.",
 	"Enter {{role}} message here": "Sisestage {{role}} sõnum siia",
 	"Enter {{role}} message here": "Sisestage {{role}} sõnum siia",
 	"Enter a detail about yourself for your LLMs to recall": "Sisestage detail enda kohta, mida teie LLM-id saavad meenutada",
 	"Enter a detail about yourself for your LLMs to recall": "Sisestage detail enda kohta, mida teie LLM-id saavad meenutada",
@@ -569,6 +570,7 @@
 	"Hex Color": "Hex värv",
 	"Hex Color": "Hex värv",
 	"Hex Color - Leave empty for default color": "Hex värv - jätke tühjaks vaikevärvi jaoks",
 	"Hex Color - Leave empty for default color": "Hex värv - jätke tühjaks vaikevärvi jaoks",
 	"Hide": "Peida",
 	"Hide": "Peida",
+	"Hide Model": "",
 	"Home": "Avaleht",
 	"Home": "Avaleht",
 	"Host": "Host",
 	"Host": "Host",
 	"How can I help you today?": "Kuidas saan teid täna aidata?",
 	"How can I help you today?": "Kuidas saan teid täna aidata?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "Teadmiste juurdepääs",
 	"Knowledge Access": "Teadmiste juurdepääs",
 	"Knowledge created successfully.": "Teadmised edukalt loodud.",
 	"Knowledge created successfully.": "Teadmised edukalt loodud.",
 	"Knowledge deleted successfully.": "Teadmised edukalt kustutatud.",
 	"Knowledge deleted successfully.": "Teadmised edukalt kustutatud.",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "Teadmised edukalt lähtestatud.",
 	"Knowledge reset successfully.": "Teadmised edukalt lähtestatud.",
 	"Knowledge updated successfully": "Teadmised edukalt uuendatud",
 	"Knowledge updated successfully": "Teadmised edukalt uuendatud",
 	"Kokoro.js (Browser)": "Kokoro.js (brauser)",
 	"Kokoro.js (Browser)": "Kokoro.js (brauser)",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "Mudelit {{modelId}} ei leitud",
 	"Model {{modelId}} not found": "Mudelit {{modelId}} ei leitud",
 	"Model {{modelName}} is not vision capable": "Mudel {{modelName}} ei ole võimeline visuaalseid sisendeid töötlema",
 	"Model {{modelName}} is not vision capable": "Mudel {{modelName}} ei ole võimeline visuaalseid sisendeid töötlema",
 	"Model {{name}} is now {{status}}": "Mudel {{name}} on nüüd {{status}}",
 	"Model {{name}} is now {{status}}": "Mudel {{name}} on nüüd {{status}}",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "Mudel võtab vastu pilte sisendina",
 	"Model accepts image inputs": "Mudel võtab vastu pilte sisendina",
 	"Model created successfully!": "Mudel edukalt loodud!",
 	"Model created successfully!": "Mudel edukalt loodud!",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Tuvastati mudeli failisüsteemi tee. Uuendamiseks on vajalik mudeli lühinimi, ei saa jätkata.",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Tuvastati mudeli failisüsteemi tee. Uuendamiseks on vajalik mudeli lühinimi, ei saa jätkata.",
@@ -712,6 +717,7 @@
 	"Models": "Mudelid",
 	"Models": "Mudelid",
 	"Models Access": "Mudelite juurdepääs",
 	"Models Access": "Mudelite juurdepääs",
 	"Models configuration saved successfully": "Mudelite seadistus edukalt salvestatud",
 	"Models configuration saved successfully": "Mudelite seadistus edukalt salvestatud",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "Mojeek Search API võti",
 	"Mojeek Search API Key": "Mojeek Search API võti",
 	"more": "rohkem",
 	"more": "rohkem",
 	"More": "Rohkem",
 	"More": "Rohkem",
@@ -836,6 +842,7 @@
 	"Prompt updated successfully": "Vihje edukalt uuendatud",
 	"Prompt updated successfully": "Vihje edukalt uuendatud",
 	"Prompts": "Vihjed",
 	"Prompts": "Vihjed",
 	"Prompts Access": "Vihjete juurdepääs",
 	"Prompts Access": "Vihjete juurdepääs",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Tõmba \"{{searchValue}}\" Ollama.com-ist",
 	"Pull \"{{searchValue}}\" from Ollama.com": "Tõmba \"{{searchValue}}\" Ollama.com-ist",
 	"Pull a model from Ollama.com": "Tõmba mudel Ollama.com-ist",
 	"Pull a model from Ollama.com": "Tõmba mudel Ollama.com-ist",
@@ -968,9 +975,11 @@
 	"Share": "Jaga",
 	"Share": "Jaga",
 	"Share Chat": "Jaga vestlust",
 	"Share Chat": "Jaga vestlust",
 	"Share to Open WebUI Community": "Jaga Open WebUI kogukonnaga",
 	"Share to Open WebUI Community": "Jaga Open WebUI kogukonnaga",
+	"Sharing Permissions": "",
 	"Show": "Näita",
 	"Show": "Näita",
 	"Show \"What's New\" modal on login": "Näita \"Mis on uut\" modaalakent sisselogimisel",
 	"Show \"What's New\" modal on login": "Näita \"Mis on uut\" modaalakent sisselogimisel",
 	"Show Admin Details in Account Pending Overlay": "Näita administraatori üksikasju konto ootel kattekihil",
 	"Show Admin Details in Account Pending Overlay": "Näita administraatori üksikasju konto ootel kattekihil",
+	"Show Model": "",
 	"Show shortcuts": "Näita otseteid",
 	"Show shortcuts": "Näita otseteid",
 	"Show your support!": "Näita oma toetust!",
 	"Show your support!": "Näita oma toetust!",
 	"Showcased creativity": "Näitas loovust",
 	"Showcased creativity": "Näitas loovust",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "Tööriistade funktsioonide kutsumise vihje",
 	"Tools Function Calling Prompt": "Tööriistade funktsioonide kutsumise vihje",
 	"Tools have a function calling system that allows arbitrary code execution": "Tööriistadel on funktsioonide kutsumise süsteem, mis võimaldab suvalise koodi täitmist",
 	"Tools have a function calling system that allows arbitrary code execution": "Tööriistadel on funktsioonide kutsumise süsteem, mis võimaldab suvalise koodi täitmist",
 	"Tools have a function calling system that allows arbitrary code execution.": "Tööriistadel on funktsioonide kutsumise süsteem, mis võimaldab suvalise koodi täitmist.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Tööriistadel on funktsioonide kutsumise süsteem, mis võimaldab suvalise koodi täitmist.",
+	"Tools Public Sharing": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "Top P",
 	"Top P": "Top P",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "Gaitu Izena Emate Berriak",
 	"Enable New Sign Ups": "Gaitu Izena Emate Berriak",
 	"Enabled": "Gaituta",
 	"Enabled": "Gaituta",
+	"Enforce Temporary Chat": "",
 	"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",
@@ -569,6 +570,7 @@
 	"Hex Color": "Hex Kolorea",
 	"Hex Color": "Hex Kolorea",
 	"Hex Color - Leave empty for default color": "Hex Kolorea - Utzi hutsik kolore lehenetsia erabiltzeko",
 	"Hex Color - Leave empty for default color": "Hex Kolorea - Utzi hutsik kolore lehenetsia erabiltzeko",
 	"Hide": "Ezkutatu",
 	"Hide": "Ezkutatu",
+	"Hide Model": "",
 	"Home": "",
 	"Home": "",
 	"Host": "Ostalaria",
 	"Host": "Ostalaria",
 	"How can I help you today?": "Zertan lagun zaitzaket gaur?",
 	"How can I help you today?": "Zertan lagun zaitzaket gaur?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "Ezagutzarako Sarbidea",
 	"Knowledge Access": "Ezagutzarako Sarbidea",
 	"Knowledge created successfully.": "Ezagutza ongi sortu da.",
 	"Knowledge created successfully.": "Ezagutza ongi sortu da.",
 	"Knowledge deleted successfully.": "Ezagutza ongi ezabatu da.",
 	"Knowledge deleted successfully.": "Ezagutza ongi ezabatu da.",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "Ezagutza ongi berrezarri da.",
 	"Knowledge reset successfully.": "Ezagutza ongi berrezarri da.",
 	"Knowledge updated successfully": "Ezagutza ongi eguneratu da.",
 	"Knowledge updated successfully": "Ezagutza ongi eguneratu da.",
 	"Kokoro.js (Browser)": "",
 	"Kokoro.js (Browser)": "",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "{{modelId}} modeloa ez da aurkitu",
 	"Model {{modelId}} not found": "{{modelId}} modeloa ez da aurkitu",
 	"Model {{modelName}} is not vision capable": "{{modelName}} modeloak ez du ikusmen gaitasunik",
 	"Model {{modelName}} is not vision capable": "{{modelName}} modeloak ez du ikusmen gaitasunik",
 	"Model {{name}} is now {{status}}": "{{name}} modeloa orain {{status}} dago",
 	"Model {{name}} is now {{status}}": "{{name}} modeloa orain {{status}} dago",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "Modeloak irudi sarrerak onartzen ditu",
 	"Model accepts image inputs": "Modeloak irudi sarrerak onartzen ditu",
 	"Model created successfully!": "Modeloa ongi sortu da!",
 	"Model created successfully!": "Modeloa ongi sortu da!",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Modeloaren fitxategi sistemaren bidea detektatu da. Modeloaren izen laburra behar da eguneratzeko, ezin da jarraitu.",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Modeloaren fitxategi sistemaren bidea detektatu da. Modeloaren izen laburra behar da eguneratzeko, ezin da jarraitu.",
@@ -712,6 +717,7 @@
 	"Models": "Modeloak",
 	"Models": "Modeloak",
 	"Models Access": "Modeloen sarbidea",
 	"Models Access": "Modeloen sarbidea",
 	"Models configuration saved successfully": "Modeloen konfigurazioa ongi gorde da",
 	"Models configuration saved successfully": "Modeloen konfigurazioa ongi gorde da",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "Mojeek bilaketa API gakoa",
 	"Mojeek Search API Key": "Mojeek bilaketa API gakoa",
 	"more": "gehiago",
 	"more": "gehiago",
 	"More": "Gehiago",
 	"More": "Gehiago",
@@ -836,6 +842,7 @@
 	"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",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"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",
@@ -968,9 +975,11 @@
 	"Share": "Partekatu",
 	"Share": "Partekatu",
 	"Share Chat": "Partekatu txata",
 	"Share Chat": "Partekatu txata",
 	"Share to Open WebUI Community": "Partekatu OpenWebUI komunitatearekin",
 	"Share to Open WebUI Community": "Partekatu OpenWebUI komunitatearekin",
+	"Sharing Permissions": "",
 	"Show": "Erakutsi",
 	"Show": "Erakutsi",
 	"Show \"What's New\" modal on login": "Erakutsi \"Berritasunak\" modala saioa hastean",
 	"Show \"What's New\" modal on login": "Erakutsi \"Berritasunak\" modala saioa hastean",
 	"Show Admin Details in Account Pending Overlay": "Erakutsi administratzaile xehetasunak kontu zain geruzan",
 	"Show Admin Details in Account Pending Overlay": "Erakutsi administratzaile xehetasunak kontu zain geruzan",
+	"Show Model": "",
 	"Show shortcuts": "Erakutsi lasterbideak",
 	"Show shortcuts": "Erakutsi lasterbideak",
 	"Show your support!": "Erakutsi zure babesa!",
 	"Show your support!": "Erakutsi zure babesa!",
 	"Showcased creativity": "Erakutsitako sormena",
 	"Showcased creativity": "Erakutsitako sormena",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "",
 	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "Tresnek kode arbitrarioa exekutatzeko aukera ematen duen funtzio deitzeko sistema dute",
 	"Tools have a function calling system that allows arbitrary code execution": "Tresnek kode arbitrarioa exekutatzeko aukera ematen duen funtzio deitzeko sistema dute",
 	"Tools have a function calling system that allows arbitrary code execution.": "Tresnek kode arbitrarioa exekutatzeko aukera ematen duen funtzio deitzeko sistema dute.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Tresnek kode arbitrarioa exekutatzeko aukera ematen duen funtzio deitzeko sistema dute.",
+	"Tools Public Sharing": "",
 	"Top K": "Goiko K",
 	"Top K": "Goiko K",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "Goiko P",
 	"Top P": "Goiko P",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "فعال کردن ثبت نام\u200cهای جدید",
 	"Enable New Sign Ups": "فعال کردن ثبت نام\u200cهای جدید",
 	"Enabled": "",
 	"Enabled": "",
+	"Enforce Temporary Chat": "",
 	"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": "برای ذخیره سازی اطلاعات خود، یک توضیح کوتاه درباره خود را وارد کنید",
@@ -569,6 +570,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "پنهان\u200cسازی",
 	"Hide": "پنهان\u200cسازی",
+	"Hide Model": "",
 	"Home": "",
 	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "امروز چطور می توانم کمک تان کنم؟",
 	"How can I help you today?": "امروز چطور می توانم کمک تان کنم؟",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "",
 	"Knowledge Access": "",
 	"Knowledge created successfully.": "",
 	"Knowledge created successfully.": "",
 	"Knowledge deleted successfully.": "",
 	"Knowledge deleted successfully.": "",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
 	"Knowledge updated successfully": "",
 	"Kokoro.js (Browser)": "",
 	"Kokoro.js (Browser)": "",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "مدل {{modelId}} یافت نشد",
 	"Model {{modelId}} not found": "مدل {{modelId}} یافت نشد",
 	"Model {{modelName}} is not vision capable": "مدل {{modelName}} قادر به بینایی نیست",
 	"Model {{modelName}} is not vision capable": "مدل {{modelName}} قادر به بینایی نیست",
 	"Model {{name}} is now {{status}}": "مدل {{name}} در حال حاضر {{status}}",
 	"Model {{name}} is now {{status}}": "مدل {{name}} در حال حاضر {{status}}",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "",
 	"Model accepts image inputs": "",
 	"Model created successfully!": "",
 	"Model created successfully!": "",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "مسیر فایل سیستم مدل یافت شد. برای بروزرسانی نیاز است نام کوتاه مدل وجود داشته باشد.",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "مسیر فایل سیستم مدل یافت شد. برای بروزرسانی نیاز است نام کوتاه مدل وجود داشته باشد.",
@@ -712,6 +717,7 @@
 	"Models": "مدل\u200cها",
 	"Models": "مدل\u200cها",
 	"Models Access": "",
 	"Models Access": "",
 	"Models configuration saved successfully": "",
 	"Models configuration saved successfully": "",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "",
 	"Mojeek Search API Key": "",
 	"more": "",
 	"more": "",
 	"More": "بیشتر",
 	"More": "بیشتر",
@@ -836,6 +842,7 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "پرامپت\u200cها",
 	"Prompts": "پرامپت\u200cها",
 	"Prompts Access": "",
 	"Prompts Access": "",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"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",
@@ -968,9 +975,11 @@
 	"Share": "اشتراک\u200cگذاری",
 	"Share": "اشتراک\u200cگذاری",
 	"Share Chat": "اشتراک\u200cگذاری چت",
 	"Share Chat": "اشتراک\u200cگذاری چت",
 	"Share to Open WebUI Community": "اشتراک گذاری با OpenWebUI Community",
 	"Share to Open WebUI Community": "اشتراک گذاری با OpenWebUI Community",
+	"Sharing Permissions": "",
 	"Show": "نمایش",
 	"Show": "نمایش",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "",
 	"Show Admin Details in Account Pending Overlay": "",
+	"Show Model": "",
 	"Show shortcuts": "نمایش میانبرها",
 	"Show shortcuts": "نمایش میانبرها",
 	"Show your support!": "",
 	"Show your support!": "",
 	"Showcased creativity": "ایده\u200cآفرینی",
 	"Showcased creativity": "ایده\u200cآفرینی",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "",
 	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
+	"Tools Public Sharing": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "Top P",
 	"Top P": "Top P",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "Salli uudet rekisteröitymiset",
 	"Enable New Sign Ups": "Salli uudet rekisteröitymiset",
 	"Enabled": "Käytössä",
 	"Enabled": "Käytössä",
+	"Enforce Temporary Chat": "",
 	"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",
@@ -569,6 +570,7 @@
 	"Hex Color": "Heksadesimaaliväri",
 	"Hex Color": "Heksadesimaaliväri",
 	"Hex Color - Leave empty for default color": "Heksadesimaaliväri - Jätä tyhjäksi, jos haluat oletusvärin",
 	"Hex Color - Leave empty for default color": "Heksadesimaaliväri - Jätä tyhjäksi, jos haluat oletusvärin",
 	"Hide": "Piilota",
 	"Hide": "Piilota",
+	"Hide Model": "",
 	"Home": "Koti",
 	"Home": "Koti",
 	"Host": "Palvelin",
 	"Host": "Palvelin",
 	"How can I help you today?": "Miten voin auttaa sinua tänään?",
 	"How can I help you today?": "Miten voin auttaa sinua tänään?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "Tiedon käyttöoikeus",
 	"Knowledge Access": "Tiedon käyttöoikeus",
 	"Knowledge created successfully.": "Tietokanta luotu onnistuneesti.",
 	"Knowledge created successfully.": "Tietokanta luotu onnistuneesti.",
 	"Knowledge deleted successfully.": "Tietokanta poistettu onnistuneesti.",
 	"Knowledge deleted successfully.": "Tietokanta poistettu onnistuneesti.",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "Tietokanta nollattu onnistuneesti.",
 	"Knowledge reset successfully.": "Tietokanta nollattu onnistuneesti.",
 	"Knowledge updated successfully": "Tietokanta päivitetty onnistuneesti",
 	"Knowledge updated successfully": "Tietokanta päivitetty onnistuneesti",
 	"Kokoro.js (Browser)": "Kokoro.js (selain)",
 	"Kokoro.js (Browser)": "Kokoro.js (selain)",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "Mallia {{modelId}} ei löytynyt",
 	"Model {{modelId}} not found": "Mallia {{modelId}} ei löytynyt",
 	"Model {{modelName}} is not vision capable": "Malli {{modelName}} ei kykene näkökykyyn",
 	"Model {{modelName}} is not vision capable": "Malli {{modelName}} ei kykene näkökykyyn",
 	"Model {{name}} is now {{status}}": "Malli {{name}} on nyt {{status}}",
 	"Model {{name}} is now {{status}}": "Malli {{name}} on nyt {{status}}",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "Malli hyväksyy kuvasyötteitä",
 	"Model accepts image inputs": "Malli hyväksyy kuvasyötteitä",
 	"Model created successfully!": "Malli luotu onnistuneesti!",
 	"Model created successfully!": "Malli luotu onnistuneesti!",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Mallin tiedostojärjestelmäpolku havaittu. Mallin lyhytnimi vaaditaan päivitykseen, ei voida jatkaa.",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Mallin tiedostojärjestelmäpolku havaittu. Mallin lyhytnimi vaaditaan päivitykseen, ei voida jatkaa.",
@@ -712,6 +717,7 @@
 	"Models": "Mallit",
 	"Models": "Mallit",
 	"Models Access": "Mallien käyttöoikeudet",
 	"Models Access": "Mallien käyttöoikeudet",
 	"Models configuration saved successfully": "Mallien määritykset tallennettu onnistuneesti",
 	"Models configuration saved successfully": "Mallien määritykset tallennettu onnistuneesti",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "Mojeek Search API -avain",
 	"Mojeek Search API Key": "Mojeek Search API -avain",
 	"more": "lisää",
 	"more": "lisää",
 	"More": "Lisää",
 	"More": "Lisää",
@@ -836,6 +842,7 @@
 	"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",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"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",
@@ -968,9 +975,11 @@
 	"Share": "Jaa",
 	"Share": "Jaa",
 	"Share Chat": "Jaa keskustelu",
 	"Share Chat": "Jaa keskustelu",
 	"Share to Open WebUI Community": "Jaa OpenWebUI-yhteisöön",
 	"Share to Open WebUI Community": "Jaa OpenWebUI-yhteisöön",
+	"Sharing Permissions": "",
 	"Show": "Näytä",
 	"Show": "Näytä",
 	"Show \"What's New\" modal on login": "Näytä \"Mitä uutta\" -modaali kirjautumisen yhteydessä",
 	"Show \"What's New\" modal on login": "Näytä \"Mitä uutta\" -modaali kirjautumisen yhteydessä",
 	"Show Admin Details in Account Pending Overlay": "Näytä ylläpitäjän tiedot odottavan tilin päällä",
 	"Show Admin Details in Account Pending Overlay": "Näytä ylläpitäjän tiedot odottavan tilin päällä",
+	"Show Model": "",
 	"Show shortcuts": "Näytä pikanäppäimet",
 	"Show shortcuts": "Näytä pikanäppäimet",
 	"Show your support!": "Osoita tukesi!",
 	"Show your support!": "Osoita tukesi!",
 	"Showcased creativity": "Osoitti luovuutta",
 	"Showcased creativity": "Osoitti luovuutta",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "Työkalujen kutsukehote",
 	"Tools Function Calling Prompt": "Työkalujen kutsukehote",
 	"Tools have a function calling system that allows arbitrary code execution": "Työkaluilla on toimintokutsuihin perustuva järjestelmä, joka sallii mielivaltaisen koodin suorittamisen",
 	"Tools have a function calling system that allows arbitrary code execution": "Työkaluilla on toimintokutsuihin perustuva järjestelmä, joka sallii mielivaltaisen koodin suorittamisen",
 	"Tools have a function calling system that allows arbitrary code execution.": "Työkalut sallivat mielivaltaisen koodin suorittamisen toimintokutsuilla.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Työkalut sallivat mielivaltaisen koodin suorittamisen toimintokutsuilla.",
+	"Tools Public Sharing": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "Top P",
 	"Top P": "Top P",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "Activer les nouvelles inscriptions",
 	"Enable New Sign Ups": "Activer les nouvelles inscriptions",
 	"Enabled": "",
 	"Enabled": "",
+	"Enforce Temporary Chat": "",
 	"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",
@@ -569,6 +570,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "Cacher",
 	"Hide": "Cacher",
+	"Hide Model": "",
 	"Home": "",
 	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "Comment puis-je vous être utile aujourd'hui ?",
 	"How can I help you today?": "Comment puis-je vous être utile aujourd'hui ?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "",
 	"Knowledge Access": "",
 	"Knowledge created successfully.": "",
 	"Knowledge created successfully.": "",
 	"Knowledge deleted successfully.": "",
 	"Knowledge deleted successfully.": "",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
 	"Knowledge updated successfully": "",
 	"Kokoro.js (Browser)": "",
 	"Kokoro.js (Browser)": "",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "Modèle {{modelId}} introuvable",
 	"Model {{modelId}} not found": "Modèle {{modelId}} introuvable",
 	"Model {{modelName}} is not vision capable": "Le modèle {{modelName}} n'a pas de capacités visuelles",
 	"Model {{modelName}} is not vision capable": "Le modèle {{modelName}} n'a pas de capacités visuelles",
 	"Model {{name}} is now {{status}}": "Le modèle {{name}} est désormais {{status}}.",
 	"Model {{name}} is now {{status}}": "Le modèle {{name}} est désormais {{status}}.",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "",
 	"Model accepts image inputs": "",
 	"Model created successfully!": "Le modèle a été créé avec succès !",
 	"Model created successfully!": "Le modèle a été créé avec succès !",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Chemin du système de fichiers de modèle détecté. Le nom court du modèle est requis pour la mise à jour, l'opération ne peut pas être poursuivie.",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Chemin du système de fichiers de modèle détecté. Le nom court du modèle est requis pour la mise à jour, l'opération ne peut pas être poursuivie.",
@@ -712,6 +717,7 @@
 	"Models": "Modèles",
 	"Models": "Modèles",
 	"Models Access": "",
 	"Models Access": "",
 	"Models configuration saved successfully": "",
 	"Models configuration saved successfully": "",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "",
 	"Mojeek Search API Key": "",
 	"more": "",
 	"more": "",
 	"More": "Plus de",
 	"More": "Plus de",
@@ -836,6 +842,7 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "Prompts",
 	"Prompts": "Prompts",
 	"Prompts Access": "",
 	"Prompts Access": "",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"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",
@@ -968,9 +975,11 @@
 	"Share": "Partager",
 	"Share": "Partager",
 	"Share Chat": "Partage de conversation",
 	"Share Chat": "Partage de conversation",
 	"Share to Open WebUI Community": "Partager avec la communauté OpenWebUI",
 	"Share to Open WebUI Community": "Partager avec la communauté OpenWebUI",
+	"Sharing Permissions": "",
 	"Show": "Montrer",
 	"Show": "Montrer",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "Afficher les détails de l'administrateur dans la superposition en attente du compte",
 	"Show Admin Details in Account Pending Overlay": "Afficher les détails de l'administrateur dans la superposition en attente du compte",
+	"Show Model": "",
 	"Show shortcuts": "Afficher les raccourcis",
 	"Show shortcuts": "Afficher les raccourcis",
 	"Show your support!": "Montre ton soutien !",
 	"Show your support!": "Montre ton soutien !",
 	"Showcased creativity": "Créativité mise en avant",
 	"Showcased creativity": "Créativité mise en avant",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "",
 	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
+	"Tools Public Sharing": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "Top P",
 	"Top P": "Top P",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "Activer les nouvelles inscriptions",
 	"Enable New Sign Ups": "Activer les nouvelles inscriptions",
 	"Enabled": "Activé",
 	"Enabled": "Activé",
+	"Enforce Temporary Chat": "",
 	"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",
@@ -569,6 +570,7 @@
 	"Hex Color": "Couleur Hex",
 	"Hex Color": "Couleur Hex",
 	"Hex Color - Leave empty for default color": "Couleur Hex - Laissez vide pour la couleur par défaut",
 	"Hex Color - Leave empty for default color": "Couleur Hex - Laissez vide pour la couleur par défaut",
 	"Hide": "Cacher",
 	"Hide": "Cacher",
+	"Hide Model": "",
 	"Home": "",
 	"Home": "",
 	"Host": "Hôte",
 	"Host": "Hôte",
 	"How can I help you today?": "Comment puis-je vous aider aujourd'hui ?",
 	"How can I help you today?": "Comment puis-je vous aider aujourd'hui ?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "Accès aux connaissances",
 	"Knowledge Access": "Accès aux connaissances",
 	"Knowledge created successfully.": "Connaissance créée avec succès.",
 	"Knowledge created successfully.": "Connaissance créée avec succès.",
 	"Knowledge deleted successfully.": "Connaissance supprimée avec succès.",
 	"Knowledge deleted successfully.": "Connaissance supprimée avec succès.",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "Connaissance réinitialisée avec succès.",
 	"Knowledge reset successfully.": "Connaissance réinitialisée avec succès.",
 	"Knowledge updated successfully": "Connaissance mise à jour avec succès",
 	"Knowledge updated successfully": "Connaissance mise à jour avec succès",
 	"Kokoro.js (Browser)": "",
 	"Kokoro.js (Browser)": "",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "Modèle {{modelId}} introuvable",
 	"Model {{modelId}} not found": "Modèle {{modelId}} introuvable",
 	"Model {{modelName}} is not vision capable": "Le modèle {{modelName}} n'a pas de capacités visuelles",
 	"Model {{modelName}} is not vision capable": "Le modèle {{modelName}} n'a pas de capacités visuelles",
 	"Model {{name}} is now {{status}}": "Le modèle {{name}} est désormais {{status}}.",
 	"Model {{name}} is now {{status}}": "Le modèle {{name}} est désormais {{status}}.",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "Le modèle accepte les images en entrée",
 	"Model accepts image inputs": "Le modèle accepte les images en entrée",
 	"Model created successfully!": "Le modèle a été créé avec succès !",
 	"Model created successfully!": "Le modèle a été créé avec succès !",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Chemin du système de fichiers de modèle détecté. Le nom court du modèle est requis pour la mise à jour, l'opération ne peut pas être poursuivie.",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Chemin du système de fichiers de modèle détecté. Le nom court du modèle est requis pour la mise à jour, l'opération ne peut pas être poursuivie.",
@@ -712,6 +717,7 @@
 	"Models": "Modèles",
 	"Models": "Modèles",
 	"Models Access": "Accès aux modèles",
 	"Models Access": "Accès aux modèles",
 	"Models configuration saved successfully": "Configuration des modèles enregistrée avec succès",
 	"Models configuration saved successfully": "Configuration des modèles enregistrée avec succès",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "Clé API Mojeek",
 	"Mojeek Search API Key": "Clé API Mojeek",
 	"more": "plus",
 	"more": "plus",
 	"More": "Plus",
 	"More": "Plus",
@@ -836,6 +842,7 @@
 	"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",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"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",
@@ -968,9 +975,11 @@
 	"Share": "Partager",
 	"Share": "Partager",
 	"Share Chat": "Partage de conversation",
 	"Share Chat": "Partage de conversation",
 	"Share to Open WebUI Community": "Partager avec la communauté OpenWebUI",
 	"Share to Open WebUI Community": "Partager avec la communauté OpenWebUI",
+	"Sharing Permissions": "",
 	"Show": "Afficher",
 	"Show": "Afficher",
 	"Show \"What's New\" modal on login": "Afficher la fenêtre modale \"Quoi de neuf\" lors de la connexion",
 	"Show \"What's New\" modal on login": "Afficher la fenêtre modale \"Quoi de neuf\" lors de la connexion",
 	"Show Admin Details in Account Pending Overlay": "Afficher les coordonnées de l'administrateur aux comptes en attente",
 	"Show Admin Details in Account Pending Overlay": "Afficher les coordonnées de l'administrateur aux comptes en attente",
+	"Show Model": "",
 	"Show shortcuts": "Afficher les raccourcis",
 	"Show shortcuts": "Afficher les raccourcis",
 	"Show your support!": "Montrez votre soutien !",
 	"Show your support!": "Montrez votre soutien !",
 	"Showcased creativity": "Créativité mise en avant",
 	"Showcased creativity": "Créativité mise en avant",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "",
 	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "Les outils ont un système d'appel de fonction qui permet l'exécution de code arbitraire",
 	"Tools have a function calling system that allows arbitrary code execution": "Les outils ont un système d'appel de fonction qui permet l'exécution de code arbitraire",
 	"Tools have a function calling system that allows arbitrary code execution.": "Les outils ont un système d'appel de fonction qui permet l'exécution de code arbitraire.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Les outils ont un système d'appel de fonction qui permet l'exécution de code arbitraire.",
+	"Tools Public Sharing": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "Top P",
 	"Top P": "Top P",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "אפשר הרשמות חדשות",
 	"Enable New Sign Ups": "אפשר הרשמות חדשות",
 	"Enabled": "",
 	"Enabled": "",
+	"Enforce Temporary Chat": "",
 	"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 יזכור",
@@ -569,6 +570,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "הסתר",
 	"Hide": "הסתר",
+	"Hide Model": "",
 	"Home": "",
 	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "כיצד אוכל לעזור לך היום?",
 	"How can I help you today?": "כיצד אוכל לעזור לך היום?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "",
 	"Knowledge Access": "",
 	"Knowledge created successfully.": "",
 	"Knowledge created successfully.": "",
 	"Knowledge deleted successfully.": "",
 	"Knowledge deleted successfully.": "",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
 	"Knowledge updated successfully": "",
 	"Kokoro.js (Browser)": "",
 	"Kokoro.js (Browser)": "",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "המודל {{modelId}} לא נמצא",
 	"Model {{modelId}} not found": "המודל {{modelId}} לא נמצא",
 	"Model {{modelName}} is not vision capable": "דגם {{modelName}} אינו בעל יכולת ראייה",
 	"Model {{modelName}} is not vision capable": "דגם {{modelName}} אינו בעל יכולת ראייה",
 	"Model {{name}} is now {{status}}": "דגם {{name}} הוא כעת {{status}}",
 	"Model {{name}} is now {{status}}": "דגם {{name}} הוא כעת {{status}}",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "",
 	"Model accepts image inputs": "",
 	"Model created successfully!": "",
 	"Model created successfully!": "",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "נתיב מערכת הקבצים של המודל זוהה. נדרש שם קצר של המודל לעדכון, לא ניתן להמשיך.",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "נתיב מערכת הקבצים של המודל זוהה. נדרש שם קצר של המודל לעדכון, לא ניתן להמשיך.",
@@ -712,6 +717,7 @@
 	"Models": "מודלים",
 	"Models": "מודלים",
 	"Models Access": "",
 	"Models Access": "",
 	"Models configuration saved successfully": "",
 	"Models configuration saved successfully": "",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "",
 	"Mojeek Search API Key": "",
 	"more": "",
 	"more": "",
 	"More": "עוד",
 	"More": "עוד",
@@ -836,6 +842,7 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "פקודות",
 	"Prompts": "פקודות",
 	"Prompts Access": "",
 	"Prompts Access": "",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"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",
@@ -968,9 +975,11 @@
 	"Share": "שתף",
 	"Share": "שתף",
 	"Share Chat": "שתף צ'אט",
 	"Share Chat": "שתף צ'אט",
 	"Share to Open WebUI Community": "שתף לקהילת OpenWebUI",
 	"Share to Open WebUI Community": "שתף לקהילת OpenWebUI",
+	"Sharing Permissions": "",
 	"Show": "הצג",
 	"Show": "הצג",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "",
 	"Show Admin Details in Account Pending Overlay": "",
+	"Show Model": "",
 	"Show shortcuts": "הצג קיצורי דרך",
 	"Show shortcuts": "הצג קיצורי דרך",
 	"Show your support!": "",
 	"Show your support!": "",
 	"Showcased creativity": "הצגת יצירתיות",
 	"Showcased creativity": "הצגת יצירתיות",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "",
 	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
+	"Tools Public Sharing": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "Top P",
 	"Top P": "Top P",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "नए साइन अप सक्रिय करें",
 	"Enable New Sign Ups": "नए साइन अप सक्रिय करें",
 	"Enabled": "",
 	"Enabled": "",
+	"Enforce Temporary Chat": "",
 	"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": "अपने एलएलएम को याद करने के लिए अपने बारे में एक विवरण दर्ज करें",
@@ -569,6 +570,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "छुपाएं",
 	"Hide": "छुपाएं",
+	"Hide Model": "",
 	"Home": "",
 	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "आज मैं आपकी कैसे मदद कर सकता हूँ?",
 	"How can I help you today?": "आज मैं आपकी कैसे मदद कर सकता हूँ?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "",
 	"Knowledge Access": "",
 	"Knowledge created successfully.": "",
 	"Knowledge created successfully.": "",
 	"Knowledge deleted successfully.": "",
 	"Knowledge deleted successfully.": "",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
 	"Knowledge updated successfully": "",
 	"Kokoro.js (Browser)": "",
 	"Kokoro.js (Browser)": "",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "मॉडल {{modelId}} नहीं मिला",
 	"Model {{modelId}} not found": "मॉडल {{modelId}} नहीं मिला",
 	"Model {{modelName}} is not vision capable": "मॉडल {{modelName}} दृष्टि सक्षम नहीं है",
 	"Model {{modelName}} is not vision capable": "मॉडल {{modelName}} दृष्टि सक्षम नहीं है",
 	"Model {{name}} is now {{status}}": "मॉडल {{name}} अब {{status}} है",
 	"Model {{name}} is now {{status}}": "मॉडल {{name}} अब {{status}} है",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "",
 	"Model accepts image inputs": "",
 	"Model created successfully!": "",
 	"Model created successfully!": "",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "मॉडल फ़ाइल सिस्टम पथ का पता चला. अद्यतन के लिए मॉडल संक्षिप्त नाम आवश्यक है, जारी नहीं रखा जा सकता।",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "मॉडल फ़ाइल सिस्टम पथ का पता चला. अद्यतन के लिए मॉडल संक्षिप्त नाम आवश्यक है, जारी नहीं रखा जा सकता।",
@@ -712,6 +717,7 @@
 	"Models": "सभी मॉडल",
 	"Models": "सभी मॉडल",
 	"Models Access": "",
 	"Models Access": "",
 	"Models configuration saved successfully": "",
 	"Models configuration saved successfully": "",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "",
 	"Mojeek Search API Key": "",
 	"more": "",
 	"more": "",
 	"More": "और..",
 	"More": "और..",
@@ -836,6 +842,7 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "प्रॉम्प्ट",
 	"Prompts": "प्रॉम्प्ट",
 	"Prompts Access": "",
 	"Prompts Access": "",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"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 से एक मॉडल खींचें",
@@ -968,9 +975,11 @@
 	"Share": "साझा करें",
 	"Share": "साझा करें",
 	"Share Chat": "चैट साझा करें",
 	"Share Chat": "चैट साझा करें",
 	"Share to Open WebUI Community": "OpenWebUI समुदाय में साझा करें",
 	"Share to Open WebUI Community": "OpenWebUI समुदाय में साझा करें",
+	"Sharing Permissions": "",
 	"Show": "दिखाओ",
 	"Show": "दिखाओ",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "",
 	"Show Admin Details in Account Pending Overlay": "",
+	"Show Model": "",
 	"Show shortcuts": "शॉर्टकट दिखाएँ",
 	"Show shortcuts": "शॉर्टकट दिखाएँ",
 	"Show your support!": "",
 	"Show your support!": "",
 	"Showcased creativity": "रचनात्मकता का प्रदर्शन किया",
 	"Showcased creativity": "रचनात्मकता का प्रदर्शन किया",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "",
 	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
+	"Tools Public Sharing": "",
 	"Top K": "शीर्ष  K",
 	"Top K": "शीर्ष  K",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "शीर्ष  P",
 	"Top P": "शीर्ष  P",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "Omogući nove prijave",
 	"Enable New Sign Ups": "Omogući nove prijave",
 	"Enabled": "",
 	"Enabled": "",
+	"Enforce Temporary Chat": "",
 	"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",
@@ -569,6 +570,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "Sakrij",
 	"Hide": "Sakrij",
+	"Hide Model": "",
 	"Home": "",
 	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "Kako vam mogu pomoći danas?",
 	"How can I help you today?": "Kako vam mogu pomoći danas?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "",
 	"Knowledge Access": "",
 	"Knowledge created successfully.": "",
 	"Knowledge created successfully.": "",
 	"Knowledge deleted successfully.": "",
 	"Knowledge deleted successfully.": "",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
 	"Knowledge updated successfully": "",
 	"Kokoro.js (Browser)": "",
 	"Kokoro.js (Browser)": "",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "Model {{modelId}} nije pronađen",
 	"Model {{modelId}} not found": "Model {{modelId}} nije pronađen",
 	"Model {{modelName}} is not vision capable": "Model {{modelName}} ne čita vizualne impute",
 	"Model {{modelName}} is not vision capable": "Model {{modelName}} ne čita vizualne impute",
 	"Model {{name}} is now {{status}}": "Model {{name}} sada je {{status}}",
 	"Model {{name}} is now {{status}}": "Model {{name}} sada je {{status}}",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "",
 	"Model accepts image inputs": "",
 	"Model created successfully!": "",
 	"Model created successfully!": "",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Otkriven put datotečnog sustava modela. Kratko ime modela je potrebno za ažuriranje, nije moguće nastaviti.",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Otkriven put datotečnog sustava modela. Kratko ime modela je potrebno za ažuriranje, nije moguće nastaviti.",
@@ -712,6 +717,7 @@
 	"Models": "Modeli",
 	"Models": "Modeli",
 	"Models Access": "",
 	"Models Access": "",
 	"Models configuration saved successfully": "",
 	"Models configuration saved successfully": "",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "",
 	"Mojeek Search API Key": "",
 	"more": "",
 	"more": "",
 	"More": "Više",
 	"More": "Više",
@@ -836,6 +842,7 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "Prompti",
 	"Prompts": "Prompti",
 	"Prompts Access": "",
 	"Prompts Access": "",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"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",
@@ -968,9 +975,11 @@
 	"Share": "Podijeli",
 	"Share": "Podijeli",
 	"Share Chat": "Podijeli razgovor",
 	"Share Chat": "Podijeli razgovor",
 	"Share to Open WebUI Community": "Podijeli u OpenWebUI zajednici",
 	"Share to Open WebUI Community": "Podijeli u OpenWebUI zajednici",
+	"Sharing Permissions": "",
 	"Show": "Pokaži",
 	"Show": "Pokaži",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "",
 	"Show Admin Details in Account Pending Overlay": "",
+	"Show Model": "",
 	"Show shortcuts": "Pokaži prečace",
 	"Show shortcuts": "Pokaži prečace",
 	"Show your support!": "",
 	"Show your support!": "",
 	"Showcased creativity": "Prikazana kreativnost",
 	"Showcased creativity": "Prikazana kreativnost",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "",
 	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
+	"Tools Public Sharing": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "Top P",
 	"Top P": "Top P",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "Új regisztrációk engedélyezése",
 	"Enable New Sign Ups": "Új regisztrációk engedélyezése",
 	"Enabled": "Engedélyezve",
 	"Enabled": "Engedélyezve",
+	"Enforce Temporary Chat": "",
 	"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",
@@ -569,6 +570,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "Elrejtés",
 	"Hide": "Elrejtés",
+	"Hide Model": "",
 	"Home": "",
 	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "Hogyan segíthetek ma?",
 	"How can I help you today?": "Hogyan segíthetek ma?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "",
 	"Knowledge Access": "",
 	"Knowledge created successfully.": "Tudásbázis sikeresen létrehozva.",
 	"Knowledge created successfully.": "Tudásbázis sikeresen létrehozva.",
 	"Knowledge deleted successfully.": "Tudásbázis sikeresen törölve.",
 	"Knowledge deleted successfully.": "Tudásbázis sikeresen törölve.",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "Tudásbázis sikeresen visszaállítva.",
 	"Knowledge reset successfully.": "Tudásbázis sikeresen visszaállítva.",
 	"Knowledge updated successfully": "Tudásbázis sikeresen frissítve",
 	"Knowledge updated successfully": "Tudásbázis sikeresen frissítve",
 	"Kokoro.js (Browser)": "",
 	"Kokoro.js (Browser)": "",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "A {{modelId}} modell nem található",
 	"Model {{modelId}} not found": "A {{modelId}} modell nem található",
 	"Model {{modelName}} is not vision capable": "A {{modelName}} modell nem képes képfeldolgozásra",
 	"Model {{modelName}} is not vision capable": "A {{modelName}} modell nem képes képfeldolgozásra",
 	"Model {{name}} is now {{status}}": "A {{name}} modell most {{status}} állapotban van",
 	"Model {{name}} is now {{status}}": "A {{name}} modell most {{status}} állapotban van",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "A modell elfogad képbemenetet",
 	"Model accepts image inputs": "A modell elfogad képbemenetet",
 	"Model created successfully!": "Modell sikeresen létrehozva!",
 	"Model created successfully!": "Modell sikeresen létrehozva!",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Modell fájlrendszer útvonal észlelve. A modell rövid neve szükséges a frissítéshez, nem folytatható.",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Modell fájlrendszer útvonal észlelve. A modell rövid neve szükséges a frissítéshez, nem folytatható.",
@@ -712,6 +717,7 @@
 	"Models": "Modellek",
 	"Models": "Modellek",
 	"Models Access": "",
 	"Models Access": "",
 	"Models configuration saved successfully": "",
 	"Models configuration saved successfully": "",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "",
 	"Mojeek Search API Key": "",
 	"more": "több",
 	"more": "több",
 	"More": "Több",
 	"More": "Több",
@@ -836,6 +842,7 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "Promptok",
 	"Prompts": "Promptok",
 	"Prompts Access": "",
 	"Prompts Access": "",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"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",
@@ -968,9 +975,11 @@
 	"Share": "Megosztás",
 	"Share": "Megosztás",
 	"Share Chat": "Beszélgetés megosztása",
 	"Share Chat": "Beszélgetés megosztása",
 	"Share to Open WebUI Community": "Megosztás az OpenWebUI közösséggel",
 	"Share to Open WebUI Community": "Megosztás az OpenWebUI közösséggel",
+	"Sharing Permissions": "",
 	"Show": "Mutat",
 	"Show": "Mutat",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "Admin részletek megjelenítése a függő fiók átfedésben",
 	"Show Admin Details in Account Pending Overlay": "Admin részletek megjelenítése a függő fiók átfedésben",
+	"Show Model": "",
 	"Show shortcuts": "Gyorsbillentyűk megjelenítése",
 	"Show shortcuts": "Gyorsbillentyűk megjelenítése",
 	"Show your support!": "Mutassa meg támogatását!",
 	"Show your support!": "Mutassa meg támogatását!",
 	"Showcased creativity": "Kreativitás bemutatva",
 	"Showcased creativity": "Kreativitás bemutatva",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "",
 	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "Az eszközök olyan függvényhívó rendszerrel rendelkeznek, amely lehetővé teszi tetszőleges kód végrehajtását",
 	"Tools have a function calling system that allows arbitrary code execution": "Az eszközök olyan függvényhívó rendszerrel rendelkeznek, amely lehetővé teszi tetszőleges kód végrehajtását",
 	"Tools have a function calling system that allows arbitrary code execution.": "Az eszközök olyan függvényhívó rendszerrel rendelkeznek, amely lehetővé teszi tetszőleges kód végrehajtását.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Az eszközök olyan függvényhívó rendszerrel rendelkeznek, amely lehetővé teszi tetszőleges kód végrehajtását.",
+	"Tools Public Sharing": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "Top P",
 	"Top P": "Top P",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "Aktifkan Pendaftaran Baru",
 	"Enable New Sign Ups": "Aktifkan Pendaftaran Baru",
 	"Enabled": "",
 	"Enabled": "",
+	"Enforce Temporary Chat": "",
 	"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",
@@ -569,6 +570,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "Sembunyikan",
 	"Hide": "Sembunyikan",
+	"Hide Model": "",
 	"Home": "",
 	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "Ada yang bisa saya bantu hari ini?",
 	"How can I help you today?": "Ada yang bisa saya bantu hari ini?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "",
 	"Knowledge Access": "",
 	"Knowledge created successfully.": "",
 	"Knowledge created successfully.": "",
 	"Knowledge deleted successfully.": "",
 	"Knowledge deleted successfully.": "",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
 	"Knowledge updated successfully": "",
 	"Kokoro.js (Browser)": "",
 	"Kokoro.js (Browser)": "",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "Model {{modelId}} tidak ditemukan",
 	"Model {{modelId}} not found": "Model {{modelId}} tidak ditemukan",
 	"Model {{modelName}} is not vision capable": "Model {{modelName}} tidak dapat dilihat",
 	"Model {{modelName}} is not vision capable": "Model {{modelName}} tidak dapat dilihat",
 	"Model {{name}} is now {{status}}": "Model {{name}} sekarang menjadi {{status}}",
 	"Model {{name}} is now {{status}}": "Model {{name}} sekarang menjadi {{status}}",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "",
 	"Model accepts image inputs": "",
 	"Model created successfully!": "Model berhasil dibuat!",
 	"Model created successfully!": "Model berhasil dibuat!",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Jalur sistem berkas model terdeteksi. Nama pendek model diperlukan untuk pembaruan, tidak dapat dilanjutkan.",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Jalur sistem berkas model terdeteksi. Nama pendek model diperlukan untuk pembaruan, tidak dapat dilanjutkan.",
@@ -712,6 +717,7 @@
 	"Models": "Model",
 	"Models": "Model",
 	"Models Access": "",
 	"Models Access": "",
 	"Models configuration saved successfully": "",
 	"Models configuration saved successfully": "",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "",
 	"Mojeek Search API Key": "",
 	"more": "",
 	"more": "",
 	"More": "Lainnya",
 	"More": "Lainnya",
@@ -836,6 +842,7 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "Prompt",
 	"Prompts": "Prompt",
 	"Prompts Access": "",
 	"Prompts Access": "",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"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",
@@ -968,9 +975,11 @@
 	"Share": "Berbagi",
 	"Share": "Berbagi",
 	"Share Chat": "Bagikan Obrolan",
 	"Share Chat": "Bagikan Obrolan",
 	"Share to Open WebUI Community": "Bagikan ke Komunitas OpenWebUI",
 	"Share to Open WebUI Community": "Bagikan ke Komunitas OpenWebUI",
+	"Sharing Permissions": "",
 	"Show": "Tampilkan",
 	"Show": "Tampilkan",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "Tampilkan Detail Admin di Hamparan Akun Tertunda",
 	"Show Admin Details in Account Pending Overlay": "Tampilkan Detail Admin di Hamparan Akun Tertunda",
+	"Show Model": "",
 	"Show shortcuts": "Tampilkan pintasan",
 	"Show shortcuts": "Tampilkan pintasan",
 	"Show your support!": "Tunjukkan dukungan Anda!",
 	"Show your support!": "Tunjukkan dukungan Anda!",
 	"Showcased creativity": "Menampilkan kreativitas",
 	"Showcased creativity": "Menampilkan kreativitas",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "",
 	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
+	"Tools Public Sharing": "",
 	"Top K": "K atas",
 	"Top K": "K atas",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "P Atas",
 	"Top P": "P Atas",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "Cumasaigh Clárúcháin Nua",
 	"Enable New Sign Ups": "Cumasaigh Clárúcháin Nua",
 	"Enabled": "Cumasaithe",
 	"Enabled": "Cumasaithe",
+	"Enforce Temporary Chat": "",
 	"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ú",
@@ -569,6 +570,7 @@
 	"Hex Color": "Dath Heics",
 	"Hex Color": "Dath Heics",
 	"Hex Color - Leave empty for default color": "Dath Heics - Fág folamh don dath réamhshocraithe",
 	"Hex Color - Leave empty for default color": "Dath Heics - Fág folamh don dath réamhshocraithe",
 	"Hide": "Folaigh",
 	"Hide": "Folaigh",
+	"Hide Model": "",
 	"Home": "Baile",
 	"Home": "Baile",
 	"Host": "Óstach",
 	"Host": "Óstach",
 	"How can I help you today?": "Conas is féidir liom cabhrú leat inniu?",
 	"How can I help you today?": "Conas is féidir liom cabhrú leat inniu?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "Rochtain Eolais",
 	"Knowledge Access": "Rochtain Eolais",
 	"Knowledge created successfully.": "Eolas cruthaithe go rathúil.",
 	"Knowledge created successfully.": "Eolas cruthaithe go rathúil.",
 	"Knowledge deleted successfully.": "D'éirigh leis an eolas a scriosadh.",
 	"Knowledge deleted successfully.": "D'éirigh leis an eolas a scriosadh.",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "D'éirigh le hathshocrú eolais.",
 	"Knowledge reset successfully.": "D'éirigh le hathshocrú eolais.",
 	"Knowledge updated successfully": "D'éirigh leis an eolas a nuashonrú",
 	"Knowledge updated successfully": "D'éirigh leis an eolas a nuashonrú",
 	"Kokoro.js (Browser)": "Kokoro.js (Brabhsálaí)",
 	"Kokoro.js (Browser)": "Kokoro.js (Brabhsálaí)",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "Múnla {{modelId}} gan aimsiú",
 	"Model {{modelId}} not found": "Múnla {{modelId}} gan aimsiú",
 	"Model {{modelName}} is not vision capable": "Níl samhail {{modelName}} in ann amharc",
 	"Model {{modelName}} is not vision capable": "Níl samhail {{modelName}} in ann amharc",
 	"Model {{name}} is now {{status}}": "Tá samhail {{name}} {{status}} anois",
 	"Model {{name}} is now {{status}}": "Tá samhail {{name}} {{status}} anois",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "Glacann múnla le hionchuir",
 	"Model accepts image inputs": "Glacann múnla le hionchuir",
 	"Model created successfully!": "Cruthaíodh múnla go rathúil!",
 	"Model created successfully!": "Cruthaíodh múnla go rathúil!",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Fuarthas cosán an múnla. Teastaíonn ainm gearr an mhúnla le haghaidh nuashonraithe, ní féidir leanúint ar aghaidh.",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Fuarthas cosán an múnla. Teastaíonn ainm gearr an mhúnla le haghaidh nuashonraithe, ní féidir leanúint ar aghaidh.",
@@ -712,6 +717,7 @@
 	"Models": "Múnlaí",
 	"Models": "Múnlaí",
 	"Models Access": "Rochtain Múnlaí",
 	"Models Access": "Rochtain Múnlaí",
 	"Models configuration saved successfully": "Sábháladh cumraíocht na múnlaí go rathúil",
 	"Models configuration saved successfully": "Sábháladh cumraíocht na múnlaí go rathúil",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "Eochair API Cuardach Mojeek",
 	"Mojeek Search API Key": "Eochair API Cuardach Mojeek",
 	"more": "níos mó",
 	"more": "níos mó",
 	"More": "Tuilleadh",
 	"More": "Tuilleadh",
@@ -836,6 +842,7 @@
 	"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í",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"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",
@@ -968,9 +975,11 @@
 	"Share": "Comhroinn",
 	"Share": "Comhroinn",
 	"Share Chat": "Comhroinn Comhrá",
 	"Share Chat": "Comhroinn Comhrá",
 	"Share to Open WebUI Community": "Comhroinn le Pobal OpenWebUI",
 	"Share to Open WebUI Community": "Comhroinn le Pobal OpenWebUI",
+	"Sharing Permissions": "",
 	"Show": "Taispeáin",
 	"Show": "Taispeáin",
 	"Show \"What's New\" modal on login": "Taispeáin módúil \"Cad atá Nua\" ar logáil isteach",
 	"Show \"What's New\" modal on login": "Taispeáin módúil \"Cad atá Nua\" ar logáil isteach",
 	"Show Admin Details in Account Pending Overlay": "Taispeáin Sonraí Riaracháin sa Chuntas ar Feitheamh Forleagan",
 	"Show Admin Details in Account Pending Overlay": "Taispeáin Sonraí Riaracháin sa Chuntas ar Feitheamh Forleagan",
+	"Show Model": "",
 	"Show shortcuts": "Taispeáin aicearraí",
 	"Show shortcuts": "Taispeáin aicearraí",
 	"Show your support!": "Taispeáin do thacaíocht!",
 	"Show your support!": "Taispeáin do thacaíocht!",
 	"Showcased creativity": "Cruthaitheacht léirithe",
 	"Showcased creativity": "Cruthaitheacht léirithe",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "Leid Glaonna Feidhm Uirlisí",
 	"Tools Function Calling Prompt": "Leid Glaonna Feidhm Uirlisí",
 	"Tools have a function calling system that allows arbitrary code execution": "Tá córas glaonna feidhme ag uirlisí a cheadaíonn forghníomhú cód treallach",
 	"Tools have a function calling system that allows arbitrary code execution": "Tá córas glaonna feidhme ag uirlisí a cheadaíonn forghníomhú cód treallach",
 	"Tools have a function calling system that allows arbitrary code execution.": "Tá córas glaonna feidhme ag uirlisí a cheadaíonn forghníomhú cód treallach.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Tá córas glaonna feidhme ag uirlisí a cheadaíonn forghníomhú cód treallach.",
+	"Tools Public Sharing": "",
 	"Top K": "Barr K",
 	"Top K": "Barr K",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "Barr P",
 	"Top P": "Barr P",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "Abilita nuove iscrizioni",
 	"Enable New Sign Ups": "Abilita nuove iscrizioni",
 	"Enabled": "",
 	"Enabled": "",
+	"Enforce Temporary Chat": "",
 	"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",
@@ -569,6 +570,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "Nascondi",
 	"Hide": "Nascondi",
+	"Hide Model": "",
 	"Home": "",
 	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "Come posso aiutarti oggi?",
 	"How can I help you today?": "Come posso aiutarti oggi?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "",
 	"Knowledge Access": "",
 	"Knowledge created successfully.": "",
 	"Knowledge created successfully.": "",
 	"Knowledge deleted successfully.": "",
 	"Knowledge deleted successfully.": "",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
 	"Knowledge updated successfully": "",
 	"Kokoro.js (Browser)": "",
 	"Kokoro.js (Browser)": "",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "Modello {{modelId}} non trovato",
 	"Model {{modelId}} not found": "Modello {{modelId}} non trovato",
 	"Model {{modelName}} is not vision capable": "Il modello {{modelName}} non è in grado di vedere",
 	"Model {{modelName}} is not vision capable": "Il modello {{modelName}} non è in grado di vedere",
 	"Model {{name}} is now {{status}}": "Il modello {{name}} è ora {{status}}",
 	"Model {{name}} is now {{status}}": "Il modello {{name}} è ora {{status}}",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "",
 	"Model accepts image inputs": "",
 	"Model created successfully!": "",
 	"Model created successfully!": "",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Percorso del filesystem del modello rilevato. Il nome breve del modello è richiesto per l'aggiornamento, impossibile continuare.",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Percorso del filesystem del modello rilevato. Il nome breve del modello è richiesto per l'aggiornamento, impossibile continuare.",
@@ -712,6 +717,7 @@
 	"Models": "Modelli",
 	"Models": "Modelli",
 	"Models Access": "",
 	"Models Access": "",
 	"Models configuration saved successfully": "",
 	"Models configuration saved successfully": "",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "",
 	"Mojeek Search API Key": "",
 	"more": "",
 	"more": "",
 	"More": "Altro",
 	"More": "Altro",
@@ -836,6 +842,7 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "Prompt",
 	"Prompts": "Prompt",
 	"Prompts Access": "",
 	"Prompts Access": "",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"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",
@@ -968,9 +975,11 @@
 	"Share": "Condividi",
 	"Share": "Condividi",
 	"Share Chat": "Condividi chat",
 	"Share Chat": "Condividi chat",
 	"Share to Open WebUI Community": "Condividi con la comunità OpenWebUI",
 	"Share to Open WebUI Community": "Condividi con la comunità OpenWebUI",
+	"Sharing Permissions": "",
 	"Show": "Mostra",
 	"Show": "Mostra",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "",
 	"Show Admin Details in Account Pending Overlay": "",
+	"Show Model": "",
 	"Show shortcuts": "Mostra",
 	"Show shortcuts": "Mostra",
 	"Show your support!": "",
 	"Show your support!": "",
 	"Showcased creativity": "Creatività messa in mostra",
 	"Showcased creativity": "Creatività messa in mostra",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "",
 	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
+	"Tools Public Sharing": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "Top P",
 	"Top P": "Top P",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "新規登録を有効にする",
 	"Enable New Sign Ups": "新規登録を有効にする",
 	"Enabled": "有効",
 	"Enabled": "有効",
+	"Enforce Temporary Chat": "",
 	"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 が記憶するために、自分についての詳細を入力してください",
@@ -569,6 +570,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "非表示",
 	"Hide": "非表示",
+	"Hide Model": "",
 	"Home": "",
 	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "今日はどのようにお手伝いしましょうか?",
 	"How can I help you today?": "今日はどのようにお手伝いしましょうか?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "",
 	"Knowledge Access": "",
 	"Knowledge created successfully.": "ナレッジベースの作成に成功しました",
 	"Knowledge created successfully.": "ナレッジベースの作成に成功しました",
 	"Knowledge deleted successfully.": "ナレッジベースの削除に成功しました",
 	"Knowledge deleted successfully.": "ナレッジベースの削除に成功しました",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "ナレッジベースのリセットに成功しました",
 	"Knowledge reset successfully.": "ナレッジベースのリセットに成功しました",
 	"Knowledge updated successfully": "ナレッジベースのアップデートに成功しました",
 	"Knowledge updated successfully": "ナレッジベースのアップデートに成功しました",
 	"Kokoro.js (Browser)": "",
 	"Kokoro.js (Browser)": "",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "モデル {{modelId}} が見つかりません",
 	"Model {{modelId}} not found": "モデル {{modelId}} が見つかりません",
 	"Model {{modelName}} is not vision capable": "モデル {{modelName}} は視覚に対応していません",
 	"Model {{modelName}} is not vision capable": "モデル {{modelName}} は視覚に対応していません",
 	"Model {{name}} is now {{status}}": "モデル {{name}} は {{status}} になりました。",
 	"Model {{name}} is now {{status}}": "モデル {{name}} は {{status}} になりました。",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "",
 	"Model accepts image inputs": "",
 	"Model created successfully!": "",
 	"Model created successfully!": "",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "モデルファイルシステムパスが検出されました。モデルの短縮名が必要です。更新できません。",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "モデルファイルシステムパスが検出されました。モデルの短縮名が必要です。更新できません。",
@@ -712,6 +717,7 @@
 	"Models": "モデル",
 	"Models": "モデル",
 	"Models Access": "",
 	"Models Access": "",
 	"Models configuration saved successfully": "",
 	"Models configuration saved successfully": "",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "",
 	"Mojeek Search API Key": "",
 	"more": "",
 	"more": "",
 	"More": "もっと見る",
 	"More": "もっと見る",
@@ -836,6 +842,7 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "プロンプト",
 	"Prompts": "プロンプト",
 	"Prompts Access": "",
 	"Prompts Access": "",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"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 からモデルをプル",
@@ -968,9 +975,11 @@
 	"Share": "共有",
 	"Share": "共有",
 	"Share Chat": "チャットを共有",
 	"Share Chat": "チャットを共有",
 	"Share to Open WebUI Community": "OpenWebUI コミュニティに共有",
 	"Share to Open WebUI Community": "OpenWebUI コミュニティに共有",
+	"Sharing Permissions": "",
 	"Show": "表示",
 	"Show": "表示",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "",
 	"Show Admin Details in Account Pending Overlay": "",
+	"Show Model": "",
 	"Show shortcuts": "表示",
 	"Show shortcuts": "表示",
 	"Show your support!": "",
 	"Show your support!": "",
 	"Showcased creativity": "創造性を披露",
 	"Showcased creativity": "創造性を披露",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "",
 	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
+	"Tools Public Sharing": "",
 	"Top K": "トップ K",
 	"Top K": "トップ K",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "トップ P",
 	"Top P": "トップ P",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "ახალი რეგისტრაციების ჩართვა",
 	"Enable New Sign Ups": "ახალი რეგისტრაციების ჩართვა",
 	"Enabled": "ჩართულია",
 	"Enabled": "ჩართულია",
+	"Enforce Temporary Chat": "",
 	"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-მა გაიხსენოს",
@@ -569,6 +570,7 @@
 	"Hex Color": "თექვსმეტობითი ფერი",
 	"Hex Color": "თექვსმეტობითი ფერი",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "დამალვა",
 	"Hide": "დამალვა",
+	"Hide Model": "",
 	"Home": "მთავარი",
 	"Home": "მთავარი",
 	"Host": "ჰოსტი",
 	"Host": "ჰოსტი",
 	"How can I help you today?": "რით შემიძლია დაგეხმაროთ დღეს?",
 	"How can I help you today?": "რით შემიძლია დაგეხმაროთ დღეს?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "",
 	"Knowledge Access": "",
 	"Knowledge created successfully.": "",
 	"Knowledge created successfully.": "",
 	"Knowledge deleted successfully.": "",
 	"Knowledge deleted successfully.": "",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
 	"Knowledge updated successfully": "",
 	"Kokoro.js (Browser)": "Kokoro.js (ბრაუზერი)",
 	"Kokoro.js (Browser)": "Kokoro.js (ბრაუზერი)",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "მოდელი {{modelId}} აღმოჩენილი არაა",
 	"Model {{modelId}} not found": "მოდელი {{modelId}} აღმოჩენილი არაა",
 	"Model {{modelName}} is not vision capable": "Model {{modelName}} is not vision capable",
 	"Model {{modelName}} is not vision capable": "Model {{modelName}} is not vision capable",
 	"Model {{name}} is now {{status}}": "Model {{name}} is now {{status}}",
 	"Model {{name}} is now {{status}}": "Model {{name}} is now {{status}}",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "",
 	"Model accepts image inputs": "",
 	"Model created successfully!": "",
 	"Model created successfully!": "",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "აღმოჩენილია მოდელის ფაილური სისტემის ბილიკი. განახლებისთვის საჭიროა მოდელის მოკლე სახელი, გაგრძელება შეუძლებელია.",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "აღმოჩენილია მოდელის ფაილური სისტემის ბილიკი. განახლებისთვის საჭიროა მოდელის მოკლე სახელი, გაგრძელება შეუძლებელია.",
@@ -712,6 +717,7 @@
 	"Models": "მოდელები",
 	"Models": "მოდელები",
 	"Models Access": "მოდელის წვდომა",
 	"Models Access": "მოდელის წვდომა",
 	"Models configuration saved successfully": "",
 	"Models configuration saved successfully": "",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "",
 	"Mojeek Search API Key": "",
 	"more": "მეტი",
 	"more": "მეტი",
 	"More": "მეტი",
 	"More": "მეტი",
@@ -836,6 +842,7 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "მოთხოვნები",
 	"Prompts": "მოთხოვნები",
 	"Prompts Access": "",
 	"Prompts Access": "",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"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-დან",
@@ -968,9 +975,11 @@
 	"Share": "გაზიარება",
 	"Share": "გაზიარება",
 	"Share Chat": "ჩატის გაზიარება",
 	"Share Chat": "ჩატის გაზიარება",
 	"Share to Open WebUI Community": "გაზიარება Open WebUI-ის საზოგადოებასთან",
 	"Share to Open WebUI Community": "გაზიარება Open WebUI-ის საზოგადოებასთან",
+	"Sharing Permissions": "",
 	"Show": "ჩვენება",
 	"Show": "ჩვენება",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "",
 	"Show Admin Details in Account Pending Overlay": "",
+	"Show Model": "",
 	"Show shortcuts": "მალსახმობების ჩვენება",
 	"Show shortcuts": "მალსახმობების ჩვენება",
 	"Show your support!": "",
 	"Show your support!": "",
 	"Showcased creativity": "გამოკვეთილი კრეატიულობა",
 	"Showcased creativity": "გამოკვეთილი კრეატიულობა",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "",
 	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
+	"Tools Public Sharing": "",
 	"Top K": "ტოპ K",
 	"Top K": "ტოპ K",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "ტოპ P",
 	"Top P": "ტოპ P",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "새 회원가입 활성화",
 	"Enable New Sign Ups": "새 회원가입 활성화",
 	"Enabled": "활성화됨",
 	"Enabled": "활성화됨",
+	"Enforce Temporary Chat": "",
 	"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들이 기억할 수 있도록 하세요.",
@@ -569,6 +570,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "숨기기",
 	"Hide": "숨기기",
+	"Hide Model": "",
 	"Home": "",
 	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "오늘 어떻게 도와드릴까요?",
 	"How can I help you today?": "오늘 어떻게 도와드릴까요?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "지식 접근",
 	"Knowledge Access": "지식 접근",
 	"Knowledge created successfully.": "성공적으로 지식 기반이 생성되었습니다",
 	"Knowledge created successfully.": "성공적으로 지식 기반이 생성되었습니다",
 	"Knowledge deleted successfully.": "성공적으로 지식 기반이 삭제되었습니다",
 	"Knowledge deleted successfully.": "성공적으로 지식 기반이 삭제되었습니다",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "성공적으로 지식 기반이 초기화되었습니다",
 	"Knowledge reset successfully.": "성공적으로 지식 기반이 초기화되었습니다",
 	"Knowledge updated successfully": "성공적으로 지식 기반이 업데이트되었습니다",
 	"Knowledge updated successfully": "성공적으로 지식 기반이 업데이트되었습니다",
 	"Kokoro.js (Browser)": "",
 	"Kokoro.js (Browser)": "",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "{{modelId}} 모델을 찾을 수 없습니다.",
 	"Model {{modelId}} not found": "{{modelId}} 모델을 찾을 수 없습니다.",
 	"Model {{modelName}} is not vision capable": "{{modelName}} 모델은 비전을 사용할 수 없습니다.",
 	"Model {{modelName}} is not vision capable": "{{modelName}} 모델은 비전을 사용할 수 없습니다.",
 	"Model {{name}} is now {{status}}": "{{name}} 모델은 이제 {{status}} 상태입니다.",
 	"Model {{name}} is now {{status}}": "{{name}} 모델은 이제 {{status}} 상태입니다.",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "모델이 이미지 삽입을 허용합니다",
 	"Model accepts image inputs": "모델이 이미지 삽입을 허용합니다",
 	"Model created successfully!": "성공적으로 모델이 생성되었습니다",
 	"Model created successfully!": "성공적으로 모델이 생성되었습니다",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "모델 파일 시스템 경로가 감지되었습니다. 업데이트하려면 모델 단축 이름이 필요하며 계속할 수 없습니다.",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "모델 파일 시스템 경로가 감지되었습니다. 업데이트하려면 모델 단축 이름이 필요하며 계속할 수 없습니다.",
@@ -712,6 +717,7 @@
 	"Models": "모델",
 	"Models": "모델",
 	"Models Access": "모델 접근",
 	"Models Access": "모델 접근",
 	"Models configuration saved successfully": "",
 	"Models configuration saved successfully": "",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "Mojeek Search API 키",
 	"Mojeek Search API Key": "Mojeek Search API 키",
 	"more": "더보기",
 	"more": "더보기",
 	"More": "더보기",
 	"More": "더보기",
@@ -836,6 +842,7 @@
 	"Prompt updated successfully": "성공적으로 프롬프트를 수정했습니다",
 	"Prompt updated successfully": "성공적으로 프롬프트를 수정했습니다",
 	"Prompts": "프롬프트",
 	"Prompts": "프롬프트",
 	"Prompts Access": "프롬프트 접근",
 	"Prompts Access": "프롬프트 접근",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"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)",
@@ -968,9 +975,11 @@
 	"Share": "공유",
 	"Share": "공유",
 	"Share Chat": "채팅 공유",
 	"Share Chat": "채팅 공유",
 	"Share to Open WebUI Community": "OpenWebUI 커뮤니티에 공유",
 	"Share to Open WebUI Community": "OpenWebUI 커뮤니티에 공유",
+	"Sharing Permissions": "",
 	"Show": "보기",
 	"Show": "보기",
 	"Show \"What's New\" modal on login": "로그인시 \"새로운 기능\" 모달 보기",
 	"Show \"What's New\" modal on login": "로그인시 \"새로운 기능\" 모달 보기",
 	"Show Admin Details in Account Pending Overlay": "사용자용 계정 보류 설명창에, 관리자 상세 정보 노출",
 	"Show Admin Details in Account Pending Overlay": "사용자용 계정 보류 설명창에, 관리자 상세 정보 노출",
+	"Show Model": "",
 	"Show shortcuts": "단축키 보기",
 	"Show shortcuts": "단축키 보기",
 	"Show your support!": "당신의 응원을 보내주세요!",
 	"Show your support!": "당신의 응원을 보내주세요!",
 	"Showcased creativity": "창의성 발휘",
 	"Showcased creativity": "창의성 발휘",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "",
 	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "도구에 임의 코드 실행을 허용하는 함수가 포함되어 있습니다",
 	"Tools have a function calling system that allows arbitrary code execution": "도구에 임의 코드 실행을 허용하는 함수가 포함되어 있습니다",
 	"Tools have a function calling system that allows arbitrary code execution.": "도구에 임의 코드 실행을 허용하는 함수가 포함되어 있습니다.",
 	"Tools have a function calling system that allows arbitrary code execution.": "도구에 임의 코드 실행을 허용하는 함수가 포함되어 있습니다.",
+	"Tools Public Sharing": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "Top P",
 	"Top P": "Top P",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "Aktyvuoti naujas registracijas",
 	"Enable New Sign Ups": "Aktyvuoti naujas registracijas",
 	"Enabled": "Leisti",
 	"Enabled": "Leisti",
+	"Enforce Temporary Chat": "",
 	"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",
@@ -569,6 +570,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "Paslėpti",
 	"Hide": "Paslėpti",
+	"Hide Model": "",
 	"Home": "",
 	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "Kuo galėčiau Jums padėti ?",
 	"How can I help you today?": "Kuo galėčiau Jums padėti ?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "",
 	"Knowledge Access": "",
 	"Knowledge created successfully.": "",
 	"Knowledge created successfully.": "",
 	"Knowledge deleted successfully.": "",
 	"Knowledge deleted successfully.": "",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
 	"Knowledge updated successfully": "",
 	"Kokoro.js (Browser)": "",
 	"Kokoro.js (Browser)": "",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "Modelis {{modelId}} nerastas",
 	"Model {{modelId}} not found": "Modelis {{modelId}} nerastas",
 	"Model {{modelName}} is not vision capable": "Modelis {{modelName}} neturi vaizdo gebėjimų",
 	"Model {{modelName}} is not vision capable": "Modelis {{modelName}} neturi vaizdo gebėjimų",
 	"Model {{name}} is now {{status}}": "Modelis {{name}} dabar {{status}}",
 	"Model {{name}} is now {{status}}": "Modelis {{name}} dabar {{status}}",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "",
 	"Model accepts image inputs": "",
 	"Model created successfully!": "Modelis sukurtas sėkmingai",
 	"Model created successfully!": "Modelis sukurtas sėkmingai",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Modelio failų sistemos kelias aptiktas. Reikalingas trumpas modelio pavadinimas atnaujinimui.",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Modelio failų sistemos kelias aptiktas. Reikalingas trumpas modelio pavadinimas atnaujinimui.",
@@ -712,6 +717,7 @@
 	"Models": "Modeliai",
 	"Models": "Modeliai",
 	"Models Access": "",
 	"Models Access": "",
 	"Models configuration saved successfully": "",
 	"Models configuration saved successfully": "",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "",
 	"Mojeek Search API Key": "",
 	"more": "",
 	"more": "",
 	"More": "Daugiau",
 	"More": "Daugiau",
@@ -836,6 +842,7 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "Užklausos",
 	"Prompts": "Užklausos",
 	"Prompts Access": "",
 	"Prompts Access": "",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"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",
@@ -968,9 +975,11 @@
 	"Share": "Dalintis",
 	"Share": "Dalintis",
 	"Share Chat": "Dalintis pokalbiu",
 	"Share Chat": "Dalintis pokalbiu",
 	"Share to Open WebUI Community": "Dalintis su OpenWebUI bendruomene",
 	"Share to Open WebUI Community": "Dalintis su OpenWebUI bendruomene",
+	"Sharing Permissions": "",
 	"Show": "Rodyti",
 	"Show": "Rodyti",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "Rodyti administratoriaus duomenis laukiant paskyros patvirtinimo",
 	"Show Admin Details in Account Pending Overlay": "Rodyti administratoriaus duomenis laukiant paskyros patvirtinimo",
+	"Show Model": "",
 	"Show shortcuts": "Rodyti trumpinius",
 	"Show shortcuts": "Rodyti trumpinius",
 	"Show your support!": "Palaikykite",
 	"Show your support!": "Palaikykite",
 	"Showcased creativity": "Kūrybingų užklausų paroda",
 	"Showcased creativity": "Kūrybingų užklausų paroda",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "",
 	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "Įrankiai gali naudoti funkcijas ir leisti vykdyti kodą",
 	"Tools have a function calling system that allows arbitrary code execution": "Įrankiai gali naudoti funkcijas ir leisti vykdyti kodą",
 	"Tools have a function calling system that allows arbitrary code execution.": "Įrankiai gali naudoti funkcijas ir leisti vykdyti kodą",
 	"Tools have a function calling system that allows arbitrary code execution.": "Įrankiai gali naudoti funkcijas ir leisti vykdyti kodą",
+	"Tools Public Sharing": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "Top P",
 	"Top P": "Top P",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "Benarkan Pendaftaran Baharu",
 	"Enable New Sign Ups": "Benarkan Pendaftaran Baharu",
 	"Enabled": "Dibenarkan",
 	"Enabled": "Dibenarkan",
+	"Enforce Temporary Chat": "",
 	"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",
@@ -569,6 +570,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "Sembunyi",
 	"Hide": "Sembunyi",
+	"Hide Model": "",
 	"Home": "",
 	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "Bagaimana saya boleh membantu anda hari ini?",
 	"How can I help you today?": "Bagaimana saya boleh membantu anda hari ini?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "",
 	"Knowledge Access": "",
 	"Knowledge created successfully.": "",
 	"Knowledge created successfully.": "",
 	"Knowledge deleted successfully.": "",
 	"Knowledge deleted successfully.": "",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
 	"Knowledge updated successfully": "",
 	"Kokoro.js (Browser)": "",
 	"Kokoro.js (Browser)": "",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "Model {{ modelId }} tidak dijumpai",
 	"Model {{modelId}} not found": "Model {{ modelId }} tidak dijumpai",
 	"Model {{modelName}} is not vision capable": "Model {{ modelName }} tidak mempunyai keupayaan penglihatan",
 	"Model {{modelName}} is not vision capable": "Model {{ modelName }} tidak mempunyai keupayaan penglihatan",
 	"Model {{name}} is now {{status}}": "Model {{name}} kini {{status}}",
 	"Model {{name}} is now {{status}}": "Model {{name}} kini {{status}}",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "",
 	"Model accepts image inputs": "",
 	"Model created successfully!": "Model berjaya dibuat!",
 	"Model created successfully!": "Model berjaya dibuat!",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Laluan sistem fail model dikesan. Nama pendek model diperlukan untuk kemas kini, tidak boleh diteruskan.",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Laluan sistem fail model dikesan. Nama pendek model diperlukan untuk kemas kini, tidak boleh diteruskan.",
@@ -712,6 +717,7 @@
 	"Models": "Model",
 	"Models": "Model",
 	"Models Access": "",
 	"Models Access": "",
 	"Models configuration saved successfully": "",
 	"Models configuration saved successfully": "",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "",
 	"Mojeek Search API Key": "",
 	"more": "",
 	"more": "",
 	"More": "Lagi",
 	"More": "Lagi",
@@ -836,6 +842,7 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "Gesaan",
 	"Prompts": "Gesaan",
 	"Prompts Access": "",
 	"Prompts Access": "",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"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",
@@ -968,9 +975,11 @@
 	"Share": "Kongsi",
 	"Share": "Kongsi",
 	"Share Chat": "Kongsi Perbualan",
 	"Share Chat": "Kongsi Perbualan",
 	"Share to Open WebUI Community": "Kongsi kepada Komuniti OpenWebUI",
 	"Share to Open WebUI Community": "Kongsi kepada Komuniti OpenWebUI",
+	"Sharing Permissions": "",
 	"Show": "Tunjukkan",
 	"Show": "Tunjukkan",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "Tunjukkan Butiran Pentadbir dalam Akaun Menunggu Tindanan",
 	"Show Admin Details in Account Pending Overlay": "Tunjukkan Butiran Pentadbir dalam Akaun Menunggu Tindanan",
+	"Show Model": "",
 	"Show shortcuts": "Tunjukkan pintasan",
 	"Show shortcuts": "Tunjukkan pintasan",
 	"Show your support!": "Tunjukkan sokongan anda!",
 	"Show your support!": "Tunjukkan sokongan anda!",
 	"Showcased creativity": "eativiti yang dipamerkan",
 	"Showcased creativity": "eativiti yang dipamerkan",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "",
 	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "Alatan mempunyai sistem panggilan fungsi yang membolehkan pelaksanaan kod sewenang-wenangnya",
 	"Tools have a function calling system that allows arbitrary code execution": "Alatan mempunyai sistem panggilan fungsi yang membolehkan pelaksanaan kod sewenang-wenangnya",
 	"Tools have a function calling system that allows arbitrary code execution.": "Alatan mempunyai sistem panggilan fungsi yang membolehkan pelaksanaan kod sewenang-wenangnya.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Alatan mempunyai sistem panggilan fungsi yang membolehkan pelaksanaan kod sewenang-wenangnya.",
+	"Tools Public Sharing": "",
 	"Top K": "'Top K'",
 	"Top K": "'Top K'",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "'Top P'",
 	"Top P": "'Top P'",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "Aktiver nye registreringer",
 	"Enable New Sign Ups": "Aktiver nye registreringer",
 	"Enabled": "Aktivert",
 	"Enabled": "Aktivert",
+	"Enforce Temporary Chat": "",
 	"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",
@@ -569,6 +570,7 @@
 	"Hex Color": "Hex-farge",
 	"Hex Color": "Hex-farge",
 	"Hex Color - Leave empty for default color": "Hex-farge – la stå tom for standard farge",
 	"Hex Color - Leave empty for default color": "Hex-farge – la stå tom for standard farge",
 	"Hide": "Skjul",
 	"Hide": "Skjul",
+	"Hide Model": "",
 	"Home": "Hjem",
 	"Home": "Hjem",
 	"Host": "Host",
 	"Host": "Host",
 	"How can I help you today?": "Hva kan jeg hjelpe deg med i dag?",
 	"How can I help you today?": "Hva kan jeg hjelpe deg med i dag?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "Tilgang til kunnskap",
 	"Knowledge Access": "Tilgang til kunnskap",
 	"Knowledge created successfully.": "Kunnskap opprettet.",
 	"Knowledge created successfully.": "Kunnskap opprettet.",
 	"Knowledge deleted successfully.": "Kunnskap slettet.",
 	"Knowledge deleted successfully.": "Kunnskap slettet.",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "Tilbakestilling av kunnskap vellykket.",
 	"Knowledge reset successfully.": "Tilbakestilling av kunnskap vellykket.",
 	"Knowledge updated successfully": "Kunnskap oppdatert",
 	"Knowledge updated successfully": "Kunnskap oppdatert",
 	"Kokoro.js (Browser)": "Kokoro.js (nettleser)",
 	"Kokoro.js (Browser)": "Kokoro.js (nettleser)",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "Finner ikke modellen {{modelId}}",
 	"Model {{modelId}} not found": "Finner ikke modellen {{modelId}}",
 	"Model {{modelName}} is not vision capable": "Modellen {{modelName}} er ikke egnet til visuelle data",
 	"Model {{modelName}} is not vision capable": "Modellen {{modelName}} er ikke egnet til visuelle data",
 	"Model {{name}} is now {{status}}": "Modellen {{name}} er nå {{status}}",
 	"Model {{name}} is now {{status}}": "Modellen {{name}} er nå {{status}}",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "Modellen godtar bildeinndata",
 	"Model accepts image inputs": "Modellen godtar bildeinndata",
 	"Model created successfully!": "Modellen er opprettet!",
 	"Model created successfully!": "Modellen er opprettet!",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Modellfilsystembane oppdaget. Kan ikke fortsette fordi modellens kortnavn er påkrevd for oppdatering.",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Modellfilsystembane oppdaget. Kan ikke fortsette fordi modellens kortnavn er påkrevd for oppdatering.",
@@ -712,6 +717,7 @@
 	"Models": "Modeller",
 	"Models": "Modeller",
 	"Models Access": "Tilgang til modeller",
 	"Models Access": "Tilgang til modeller",
 	"Models configuration saved successfully": "Kofigurasjon av modeller er lagret",
 	"Models configuration saved successfully": "Kofigurasjon av modeller er lagret",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "API-nøekkel for Mojeek Search",
 	"Mojeek Search API Key": "API-nøekkel for Mojeek Search",
 	"more": "mer",
 	"more": "mer",
 	"More": "Mer",
 	"More": "Mer",
@@ -836,6 +842,7 @@
 	"Prompt updated successfully": "Ledetekst oppdatert",
 	"Prompt updated successfully": "Ledetekst oppdatert",
 	"Prompts": "Ledetekster",
 	"Prompts": "Ledetekster",
 	"Prompts Access": "Tilgang til ledetekster",
 	"Prompts Access": "Tilgang til ledetekster",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"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",
@@ -968,9 +975,11 @@
 	"Share": "Del",
 	"Share": "Del",
 	"Share Chat": "Del chat",
 	"Share Chat": "Del chat",
 	"Share to Open WebUI Community": "Del med OpenWebUI-fellesskapet",
 	"Share to Open WebUI Community": "Del med OpenWebUI-fellesskapet",
+	"Sharing Permissions": "",
 	"Show": "Vis",
 	"Show": "Vis",
 	"Show \"What's New\" modal on login": "Vis \"Hva er nytt\"-modal ved innlogging",
 	"Show \"What's New\" modal on login": "Vis \"Hva er nytt\"-modal ved innlogging",
 	"Show Admin Details in Account Pending Overlay": "Vis administratordetaljer i ventende kontovisning",
 	"Show Admin Details in Account Pending Overlay": "Vis administratordetaljer i ventende kontovisning",
+	"Show Model": "",
 	"Show shortcuts": "Vis snarveier",
 	"Show shortcuts": "Vis snarveier",
 	"Show your support!": "Vis din støtte!",
 	"Show your support!": "Vis din støtte!",
 	"Showcased creativity": "Fremhevet kreativitet",
 	"Showcased creativity": "Fremhevet kreativitet",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "Ledetekst for kalling av verktøyfunksjonen",
 	"Tools Function Calling Prompt": "Ledetekst for kalling av verktøyfunksjonen",
 	"Tools have a function calling system that allows arbitrary code execution": "Verktøy inneholder et funksjonskallsystem som tillater vilkårlig kodekjøring",
 	"Tools have a function calling system that allows arbitrary code execution": "Verktøy inneholder et funksjonskallsystem som tillater vilkårlig kodekjøring",
 	"Tools have a function calling system that allows arbitrary code execution.": "Verktøy inneholder et funksjonskallsystem som tillater vilkårlig kodekjøring.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Verktøy inneholder et funksjonskallsystem som tillater vilkårlig kodekjøring.",
+	"Tools Public Sharing": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "Top P",
 	"Top P": "Top P",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "Schakel nieuwe registraties in",
 	"Enable New Sign Ups": "Schakel nieuwe registraties in",
 	"Enabled": "Ingeschakeld",
 	"Enabled": "Ingeschakeld",
+	"Enforce Temporary Chat": "",
 	"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",
@@ -569,6 +570,7 @@
 	"Hex Color": "Hex-kleur",
 	"Hex Color": "Hex-kleur",
 	"Hex Color - Leave empty for default color": "Hex-kleur - laat leeg voor standaardkleur",
 	"Hex Color - Leave empty for default color": "Hex-kleur - laat leeg voor standaardkleur",
 	"Hide": "Verberg",
 	"Hide": "Verberg",
+	"Hide Model": "",
 	"Home": "",
 	"Home": "",
 	"Host": "Host",
 	"Host": "Host",
 	"How can I help you today?": "Hoe kan ik je vandaag helpen?",
 	"How can I help you today?": "Hoe kan ik je vandaag helpen?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "Kennistoegang",
 	"Knowledge Access": "Kennistoegang",
 	"Knowledge created successfully.": "Kennis succesvol aangemaakt",
 	"Knowledge created successfully.": "Kennis succesvol aangemaakt",
 	"Knowledge deleted successfully.": "Kennis succesvol verwijderd",
 	"Knowledge deleted successfully.": "Kennis succesvol verwijderd",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "Kennis succesvol gereset",
 	"Knowledge reset successfully.": "Kennis succesvol gereset",
 	"Knowledge updated successfully": "Kennis succesvol bijgewerkt",
 	"Knowledge updated successfully": "Kennis succesvol bijgewerkt",
 	"Kokoro.js (Browser)": "",
 	"Kokoro.js (Browser)": "",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "Model {{modelId}} niet gevonden",
 	"Model {{modelId}} not found": "Model {{modelId}} niet gevonden",
 	"Model {{modelName}} is not vision capable": "Model {{modelName}} is niet geschikt voor visie",
 	"Model {{modelName}} is not vision capable": "Model {{modelName}} is niet geschikt voor visie",
 	"Model {{name}} is now {{status}}": "Model {{name}} is nu {{status}}",
 	"Model {{name}} is now {{status}}": "Model {{name}} is nu {{status}}",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "Model accepteerd afbeeldingsinvoer",
 	"Model accepts image inputs": "Model accepteerd afbeeldingsinvoer",
 	"Model created successfully!": "Model succesvol gecreëerd",
 	"Model created successfully!": "Model succesvol gecreëerd",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Model filesystem path gedetecteerd. Model shortname is vereist voor update, kan niet doorgaan.",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Model filesystem path gedetecteerd. Model shortname is vereist voor update, kan niet doorgaan.",
@@ -712,6 +717,7 @@
 	"Models": "Modellen",
 	"Models": "Modellen",
 	"Models Access": "Modellentoegang",
 	"Models Access": "Modellentoegang",
 	"Models configuration saved successfully": "Modellenconfiguratie succeslvol opgeslagen",
 	"Models configuration saved successfully": "Modellenconfiguratie succeslvol opgeslagen",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "Mojeek Search API-sleutel",
 	"Mojeek Search API Key": "Mojeek Search API-sleutel",
 	"more": "Meer",
 	"more": "Meer",
 	"More": "Meer",
 	"More": "Meer",
@@ -836,6 +842,7 @@
 	"Prompt updated successfully": "Prompt succesvol bijgewerkt",
 	"Prompt updated successfully": "Prompt succesvol bijgewerkt",
 	"Prompts": "Prompts",
 	"Prompts": "Prompts",
 	"Prompts Access": "Prompttoegang",
 	"Prompts Access": "Prompttoegang",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"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",
@@ -968,9 +975,11 @@
 	"Share": "Delen",
 	"Share": "Delen",
 	"Share Chat": "Deel chat",
 	"Share Chat": "Deel chat",
 	"Share to Open WebUI Community": "Deel naar OpenWebUI-community",
 	"Share to Open WebUI Community": "Deel naar OpenWebUI-community",
+	"Sharing Permissions": "",
 	"Show": "Toon",
 	"Show": "Toon",
 	"Show \"What's New\" modal on login": "Toon \"Wat is nieuw\" bij inloggen",
 	"Show \"What's New\" modal on login": "Toon \"Wat is nieuw\" bij inloggen",
 	"Show Admin Details in Account Pending Overlay": "Admin-details weergeven in overlay in afwachting van account",
 	"Show Admin Details in Account Pending Overlay": "Admin-details weergeven in overlay in afwachting van account",
+	"Show Model": "",
 	"Show shortcuts": "Toon snelkoppelingen",
 	"Show shortcuts": "Toon snelkoppelingen",
 	"Show your support!": "Toon je steun",
 	"Show your support!": "Toon je steun",
 	"Showcased creativity": "Toonde creativiteit",
 	"Showcased creativity": "Toonde creativiteit",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "",
 	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "Gereedschappen hebben een systeem voor het aanroepen van functies waarmee willekeurige code kan worden uitgevoerd",
 	"Tools have a function calling system that allows arbitrary code execution": "Gereedschappen hebben een systeem voor het aanroepen van functies waarmee willekeurige code kan worden uitgevoerd",
 	"Tools have a function calling system that allows arbitrary code execution.": "Gereedschappen hebben een systeem voor het aanroepen van functies waarmee willekeurige code kan worden uitgevoerd",
 	"Tools have a function calling system that allows arbitrary code execution.": "Gereedschappen hebben een systeem voor het aanroepen van functies waarmee willekeurige code kan worden uitgevoerd",
+	"Tools Public Sharing": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "Top P",
 	"Top P": "Top P",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "ਨਵੇਂ ਸਾਈਨ ਅਪ ਯੋਗ ਕਰੋ",
 	"Enable New Sign Ups": "ਨਵੇਂ ਸਾਈਨ ਅਪ ਯੋਗ ਕਰੋ",
 	"Enabled": "",
 	"Enabled": "",
+	"Enforce Temporary Chat": "",
 	"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 ਨੂੰ ਸੁਨੇਹਾ ਕਰਨ ਲਈ ਸੁਨੇਹਾ ਇੱਥੇ ਦਰਜ ਕਰੋ",
@@ -569,6 +570,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "ਲੁਕਾਓ",
 	"Hide": "ਲੁਕਾਓ",
+	"Hide Model": "",
 	"Home": "",
 	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "ਮੈਂ ਅੱਜ ਤੁਹਾਡੀ ਕਿਵੇਂ ਮਦਦ ਕਰ ਸਕਦਾ ਹਾਂ?",
 	"How can I help you today?": "ਮੈਂ ਅੱਜ ਤੁਹਾਡੀ ਕਿਵੇਂ ਮਦਦ ਕਰ ਸਕਦਾ ਹਾਂ?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "",
 	"Knowledge Access": "",
 	"Knowledge created successfully.": "",
 	"Knowledge created successfully.": "",
 	"Knowledge deleted successfully.": "",
 	"Knowledge deleted successfully.": "",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
 	"Knowledge updated successfully": "",
 	"Kokoro.js (Browser)": "",
 	"Kokoro.js (Browser)": "",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "ਮਾਡਲ {{modelId}} ਨਹੀਂ ਮਿਲਿਆ",
 	"Model {{modelId}} not found": "ਮਾਡਲ {{modelId}} ਨਹੀਂ ਮਿਲਿਆ",
 	"Model {{modelName}} is not vision capable": "ਮਾਡਲ {{modelName}} ਦ੍ਰਿਸ਼ਟੀ ਸਮਰੱਥ ਨਹੀਂ ਹੈ",
 	"Model {{modelName}} is not vision capable": "ਮਾਡਲ {{modelName}} ਦ੍ਰਿਸ਼ਟੀ ਸਮਰੱਥ ਨਹੀਂ ਹੈ",
 	"Model {{name}} is now {{status}}": "ਮਾਡਲ {{name}} ਹੁਣ {{status}} ਹੈ",
 	"Model {{name}} is now {{status}}": "ਮਾਡਲ {{name}} ਹੁਣ {{status}} ਹੈ",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "",
 	"Model accepts image inputs": "",
 	"Model created successfully!": "",
 	"Model created successfully!": "",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "ਮਾਡਲ ਫਾਈਲਸਿਸਟਮ ਪੱਥ ਪਾਇਆ ਗਿਆ। ਅੱਪਡੇਟ ਲਈ ਮਾਡਲ ਸ਼ੌਰਟਨੇਮ ਦੀ ਲੋੜ ਹੈ, ਜਾਰੀ ਨਹੀਂ ਰੱਖ ਸਕਦੇ।",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "ਮਾਡਲ ਫਾਈਲਸਿਸਟਮ ਪੱਥ ਪਾਇਆ ਗਿਆ। ਅੱਪਡੇਟ ਲਈ ਮਾਡਲ ਸ਼ੌਰਟਨੇਮ ਦੀ ਲੋੜ ਹੈ, ਜਾਰੀ ਨਹੀਂ ਰੱਖ ਸਕਦੇ।",
@@ -712,6 +717,7 @@
 	"Models": "ਮਾਡਲ",
 	"Models": "ਮਾਡਲ",
 	"Models Access": "",
 	"Models Access": "",
 	"Models configuration saved successfully": "",
 	"Models configuration saved successfully": "",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "",
 	"Mojeek Search API Key": "",
 	"more": "",
 	"more": "",
 	"More": "ਹੋਰ",
 	"More": "ਹੋਰ",
@@ -836,6 +842,7 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "ਪ੍ਰੰਪਟ",
 	"Prompts": "ਪ੍ਰੰਪਟ",
 	"Prompts Access": "",
 	"Prompts Access": "",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "ਓਲਾਮਾ.ਕਾਮ ਤੋਂ \"{{searchValue}}\" ਖਿੱਚੋ",
 	"Pull \"{{searchValue}}\" from Ollama.com": "ਓਲਾਮਾ.ਕਾਮ ਤੋਂ \"{{searchValue}}\" ਖਿੱਚੋ",
 	"Pull a model from Ollama.com": "ਓਲਾਮਾ.ਕਾਮ ਤੋਂ ਇੱਕ ਮਾਡਲ ਖਿੱਚੋ",
 	"Pull a model from Ollama.com": "ਓਲਾਮਾ.ਕਾਮ ਤੋਂ ਇੱਕ ਮਾਡਲ ਖਿੱਚੋ",
@@ -968,9 +975,11 @@
 	"Share": "ਸਾਂਝਾ ਕਰੋ",
 	"Share": "ਸਾਂਝਾ ਕਰੋ",
 	"Share Chat": "ਗੱਲਬਾਤ ਸਾਂਝੀ ਕਰੋ",
 	"Share Chat": "ਗੱਲਬਾਤ ਸਾਂਝੀ ਕਰੋ",
 	"Share to Open WebUI Community": "ਓਪਨਵੈਬਯੂਆਈ ਕਮਿਊਨਿਟੀ ਨਾਲ ਸਾਂਝਾ ਕਰੋ",
 	"Share to Open WebUI Community": "ਓਪਨਵੈਬਯੂਆਈ ਕਮਿਊਨਿਟੀ ਨਾਲ ਸਾਂਝਾ ਕਰੋ",
+	"Sharing Permissions": "",
 	"Show": "ਦਿਖਾਓ",
 	"Show": "ਦਿਖਾਓ",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "",
 	"Show Admin Details in Account Pending Overlay": "",
+	"Show Model": "",
 	"Show shortcuts": "ਸ਼ਾਰਟਕਟ ਦਿਖਾਓ",
 	"Show shortcuts": "ਸ਼ਾਰਟਕਟ ਦਿਖਾਓ",
 	"Show your support!": "",
 	"Show your support!": "",
 	"Showcased creativity": "ਸਿਰਜਣਾਤਮਕਤਾ ਦਿਖਾਈ",
 	"Showcased creativity": "ਸਿਰਜਣਾਤਮਕਤਾ ਦਿਖਾਈ",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "",
 	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
+	"Tools Public Sharing": "",
 	"Top K": "ਸਿਖਰ K",
 	"Top K": "ਸਿਖਰ K",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "ਸਿਖਰ P",
 	"Top P": "ਸਿਖਰ P",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "Włącz nowe rejestracje",
 	"Enable New Sign Ups": "Włącz nowe rejestracje",
 	"Enabled": "Włączone",
 	"Enabled": "Włączone",
+	"Enforce Temporary Chat": "",
 	"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ć.",
@@ -569,6 +570,7 @@
 	"Hex Color": "Kolor heksadecymalny",
 	"Hex Color": "Kolor heksadecymalny",
 	"Hex Color - Leave empty for default color": "Kolor heksadecymalny - pozostaw puste dla domyślnego koloru",
 	"Hex Color - Leave empty for default color": "Kolor heksadecymalny - pozostaw puste dla domyślnego koloru",
 	"Hide": "Ukryj",
 	"Hide": "Ukryj",
+	"Hide Model": "",
 	"Home": "Dom",
 	"Home": "Dom",
 	"Host": "Serwer",
 	"Host": "Serwer",
 	"How can I help you today?": "Jak mogę Ci dzisiaj pomóc?",
 	"How can I help you today?": "Jak mogę Ci dzisiaj pomóc?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "Dostęp do wiedzy",
 	"Knowledge Access": "Dostęp do wiedzy",
 	"Knowledge created successfully.": "Pomyślnie utworzona wiedza.",
 	"Knowledge created successfully.": "Pomyślnie utworzona wiedza.",
 	"Knowledge deleted successfully.": "Wiedza została usunięta pomyślnie.",
 	"Knowledge deleted successfully.": "Wiedza została usunięta pomyślnie.",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "Pomyślnie zresetowano wiedzę.",
 	"Knowledge reset successfully.": "Pomyślnie zresetowano wiedzę.",
 	"Knowledge updated successfully": "Wiedza zaktualizowana pomyślnie",
 	"Knowledge updated successfully": "Wiedza zaktualizowana pomyślnie",
 	"Kokoro.js (Browser)": "Kokoro.js (Przeglądarka)",
 	"Kokoro.js (Browser)": "Kokoro.js (Przeglądarka)",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "Model o identyfikatorze {{modelId}} nie został znaleziony.",
 	"Model {{modelId}} not found": "Model o identyfikatorze {{modelId}} nie został znaleziony.",
 	"Model {{modelName}} is not vision capable": "Model {{modelName}} nie jest zdolny do widzenia",
 	"Model {{modelName}} is not vision capable": "Model {{modelName}} nie jest zdolny do widzenia",
 	"Model {{name}} is now {{status}}": "Model {{name}} jest teraz {{status}}",
 	"Model {{name}} is now {{status}}": "Model {{name}} jest teraz {{status}}",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "Model przyjmuje wejścia obrazowe",
 	"Model accepts image inputs": "Model przyjmuje wejścia obrazowe",
 	"Model created successfully!": "Model utworzony pomyślnie!",
 	"Model created successfully!": "Model utworzony pomyślnie!",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Wykryto ścieżkę systemu plików modelu. Podanie krótkiej nazwy modelu jest wymagane do aktualizacji, nie można kontynuować.",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Wykryto ścieżkę systemu plików modelu. Podanie krótkiej nazwy modelu jest wymagane do aktualizacji, nie można kontynuować.",
@@ -712,6 +717,7 @@
 	"Models": "Modele",
 	"Models": "Modele",
 	"Models Access": "Dostęp do modeli",
 	"Models Access": "Dostęp do modeli",
 	"Models configuration saved successfully": "Konfiguracja modeli została zapisana pomyślnie",
 	"Models configuration saved successfully": "Konfiguracja modeli została zapisana pomyślnie",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "Klucz API Mojeek Search",
 	"Mojeek Search API Key": "Klucz API Mojeek Search",
 	"more": "więcej",
 	"more": "więcej",
 	"More": "Więcej",
 	"More": "Więcej",
@@ -836,6 +842,7 @@
 	"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",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"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",
@@ -968,9 +975,11 @@
 	"Share": "Podziel się",
 	"Share": "Podziel się",
 	"Share Chat": "Udostępnij rozmowę",
 	"Share Chat": "Udostępnij rozmowę",
 	"Share to Open WebUI Community": "Udostępnij w społeczności OpenWebUI",
 	"Share to Open WebUI Community": "Udostępnij w społeczności OpenWebUI",
+	"Sharing Permissions": "",
 	"Show": "Wyświetl",
 	"Show": "Wyświetl",
 	"Show \"What's New\" modal on login": "Wyświetl okno dialogowe \"What's New\" podczas logowania",
 	"Show \"What's New\" modal on login": "Wyświetl okno dialogowe \"What's New\" podczas logowania",
 	"Show Admin Details in Account Pending Overlay": "Wyświetl szczegóły administratora w okienu informacyjnym o potrzebie zatwierdzenia przez administratora konta użytkownika",
 	"Show Admin Details in Account Pending Overlay": "Wyświetl szczegóły administratora w okienu informacyjnym o potrzebie zatwierdzenia przez administratora konta użytkownika",
+	"Show Model": "",
 	"Show shortcuts": "Wyświetl skróty",
 	"Show shortcuts": "Wyświetl skróty",
 	"Show your support!": "Wyraź swoje poparcie!",
 	"Show your support!": "Wyraź swoje poparcie!",
 	"Showcased creativity": "Prezentacja kreatywności",
 	"Showcased creativity": "Prezentacja kreatywności",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "Narzędzia Funkcja Wywołania Prompta",
 	"Tools Function Calling Prompt": "Narzędzia Funkcja Wywołania Prompta",
 	"Tools have a function calling system that allows arbitrary code execution": "Narzędzia mają funkcję wywoływania systemu, która umożliwia wykonywanie dowolnego kodu",
 	"Tools have a function calling system that allows arbitrary code execution": "Narzędzia mają funkcję wywoływania systemu, która umożliwia wykonywanie dowolnego kodu",
 	"Tools have a function calling system that allows arbitrary code execution.": "Narzędzia mają funkcję wywoływania systemu, która umożliwia wykonanie dowolnego kodu.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Narzędzia mają funkcję wywoływania systemu, która umożliwia wykonanie dowolnego kodu.",
+	"Tools Public Sharing": "",
 	"Top K": "Najlepsze K",
 	"Top K": "Najlepsze K",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "Najlepsze P",
 	"Top P": "Najlepsze P",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "Ativar Novos Cadastros",
 	"Enable New Sign Ups": "Ativar Novos Cadastros",
 	"Enabled": "Ativado",
 	"Enabled": "Ativado",
+	"Enforce Temporary Chat": "",
 	"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",
@@ -569,6 +570,7 @@
 	"Hex Color": "Cor hexadecimal",
 	"Hex Color": "Cor hexadecimal",
 	"Hex Color - Leave empty for default color": "Cor Hexadecimal - Deixe em branco para a cor padrão",
 	"Hex Color - Leave empty for default color": "Cor Hexadecimal - Deixe em branco para a cor padrão",
 	"Hide": "Ocultar",
 	"Hide": "Ocultar",
+	"Hide Model": "",
 	"Home": "",
 	"Home": "",
 	"Host": "Servidor",
 	"Host": "Servidor",
 	"How can I help you today?": "Como posso ajudar você hoje?",
 	"How can I help you today?": "Como posso ajudar você hoje?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "Acesso ao Conhecimento",
 	"Knowledge Access": "Acesso ao Conhecimento",
 	"Knowledge created successfully.": "Conhecimento criado com sucesso.",
 	"Knowledge created successfully.": "Conhecimento criado com sucesso.",
 	"Knowledge deleted successfully.": "Conhecimento excluído com sucesso.",
 	"Knowledge deleted successfully.": "Conhecimento excluído com sucesso.",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "Conhecimento resetado com sucesso.",
 	"Knowledge reset successfully.": "Conhecimento resetado com sucesso.",
 	"Knowledge updated successfully": "Conhecimento atualizado com sucesso",
 	"Knowledge updated successfully": "Conhecimento atualizado com sucesso",
 	"Kokoro.js (Browser)": "",
 	"Kokoro.js (Browser)": "",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "Modelo {{modelId}} não encontrado",
 	"Model {{modelId}} not found": "Modelo {{modelId}} não encontrado",
 	"Model {{modelName}} is not vision capable": "Modelo {{modelName}} não é capaz de visão",
 	"Model {{modelName}} is not vision capable": "Modelo {{modelName}} não é capaz de visão",
 	"Model {{name}} is now {{status}}": "Modelo {{name}} está agora {{status}}",
 	"Model {{name}} is now {{status}}": "Modelo {{name}} está agora {{status}}",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "Modelo aceita entradas de imagens",
 	"Model accepts image inputs": "Modelo aceita entradas de imagens",
 	"Model created successfully!": "Modelo criado com sucesso!",
 	"Model created successfully!": "Modelo criado com sucesso!",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Caminho do sistema de arquivos do modelo detectado. Nome curto do modelo é necessário para atualização, não é possível continuar.",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Caminho do sistema de arquivos do modelo detectado. Nome curto do modelo é necessário para atualização, não é possível continuar.",
@@ -712,6 +717,7 @@
 	"Models": "Modelos",
 	"Models": "Modelos",
 	"Models Access": "Acesso aos Modelos",
 	"Models Access": "Acesso aos Modelos",
 	"Models configuration saved successfully": "",
 	"Models configuration saved successfully": "",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "Chave de API Mojeel Search",
 	"Mojeek Search API Key": "Chave de API Mojeel Search",
 	"more": "mais",
 	"more": "mais",
 	"More": "Mais",
 	"More": "Mais",
@@ -836,6 +842,7 @@
 	"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",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"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",
@@ -968,9 +975,11 @@
 	"Share": "Compartilhar",
 	"Share": "Compartilhar",
 	"Share Chat": "Compartilhar Chat",
 	"Share Chat": "Compartilhar Chat",
 	"Share to Open WebUI Community": "Compartilhar com a Comunidade OpenWebUI",
 	"Share to Open WebUI Community": "Compartilhar com a Comunidade OpenWebUI",
+	"Sharing Permissions": "",
 	"Show": "Mostrar",
 	"Show": "Mostrar",
 	"Show \"What's New\" modal on login": "Mostrar \"O que há de Novo\" no login",
 	"Show \"What's New\" modal on login": "Mostrar \"O que há de Novo\" no login",
 	"Show Admin Details in Account Pending Overlay": "Mostrar Detalhes do Administrador na Sobreposição de Conta Pendentes",
 	"Show Admin Details in Account Pending Overlay": "Mostrar Detalhes do Administrador na Sobreposição de Conta Pendentes",
+	"Show Model": "",
 	"Show shortcuts": "Mostrar atalhos",
 	"Show shortcuts": "Mostrar atalhos",
 	"Show your support!": "Mostre seu apoio!",
 	"Show your support!": "Mostre seu apoio!",
 	"Showcased creativity": "Criatividade exibida",
 	"Showcased creativity": "Criatividade exibida",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "",
 	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "Ferramentas possuem um sistema de chamada de funções que permite a execução de código arbitrário",
 	"Tools have a function calling system that allows arbitrary code execution": "Ferramentas possuem um sistema de chamada de funções que permite a execução de código arbitrário",
 	"Tools have a function calling system that allows arbitrary code execution.": "Ferramentas possuem um sistema de chamada de funções que permite a execução de código arbitrário.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Ferramentas possuem um sistema de chamada de funções que permite a execução de código arbitrário.",
+	"Tools Public Sharing": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "Top P",
 	"Top P": "Top P",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "Ativar Novas Inscrições",
 	"Enable New Sign Ups": "Ativar Novas Inscrições",
 	"Enabled": "",
 	"Enabled": "",
+	"Enforce Temporary Chat": "",
 	"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",
@@ -569,6 +570,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "Ocultar",
 	"Hide": "Ocultar",
+	"Hide Model": "",
 	"Home": "",
 	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "Como posso ajudá-lo hoje?",
 	"How can I help you today?": "Como posso ajudá-lo hoje?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "",
 	"Knowledge Access": "",
 	"Knowledge created successfully.": "",
 	"Knowledge created successfully.": "",
 	"Knowledge deleted successfully.": "",
 	"Knowledge deleted successfully.": "",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
 	"Knowledge updated successfully": "",
 	"Kokoro.js (Browser)": "",
 	"Kokoro.js (Browser)": "",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "Modelo {{modelId}} não foi encontrado",
 	"Model {{modelId}} not found": "Modelo {{modelId}} não foi encontrado",
 	"Model {{modelName}} is not vision capable": "O modelo {{modelName}} não é capaz de visão",
 	"Model {{modelName}} is not vision capable": "O modelo {{modelName}} não é capaz de visão",
 	"Model {{name}} is now {{status}}": "Modelo {{name}} agora é {{status}}",
 	"Model {{name}} is now {{status}}": "Modelo {{name}} agora é {{status}}",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "",
 	"Model accepts image inputs": "",
 	"Model created successfully!": "",
 	"Model created successfully!": "",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Dtectado caminho do sistema de ficheiros do modelo. É necessário o nome curto do modelo para atualização, não é possível continuar.",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Dtectado caminho do sistema de ficheiros do modelo. É necessário o nome curto do modelo para atualização, não é possível continuar.",
@@ -712,6 +717,7 @@
 	"Models": "Modelos",
 	"Models": "Modelos",
 	"Models Access": "",
 	"Models Access": "",
 	"Models configuration saved successfully": "",
 	"Models configuration saved successfully": "",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "",
 	"Mojeek Search API Key": "",
 	"more": "",
 	"more": "",
 	"More": "Mais",
 	"More": "Mais",
@@ -836,6 +842,7 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "Prompts",
 	"Prompts": "Prompts",
 	"Prompts Access": "",
 	"Prompts Access": "",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"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",
@@ -968,9 +975,11 @@
 	"Share": "Partilhar",
 	"Share": "Partilhar",
 	"Share Chat": "Partilhar Conversa",
 	"Share Chat": "Partilhar Conversa",
 	"Share to Open WebUI Community": "Partilhar com a Comunidade OpenWebUI",
 	"Share to Open WebUI Community": "Partilhar com a Comunidade OpenWebUI",
+	"Sharing Permissions": "",
 	"Show": "Mostrar",
 	"Show": "Mostrar",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "Mostrar Detalhes do Administrador na sobreposição de Conta Pendente",
 	"Show Admin Details in Account Pending Overlay": "Mostrar Detalhes do Administrador na sobreposição de Conta Pendente",
+	"Show Model": "",
 	"Show shortcuts": "Mostrar atalhos",
 	"Show shortcuts": "Mostrar atalhos",
 	"Show your support!": "",
 	"Show your support!": "",
 	"Showcased creativity": "Criatividade Exibida",
 	"Showcased creativity": "Criatividade Exibida",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "",
 	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
+	"Tools Public Sharing": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "Top P",
 	"Top P": "Top P",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "Activează Înscrierile Noi",
 	"Enable New Sign Ups": "Activează Înscrierile Noi",
 	"Enabled": "Activat",
 	"Enabled": "Activat",
+	"Enforce Temporary Chat": "",
 	"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ă",
@@ -569,6 +570,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "Ascunde",
 	"Hide": "Ascunde",
+	"Hide Model": "",
 	"Home": "",
 	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "Cum te pot ajuta astăzi?",
 	"How can I help you today?": "Cum te pot ajuta astăzi?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "",
 	"Knowledge Access": "",
 	"Knowledge created successfully.": "Cunoașterea a fost creată cu succes.",
 	"Knowledge created successfully.": "Cunoașterea a fost creată cu succes.",
 	"Knowledge deleted successfully.": "Cunoștințele au fost șterse cu succes.",
 	"Knowledge deleted successfully.": "Cunoștințele au fost șterse cu succes.",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "Resetarea cunoștințelor a fost efectuată cu succes.",
 	"Knowledge reset successfully.": "Resetarea cunoștințelor a fost efectuată cu succes.",
 	"Knowledge updated successfully": "Cunoașterea a fost actualizată cu succes",
 	"Knowledge updated successfully": "Cunoașterea a fost actualizată cu succes",
 	"Kokoro.js (Browser)": "",
 	"Kokoro.js (Browser)": "",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "Modelul {{modelId}} nu a fost găsit",
 	"Model {{modelId}} not found": "Modelul {{modelId}} nu a fost găsit",
 	"Model {{modelName}} is not vision capable": "Modelul {{modelName}} nu are capacități de viziune",
 	"Model {{modelName}} is not vision capable": "Modelul {{modelName}} nu are capacități de viziune",
 	"Model {{name}} is now {{status}}": "Modelul {{name}} este acum {{status}}",
 	"Model {{name}} is now {{status}}": "Modelul {{name}} este acum {{status}}",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "Modelul acceptă imagini ca intrări.",
 	"Model accepts image inputs": "Modelul acceptă imagini ca intrări.",
 	"Model created successfully!": "Modelul a fost creat cu succes!",
 	"Model created successfully!": "Modelul a fost creat cu succes!",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Calea sistemului de fișiere al modelului detectată. Este necesar numele scurt al modelului pentru actualizare, nu se poate continua.",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Calea sistemului de fișiere al modelului detectată. Este necesar numele scurt al modelului pentru actualizare, nu se poate continua.",
@@ -712,6 +717,7 @@
 	"Models": "Modele",
 	"Models": "Modele",
 	"Models Access": "",
 	"Models Access": "",
 	"Models configuration saved successfully": "",
 	"Models configuration saved successfully": "",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "",
 	"Mojeek Search API Key": "",
 	"more": "mai mult",
 	"more": "mai mult",
 	"More": "Mai multe",
 	"More": "Mai multe",
@@ -836,6 +842,7 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "Prompturi",
 	"Prompts": "Prompturi",
 	"Prompts Access": "",
 	"Prompts Access": "",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"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",
@@ -968,9 +975,11 @@
 	"Share": "Partajează",
 	"Share": "Partajează",
 	"Share Chat": "Partajează Conversația",
 	"Share Chat": "Partajează Conversația",
 	"Share to Open WebUI Community": "Partajează cu Comunitatea OpenWebUI",
 	"Share to Open WebUI Community": "Partajează cu Comunitatea OpenWebUI",
+	"Sharing Permissions": "",
 	"Show": "Afișează",
 	"Show": "Afișează",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "Afișează Detaliile Administratorului în Suprapunerea Contului În Așteptare",
 	"Show Admin Details in Account Pending Overlay": "Afișează Detaliile Administratorului în Suprapunerea Contului În Așteptare",
+	"Show Model": "",
 	"Show shortcuts": "Afișează scurtături",
 	"Show shortcuts": "Afișează scurtături",
 	"Show your support!": "Arată-ți susținerea!",
 	"Show your support!": "Arată-ți susținerea!",
 	"Showcased creativity": "Creativitate expusă",
 	"Showcased creativity": "Creativitate expusă",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "",
 	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "Instrumentele au un sistem de apelare a funcțiilor care permite executarea arbitrară a codului",
 	"Tools have a function calling system that allows arbitrary code execution": "Instrumentele au un sistem de apelare a funcțiilor care permite executarea arbitrară a codului",
 	"Tools have a function calling system that allows arbitrary code execution.": "Instrumentele au un sistem de apelare a funcțiilor care permite executarea arbitrară a codului.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Instrumentele au un sistem de apelare a funcțiilor care permite executarea arbitrară a codului.",
+	"Tools Public Sharing": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "Top P",
 	"Top P": "Top P",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "Включите выборку Mirostat для контроля путаницы.",
 	"Enable Mirostat sampling for controlling perplexity.": "Включите выборку Mirostat для контроля путаницы.",
 	"Enable New Sign Ups": "Разрешить новые регистрации",
 	"Enable New Sign Ups": "Разрешить новые регистрации",
 	"Enabled": "Включено",
 	"Enabled": "Включено",
+	"Enforce Temporary Chat": "",
 	"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 могли запомнить",
@@ -569,6 +570,7 @@
 	"Hex Color": "Цвет Hex",
 	"Hex Color": "Цвет Hex",
 	"Hex Color - Leave empty for default color": "Цвет Hex - оставьте пустым значение цвета по умолчанию",
 	"Hex Color - Leave empty for default color": "Цвет Hex - оставьте пустым значение цвета по умолчанию",
 	"Hide": "Скрыть",
 	"Hide": "Скрыть",
+	"Hide Model": "",
 	"Home": "Домой",
 	"Home": "Домой",
 	"Host": "Хост",
 	"Host": "Хост",
 	"How can I help you today?": "Чем я могу помочь вам сегодня?",
 	"How can I help you today?": "Чем я могу помочь вам сегодня?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "Доступ к Знаниям",
 	"Knowledge Access": "Доступ к Знаниям",
 	"Knowledge created successfully.": "Знания созданы успешно.",
 	"Knowledge created successfully.": "Знания созданы успешно.",
 	"Knowledge deleted successfully.": "Знания успешно удалены.",
 	"Knowledge deleted successfully.": "Знания успешно удалены.",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "Знания успешно сброшены.",
 	"Knowledge reset successfully.": "Знания успешно сброшены.",
 	"Knowledge updated successfully": "Знания успешно обновлены",
 	"Knowledge updated successfully": "Знания успешно обновлены",
 	"Kokoro.js (Browser)": "Kokoro.js (Браузер)",
 	"Kokoro.js (Browser)": "Kokoro.js (Браузер)",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "Модель {{modelId}} не найдена",
 	"Model {{modelId}} not found": "Модель {{modelId}} не найдена",
 	"Model {{modelName}} is not vision capable": "Модель {{modelName}} не поддерживает зрение",
 	"Model {{modelName}} is not vision capable": "Модель {{modelName}} не поддерживает зрение",
 	"Model {{name}} is now {{status}}": "Модель {{name}} теперь {{status}}",
 	"Model {{name}} is now {{status}}": "Модель {{name}} теперь {{status}}",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "Модель принимает изображения как входные данные",
 	"Model accepts image inputs": "Модель принимает изображения как входные данные",
 	"Model created successfully!": "Модель успешно создана!",
 	"Model created successfully!": "Модель успешно создана!",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Обнаружен путь к файловой системе модели. Для обновления требуется краткое имя модели, не удается продолжить.",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Обнаружен путь к файловой системе модели. Для обновления требуется краткое имя модели, не удается продолжить.",
@@ -712,6 +717,7 @@
 	"Models": "Модели",
 	"Models": "Модели",
 	"Models Access": "Доступ к Моделям",
 	"Models Access": "Доступ к Моделям",
 	"Models configuration saved successfully": "Конфигурация модели успешно сохранена.",
 	"Models configuration saved successfully": "Конфигурация модели успешно сохранена.",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "Ключ API для поиска Mojeek",
 	"Mojeek Search API Key": "Ключ API для поиска Mojeek",
 	"more": "больше",
 	"more": "больше",
 	"More": "Больше",
 	"More": "Больше",
@@ -836,6 +842,7 @@
 	"Prompt updated successfully": "Промпт успешно обновлён",
 	"Prompt updated successfully": "Промпт успешно обновлён",
 	"Prompts": "Промпты",
 	"Prompts": "Промпты",
 	"Prompts Access": "Доступ к промптам",
 	"Prompts Access": "Доступ к промптам",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"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",
@@ -968,9 +975,11 @@
 	"Share": "Поделиться",
 	"Share": "Поделиться",
 	"Share Chat": "Поделиться чатом",
 	"Share Chat": "Поделиться чатом",
 	"Share to Open WebUI Community": "Поделиться с сообществом OpenWebUI",
 	"Share to Open WebUI Community": "Поделиться с сообществом OpenWebUI",
+	"Sharing Permissions": "",
 	"Show": "Показать",
 	"Show": "Показать",
 	"Show \"What's New\" modal on login": "Показывать окно «Что нового» при входе в систему",
 	"Show \"What's New\" modal on login": "Показывать окно «Что нового» при входе в систему",
 	"Show Admin Details in Account Pending Overlay": "Показывать данные администратора в оверлее ожидающей учетной записи",
 	"Show Admin Details in Account Pending Overlay": "Показывать данные администратора в оверлее ожидающей учетной записи",
+	"Show Model": "",
 	"Show shortcuts": "Показать горячие клавиши",
 	"Show shortcuts": "Показать горячие клавиши",
 	"Show your support!": "Поддержите нас!",
 	"Show your support!": "Поддержите нас!",
 	"Showcased creativity": "Продемонстрирован творческий подход",
 	"Showcased creativity": "Продемонстрирован творческий подход",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "Промпт на вызов функции Инструменты",
 	"Tools Function Calling Prompt": "Промпт на вызов функции Инструменты",
 	"Tools have a function calling system that allows arbitrary code execution": "Инструменты имеют систему вызова функций, которая позволяет выполнять произвольный код",
 	"Tools have a function calling system that allows arbitrary code execution": "Инструменты имеют систему вызова функций, которая позволяет выполнять произвольный код",
 	"Tools have a function calling system that allows arbitrary code execution.": "Инструменты имеют систему вызова функций, которая позволяет выполнять произвольный код.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Инструменты имеют систему вызова функций, которая позволяет выполнять произвольный код.",
+	"Tools Public Sharing": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "Top P",
 	"Top P": "Top P",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "Povoliť nové registrácie",
 	"Enable New Sign Ups": "Povoliť nové registrácie",
 	"Enabled": "Povolené",
 	"Enabled": "Povolené",
+	"Enforce Temporary Chat": "",
 	"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ť.",
@@ -569,6 +570,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "Skryť",
 	"Hide": "Skryť",
+	"Hide Model": "",
 	"Home": "",
 	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "Ako vám môžem dnes pomôcť?",
 	"How can I help you today?": "Ako vám môžem dnes pomôcť?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "",
 	"Knowledge Access": "",
 	"Knowledge created successfully.": "Znalosť úspešne vytvorená.",
 	"Knowledge created successfully.": "Znalosť úspešne vytvorená.",
 	"Knowledge deleted successfully.": "Znalosti boli úspešne odstránené.",
 	"Knowledge deleted successfully.": "Znalosti boli úspešne odstránené.",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "Úspešné obnovenie znalostí.",
 	"Knowledge reset successfully.": "Úspešné obnovenie znalostí.",
 	"Knowledge updated successfully": "Znalosti úspešne aktualizované",
 	"Knowledge updated successfully": "Znalosti úspešne aktualizované",
 	"Kokoro.js (Browser)": "",
 	"Kokoro.js (Browser)": "",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "Model {{modelId}} nebol nájdený",
 	"Model {{modelId}} not found": "Model {{modelId}} nebol nájdený",
 	"Model {{modelName}} is not vision capable": "Model {{modelName}} nie je schopný spracovávať vizuálne údaje.",
 	"Model {{modelName}} is not vision capable": "Model {{modelName}} nie je schopný spracovávať vizuálne údaje.",
 	"Model {{name}} is now {{status}}": "Model {{name}} je teraz {{status}}.",
 	"Model {{name}} is now {{status}}": "Model {{name}} je teraz {{status}}.",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "Model prijíma vstupy vo forme obrázkov",
 	"Model accepts image inputs": "Model prijíma vstupy vo forme obrázkov",
 	"Model created successfully!": "Model bol úspešne vytvorený!",
 	"Model created successfully!": "Model bol úspešne vytvorený!",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Zistená cesta v súborovom systéme. Je vyžadovaný krátky názov modelu pre aktualizáciu, nemožno pokračovať.",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Zistená cesta v súborovom systéme. Je vyžadovaný krátky názov modelu pre aktualizáciu, nemožno pokračovať.",
@@ -712,6 +717,7 @@
 	"Models": "Modely",
 	"Models": "Modely",
 	"Models Access": "",
 	"Models Access": "",
 	"Models configuration saved successfully": "",
 	"Models configuration saved successfully": "",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "",
 	"Mojeek Search API Key": "",
 	"more": "viac",
 	"more": "viac",
 	"More": "Viac",
 	"More": "Viac",
@@ -836,6 +842,7 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "Prompty",
 	"Prompts": "Prompty",
 	"Prompts Access": "",
 	"Prompts Access": "",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"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",
@@ -968,9 +975,11 @@
 	"Share": "Zdieľať",
 	"Share": "Zdieľať",
 	"Share Chat": "Zdieľať chat",
 	"Share Chat": "Zdieľať chat",
 	"Share to Open WebUI Community": "Zdieľať s komunitou OpenWebUI",
 	"Share to Open WebUI Community": "Zdieľať s komunitou OpenWebUI",
+	"Sharing Permissions": "",
 	"Show": "Zobraziť",
 	"Show": "Zobraziť",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "Zobraziť podrobnosti administrátora v prekryvnom okne s čakajúcim účtom",
 	"Show Admin Details in Account Pending Overlay": "Zobraziť podrobnosti administrátora v prekryvnom okne s čakajúcim účtom",
+	"Show Model": "",
 	"Show shortcuts": "Zobraziť klávesové skratky",
 	"Show shortcuts": "Zobraziť klávesové skratky",
 	"Show your support!": "Vyjadrite svoju podporu!",
 	"Show your support!": "Vyjadrite svoju podporu!",
 	"Showcased creativity": "Predvedená kreativita",
 	"Showcased creativity": "Predvedená kreativita",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "",
 	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "Nástroje majú systém volania funkcií, ktorý umožňuje ľubovoľné spúšťanie kódu.",
 	"Tools have a function calling system that allows arbitrary code execution": "Nástroje majú systém volania funkcií, ktorý umožňuje ľubovoľné spúšťanie kódu.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Nástroje majú systém volania funkcií, ktorý umožňuje spúšťanie ľubovoľného kódu.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Nástroje majú systém volania funkcií, ktorý umožňuje spúšťanie ľubovoľného kódu.",
+	"Tools Public Sharing": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "Top P",
 	"Top P": "Top P",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "Омогући нове пријаве",
 	"Enable New Sign Ups": "Омогући нове пријаве",
 	"Enabled": "Омогућено",
 	"Enabled": "Омогућено",
+	"Enforce Temporary Chat": "",
 	"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 преузимати",
@@ -569,6 +570,7 @@
 	"Hex Color": "Хекс боја",
 	"Hex Color": "Хекс боја",
 	"Hex Color - Leave empty for default color": "Хекс боја (празно за подразумевано)",
 	"Hex Color - Leave empty for default color": "Хекс боја (празно за подразумевано)",
 	"Hide": "Сакриј",
 	"Hide": "Сакриј",
+	"Hide Model": "",
 	"Home": "",
 	"Home": "",
 	"Host": "Домаћин",
 	"Host": "Домаћин",
 	"How can I help you today?": "Како могу да вам помогнем данас?",
 	"How can I help you today?": "Како могу да вам помогнем данас?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "Приступ знању",
 	"Knowledge Access": "Приступ знању",
 	"Knowledge created successfully.": "",
 	"Knowledge created successfully.": "",
 	"Knowledge deleted successfully.": "",
 	"Knowledge deleted successfully.": "",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
 	"Knowledge updated successfully": "",
 	"Kokoro.js (Browser)": "",
 	"Kokoro.js (Browser)": "",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "Модел {{modelId}} није пронађен",
 	"Model {{modelId}} not found": "Модел {{modelId}} није пронађен",
 	"Model {{modelName}} is not vision capable": "Модел {{моделНаме}} није способан за вид",
 	"Model {{modelName}} is not vision capable": "Модел {{моделНаме}} није способан за вид",
 	"Model {{name}} is now {{status}}": "Модел {{наме}} је сада {{статус}}",
 	"Model {{name}} is now {{status}}": "Модел {{наме}} је сада {{статус}}",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "",
 	"Model accepts image inputs": "",
 	"Model created successfully!": "",
 	"Model created successfully!": "",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Откривена путања система датотека модела. За ажурирање је потребан кратак назив модела, не може се наставити.",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Откривена путања система датотека модела. За ажурирање је потребан кратак назив модела, не може се наставити.",
@@ -712,6 +717,7 @@
 	"Models": "Модели",
 	"Models": "Модели",
 	"Models Access": "",
 	"Models Access": "",
 	"Models configuration saved successfully": "",
 	"Models configuration saved successfully": "",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "",
 	"Mojeek Search API Key": "",
 	"more": "више",
 	"more": "више",
 	"More": "Више",
 	"More": "Више",
@@ -836,6 +842,7 @@
 	"Prompt updated successfully": "Упит измењен успешно",
 	"Prompt updated successfully": "Упит измењен успешно",
 	"Prompts": "Упити",
 	"Prompts": "Упити",
 	"Prompts Access": "Приступ упитима",
 	"Prompts Access": "Приступ упитима",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"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",
@@ -968,9 +975,11 @@
 	"Share": "Подели",
 	"Share": "Подели",
 	"Share Chat": "Подели ћаскање",
 	"Share Chat": "Подели ћаскање",
 	"Share to Open WebUI Community": "Подели са OpenWebUI заједницом",
 	"Share to Open WebUI Community": "Подели са OpenWebUI заједницом",
+	"Sharing Permissions": "",
 	"Show": "Прикажи",
 	"Show": "Прикажи",
 	"Show \"What's New\" modal on login": "Прикажи \"Погледај шта је ново\" прозорче при пријави",
 	"Show \"What's New\" modal on login": "Прикажи \"Погледај шта је ново\" прозорче при пријави",
 	"Show Admin Details in Account Pending Overlay": "",
 	"Show Admin Details in Account Pending Overlay": "",
+	"Show Model": "",
 	"Show shortcuts": "Прикажи пречице",
 	"Show shortcuts": "Прикажи пречице",
 	"Show your support!": "",
 	"Show your support!": "",
 	"Showcased creativity": "Приказана креативност",
 	"Showcased creativity": "Приказана креативност",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "",
 	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
+	"Tools Public Sharing": "",
 	"Top K": "Топ К",
 	"Top K": "Топ К",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "Топ П",
 	"Top P": "Топ П",

+ 10 - 0
src/lib/i18n/locales/sv-SE/translation.json

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "Aktivera nya registreringar",
 	"Enable New Sign Ups": "Aktivera nya registreringar",
 	"Enabled": "",
 	"Enabled": "",
+	"Enforce Temporary Chat": "",
 	"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",
@@ -569,6 +570,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "Dölj",
 	"Hide": "Dölj",
+	"Hide Model": "",
 	"Home": "",
 	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "Hur kan jag hjälpa dig idag?",
 	"How can I help you today?": "Hur kan jag hjälpa dig idag?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "",
 	"Knowledge Access": "",
 	"Knowledge created successfully.": "",
 	"Knowledge created successfully.": "",
 	"Knowledge deleted successfully.": "",
 	"Knowledge deleted successfully.": "",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
 	"Knowledge updated successfully": "",
 	"Kokoro.js (Browser)": "",
 	"Kokoro.js (Browser)": "",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "Modell {{modelId}} hittades inte",
 	"Model {{modelId}} not found": "Modell {{modelId}} hittades inte",
 	"Model {{modelName}} is not vision capable": "Modellen {{modelName}} är inte synkapabel",
 	"Model {{modelName}} is not vision capable": "Modellen {{modelName}} är inte synkapabel",
 	"Model {{name}} is now {{status}}": "Modellen {{name}} är nu {{status}}",
 	"Model {{name}} is now {{status}}": "Modellen {{name}} är nu {{status}}",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "",
 	"Model accepts image inputs": "",
 	"Model created successfully!": "",
 	"Model created successfully!": "",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Modellens filsystemväg upptäckt. Modellens kortnamn krävs för uppdatering, kan inte fortsätta.",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Modellens filsystemväg upptäckt. Modellens kortnamn krävs för uppdatering, kan inte fortsätta.",
@@ -712,6 +717,7 @@
 	"Models": "Modeller",
 	"Models": "Modeller",
 	"Models Access": "",
 	"Models Access": "",
 	"Models configuration saved successfully": "",
 	"Models configuration saved successfully": "",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "",
 	"Mojeek Search API Key": "",
 	"more": "",
 	"more": "",
 	"More": "Mer",
 	"More": "Mer",
@@ -836,6 +842,7 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "Instruktioner",
 	"Prompts": "Instruktioner",
 	"Prompts Access": "",
 	"Prompts Access": "",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"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",
@@ -968,9 +975,11 @@
 	"Share": "Dela",
 	"Share": "Dela",
 	"Share Chat": "Dela chatt",
 	"Share Chat": "Dela chatt",
 	"Share to Open WebUI Community": "Dela till OpenWebUI Community",
 	"Share to Open WebUI Community": "Dela till OpenWebUI Community",
+	"Sharing Permissions": "",
 	"Show": "Visa",
 	"Show": "Visa",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "Visa administratörsinformation till väntande konton",
 	"Show Admin Details in Account Pending Overlay": "Visa administratörsinformation till väntande konton",
+	"Show Model": "",
 	"Show shortcuts": "Visa genvägar",
 	"Show shortcuts": "Visa genvägar",
 	"Show your support!": "Visa ditt stöd!",
 	"Show your support!": "Visa ditt stöd!",
 	"Showcased creativity": "Visade kreativitet",
 	"Showcased creativity": "Visade kreativitet",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "Prompt för anrop av verktygsfunktion:",
 	"Tools Function Calling Prompt": "Prompt för anrop av verktygsfunktion:",
 	"Tools have a function calling system that allows arbitrary code execution": "Verktyg har ett funktionsanropssystem som tillåter godtycklig kodkörning",
 	"Tools have a function calling system that allows arbitrary code execution": "Verktyg har ett funktionsanropssystem som tillåter godtycklig kodkörning",
 	"Tools have a function calling system that allows arbitrary code execution.": "Verktyg har ett funktionsanropssystem som tillåter godtycklig kodkörning",
 	"Tools have a function calling system that allows arbitrary code execution.": "Verktyg har ett funktionsanropssystem som tillåter godtycklig kodkörning",
+	"Tools Public Sharing": "",
 	"Top K": "Topp K",
 	"Top K": "Topp K",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "Topp P",
 	"Top P": "Topp P",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "เปิดใช้งานการสมัครใหม่",
 	"Enable New Sign Ups": "เปิดใช้งานการสมัครใหม่",
 	"Enabled": "เปิดใช้งาน",
 	"Enabled": "เปิดใช้งาน",
+	"Enforce Temporary Chat": "",
 	"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 ของคุณให้จดจำ",
@@ -569,6 +570,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "ซ่อน",
 	"Hide": "ซ่อน",
+	"Hide Model": "",
 	"Home": "",
 	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "วันนี้ฉันจะช่วยอะไรคุณได้บ้าง?",
 	"How can I help you today?": "วันนี้ฉันจะช่วยอะไรคุณได้บ้าง?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "",
 	"Knowledge Access": "",
 	"Knowledge created successfully.": "",
 	"Knowledge created successfully.": "",
 	"Knowledge deleted successfully.": "",
 	"Knowledge deleted successfully.": "",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
 	"Knowledge updated successfully": "",
 	"Kokoro.js (Browser)": "",
 	"Kokoro.js (Browser)": "",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "ไม่พบโมเดล {{modelId}}",
 	"Model {{modelId}} not found": "ไม่พบโมเดล {{modelId}}",
 	"Model {{modelName}} is not vision capable": "โมเดล {{modelName}} ไม่มีคุณสมบัติวิสชั่น",
 	"Model {{modelName}} is not vision capable": "โมเดล {{modelName}} ไม่มีคุณสมบัติวิสชั่น",
 	"Model {{name}} is now {{status}}": "โมเดล {{name}} ขณะนี้ {{status}}",
 	"Model {{name}} is now {{status}}": "โมเดล {{name}} ขณะนี้ {{status}}",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "",
 	"Model accepts image inputs": "",
 	"Model created successfully!": "สร้างโมเดลสำเร็จ!",
 	"Model created successfully!": "สร้างโมเดลสำเร็จ!",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "ตรวจพบเส้นทางระบบไฟล์ของโมเดล ต้องการชื่อย่อของโมเดลสำหรับการอัปเดต ไม่สามารถดำเนินการต่อได้",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "ตรวจพบเส้นทางระบบไฟล์ของโมเดล ต้องการชื่อย่อของโมเดลสำหรับการอัปเดต ไม่สามารถดำเนินการต่อได้",
@@ -712,6 +717,7 @@
 	"Models": "โมเดล",
 	"Models": "โมเดล",
 	"Models Access": "",
 	"Models Access": "",
 	"Models configuration saved successfully": "",
 	"Models configuration saved successfully": "",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "",
 	"Mojeek Search API Key": "",
 	"more": "",
 	"more": "",
 	"More": "เพิ่มเติม",
 	"More": "เพิ่มเติม",
@@ -836,6 +842,7 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "พรอมต์",
 	"Prompts": "พรอมต์",
 	"Prompts Access": "",
 	"Prompts Access": "",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull a model from Ollama.com": "",
 	"Pull a model from Ollama.com": "",
@@ -968,9 +975,11 @@
 	"Share": "แชร์",
 	"Share": "แชร์",
 	"Share Chat": "แชร์แชท",
 	"Share Chat": "แชร์แชท",
 	"Share to Open WebUI Community": "แชร์ไปยังชุมชน OpenWebUI",
 	"Share to Open WebUI Community": "แชร์ไปยังชุมชน OpenWebUI",
+	"Sharing Permissions": "",
 	"Show": "แสดง",
 	"Show": "แสดง",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "แสดงรายละเอียดผู้ดูแลระบบในหน้าจอรอการอนุมัติบัญชี",
 	"Show Admin Details in Account Pending Overlay": "แสดงรายละเอียดผู้ดูแลระบบในหน้าจอรอการอนุมัติบัญชี",
+	"Show Model": "",
 	"Show shortcuts": "แสดงทางลัด",
 	"Show shortcuts": "แสดงทางลัด",
 	"Show your support!": "แสดงการสนับสนุนของคุณ!",
 	"Show your support!": "แสดงการสนับสนุนของคุณ!",
 	"Showcased creativity": "แสดงความคิดสร้างสรรค์",
 	"Showcased creativity": "แสดงความคิดสร้างสรรค์",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "",
 	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "เครื่องมือมีระบบการเรียกใช้ฟังก์ชันที่สามารถดำเนินการโค้ดใดๆ ได้",
 	"Tools have a function calling system that allows arbitrary code execution": "เครื่องมือมีระบบการเรียกใช้ฟังก์ชันที่สามารถดำเนินการโค้ดใดๆ ได้",
 	"Tools have a function calling system that allows arbitrary code execution.": "เครื่องมือมีระบบการเรียกใช้ฟังก์ชันที่สามารถดำเนินการโค้ดใดๆ ได้",
 	"Tools have a function calling system that allows arbitrary code execution.": "เครื่องมือมีระบบการเรียกใช้ฟังก์ชันที่สามารถดำเนินการโค้ดใดๆ ได้",
+	"Tools Public Sharing": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "Top P",
 	"Top P": "Top P",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "",
 	"Enable New Sign Ups": "",
 	"Enabled": "",
 	"Enabled": "",
+	"Enforce Temporary Chat": "",
 	"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": "",
@@ -569,6 +570,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "",
 	"Hide": "",
+	"Hide Model": "",
 	"Home": "",
 	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "",
 	"How can I help you today?": "",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "",
 	"Knowledge Access": "",
 	"Knowledge created successfully.": "",
 	"Knowledge created successfully.": "",
 	"Knowledge deleted successfully.": "",
 	"Knowledge deleted successfully.": "",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
 	"Knowledge updated successfully": "",
 	"Kokoro.js (Browser)": "",
 	"Kokoro.js (Browser)": "",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "",
 	"Model {{modelId}} not found": "",
 	"Model {{modelName}} is not vision capable": "",
 	"Model {{modelName}} is not vision capable": "",
 	"Model {{name}} is now {{status}}": "",
 	"Model {{name}} is now {{status}}": "",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "",
 	"Model accepts image inputs": "",
 	"Model created successfully!": "",
 	"Model created successfully!": "",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "",
@@ -712,6 +717,7 @@
 	"Models": "",
 	"Models": "",
 	"Models Access": "",
 	"Models Access": "",
 	"Models configuration saved successfully": "",
 	"Models configuration saved successfully": "",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "",
 	"Mojeek Search API Key": "",
 	"more": "",
 	"more": "",
 	"More": "",
 	"More": "",
@@ -836,6 +842,7 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "",
 	"Prompts": "",
 	"Prompts Access": "",
 	"Prompts Access": "",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull a model from Ollama.com": "",
 	"Pull a model from Ollama.com": "",
@@ -968,9 +975,11 @@
 	"Share": "",
 	"Share": "",
 	"Share Chat": "",
 	"Share Chat": "",
 	"Share to Open WebUI Community": "",
 	"Share to Open WebUI Community": "",
+	"Sharing Permissions": "",
 	"Show": "",
 	"Show": "",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "",
 	"Show Admin Details in Account Pending Overlay": "",
+	"Show Model": "",
 	"Show shortcuts": "",
 	"Show shortcuts": "",
 	"Show your support!": "",
 	"Show your support!": "",
 	"Showcased creativity": "",
 	"Showcased creativity": "",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "",
 	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
+	"Tools Public Sharing": "",
 	"Top K": "",
 	"Top K": "",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "",
 	"Top P": "",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "Yeni Kayıtları Etkinleştir",
 	"Enable New Sign Ups": "Yeni Kayıtları Etkinleştir",
 	"Enabled": "Etkin",
 	"Enabled": "Etkin",
+	"Enforce Temporary Chat": "",
 	"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",
@@ -569,6 +570,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "Gizle",
 	"Hide": "Gizle",
+	"Hide Model": "",
 	"Home": "",
 	"Home": "",
 	"Host": "Ana bilgisayar",
 	"Host": "Ana bilgisayar",
 	"How can I help you today?": "Bugün size nasıl yardımcı olabilirim?",
 	"How can I help you today?": "Bugün size nasıl yardımcı olabilirim?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "Bilgi Erişimi",
 	"Knowledge Access": "Bilgi Erişimi",
 	"Knowledge created successfully.": "Bilgi başarıyla oluşturuldu.",
 	"Knowledge created successfully.": "Bilgi başarıyla oluşturuldu.",
 	"Knowledge deleted successfully.": "Bilgi başarıyla silindi.",
 	"Knowledge deleted successfully.": "Bilgi başarıyla silindi.",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "Bilgi başarıyla sıfırlandı.",
 	"Knowledge reset successfully.": "Bilgi başarıyla sıfırlandı.",
 	"Knowledge updated successfully": "Bilgi başarıyla güncellendi",
 	"Knowledge updated successfully": "Bilgi başarıyla güncellendi",
 	"Kokoro.js (Browser)": "",
 	"Kokoro.js (Browser)": "",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "{{modelId}} bulunamadı",
 	"Model {{modelId}} not found": "{{modelId}} bulunamadı",
 	"Model {{modelName}} is not vision capable": "Model {{modelName}} görüntü yeteneğine sahip değil",
 	"Model {{modelName}} is not vision capable": "Model {{modelName}} görüntü yeteneğine sahip değil",
 	"Model {{name}} is now {{status}}": "{{name}} modeli artık {{status}}",
 	"Model {{name}} is now {{status}}": "{{name}} modeli artık {{status}}",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "Model görüntü girdilerini kabul eder",
 	"Model accepts image inputs": "Model görüntü girdilerini kabul eder",
 	"Model created successfully!": "Model başarıyla oluşturuldu!",
 	"Model created successfully!": "Model başarıyla oluşturuldu!",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Model dosya sistemi yolu algılandı. Güncelleme için model kısa adı gerekli, devam edilemiyor.",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Model dosya sistemi yolu algılandı. Güncelleme için model kısa adı gerekli, devam edilemiyor.",
@@ -712,6 +717,7 @@
 	"Models": "Modeller",
 	"Models": "Modeller",
 	"Models Access": "Modellere Erişim",
 	"Models Access": "Modellere Erişim",
 	"Models configuration saved successfully": "Modellerin yapılandırması başarıyla kaydedildi",
 	"Models configuration saved successfully": "Modellerin yapılandırması başarıyla kaydedildi",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "Mojeek Search API Anahtarı",
 	"Mojeek Search API Key": "Mojeek Search API Anahtarı",
 	"more": "daha fazla",
 	"more": "daha fazla",
 	"More": "Daha Fazla",
 	"More": "Daha Fazla",
@@ -836,6 +842,7 @@
 	"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",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"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",
@@ -968,9 +975,11 @@
 	"Share": "Paylaş",
 	"Share": "Paylaş",
 	"Share Chat": "Sohbeti Paylaş",
 	"Share Chat": "Sohbeti Paylaş",
 	"Share to Open WebUI Community": "OpenWebUI Topluluğu ile Paylaş",
 	"Share to Open WebUI Community": "OpenWebUI Topluluğu ile Paylaş",
+	"Sharing Permissions": "",
 	"Show": "Göster",
 	"Show": "Göster",
 	"Show \"What's New\" modal on login": "Girişte \"Yenilikler\" modalını göster",
 	"Show \"What's New\" modal on login": "Girişte \"Yenilikler\" modalını göster",
 	"Show Admin Details in Account Pending Overlay": "Yönetici Ayrıntılarını Hesap Bekliyor Ekranında Göster",
 	"Show Admin Details in Account Pending Overlay": "Yönetici Ayrıntılarını Hesap Bekliyor Ekranında Göster",
+	"Show Model": "",
 	"Show shortcuts": "Kısayolları göster",
 	"Show shortcuts": "Kısayolları göster",
 	"Show your support!": "Desteğinizi gösterin!",
 	"Show your support!": "Desteğinizi gösterin!",
 	"Showcased creativity": "Sergilenen yaratıcılık",
 	"Showcased creativity": "Sergilenen yaratıcılık",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "",
 	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "Araçlar, keyfi kod yürütme izni veren bir fonksiyon çağırma sistemine sahiptir",
 	"Tools have a function calling system that allows arbitrary code execution": "Araçlar, keyfi kod yürütme izni veren bir fonksiyon çağırma sistemine sahiptir",
 	"Tools have a function calling system that allows arbitrary code execution.": "Araçlar, keyfi kod yürütme izni veren bir fonksiyon çağırma sistemine sahiptir.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Araçlar, keyfi kod yürütme izni veren bir fonksiyon çağırma sistemine sahiptir.",
+	"Tools Public Sharing": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "Top P",
 	"Top P": "Top P",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "Увімкнути вибірку Mirostat для контролю перплексії.",
 	"Enable Mirostat sampling for controlling perplexity.": "Увімкнути вибірку Mirostat для контролю перплексії.",
 	"Enable New Sign Ups": "Дозволити нові реєстрації",
 	"Enable New Sign Ups": "Дозволити нові реєстрації",
 	"Enabled": "Увімкнено",
 	"Enabled": "Увімкнено",
+	"Enforce Temporary Chat": "",
 	"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.",
@@ -569,6 +570,7 @@
 	"Hex Color": "Шістнадцятковий колір",
 	"Hex Color": "Шістнадцятковий колір",
 	"Hex Color - Leave empty for default color": "Шістнадцятковий колір — залиште порожнім для кольору за замовчуванням",
 	"Hex Color - Leave empty for default color": "Шістнадцятковий колір — залиште порожнім для кольору за замовчуванням",
 	"Hide": "Приховати",
 	"Hide": "Приховати",
+	"Hide Model": "",
 	"Home": "Головна",
 	"Home": "Головна",
 	"Host": "Хост",
 	"Host": "Хост",
 	"How can I help you today?": "Чим я можу допомогти вам сьогодні?",
 	"How can I help you today?": "Чим я можу допомогти вам сьогодні?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "Доступ до знань",
 	"Knowledge Access": "Доступ до знань",
 	"Knowledge created successfully.": "Знання успішно створено.",
 	"Knowledge created successfully.": "Знання успішно створено.",
 	"Knowledge deleted successfully.": "Знання успішно видалено.",
 	"Knowledge deleted successfully.": "Знання успішно видалено.",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "Знання успішно скинуто.",
 	"Knowledge reset successfully.": "Знання успішно скинуто.",
 	"Knowledge updated successfully": "Знання успішно оновлено",
 	"Knowledge updated successfully": "Знання успішно оновлено",
 	"Kokoro.js (Browser)": "Kokoro.js (Браузер)",
 	"Kokoro.js (Browser)": "Kokoro.js (Браузер)",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "Модель {{modelId}} не знайдено",
 	"Model {{modelId}} not found": "Модель {{modelId}} не знайдено",
 	"Model {{modelName}} is not vision capable": "Модель {{modelName}} не здатна бачити",
 	"Model {{modelName}} is not vision capable": "Модель {{modelName}} не здатна бачити",
 	"Model {{name}} is now {{status}}": "Модель {{name}} тепер має {{status}}",
 	"Model {{name}} is now {{status}}": "Модель {{name}} тепер має {{status}}",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "Модель приймає зображеня",
 	"Model accepts image inputs": "Модель приймає зображеня",
 	"Model created successfully!": "Модель створено успішно!",
 	"Model created successfully!": "Модель створено успішно!",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Виявлено шлях до файлової системи моделі. Для оновлення потрібно вказати коротке ім'я моделі, не вдасться продовжити.",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Виявлено шлях до файлової системи моделі. Для оновлення потрібно вказати коротке ім'я моделі, не вдасться продовжити.",
@@ -712,6 +717,7 @@
 	"Models": "Моделі",
 	"Models": "Моделі",
 	"Models Access": "Доступ до моделей",
 	"Models Access": "Доступ до моделей",
 	"Models configuration saved successfully": "Конфігурацію моделей успішно збережено",
 	"Models configuration saved successfully": "Конфігурацію моделей успішно збережено",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "API ключ для пошуку Mojeek",
 	"Mojeek Search API Key": "API ключ для пошуку Mojeek",
 	"more": "більше",
 	"more": "більше",
 	"More": "Більше",
 	"More": "Більше",
@@ -836,6 +842,7 @@
 	"Prompt updated successfully": "Підказку успішно оновлено",
 	"Prompt updated successfully": "Підказку успішно оновлено",
 	"Prompts": "Промти",
 	"Prompts": "Промти",
 	"Prompts Access": "Доступ до підказок",
 	"Prompts Access": "Доступ до підказок",
+	"Prompts Public Sharing": "",
 	"Public": "Публічний",
 	"Public": "Публічний",
 	"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",
@@ -968,9 +975,11 @@
 	"Share": "Поділитися",
 	"Share": "Поділитися",
 	"Share Chat": "Поділитися чатом",
 	"Share Chat": "Поділитися чатом",
 	"Share to Open WebUI Community": "Поділитися зі спільнотою OpenWebUI",
 	"Share to Open WebUI Community": "Поділитися зі спільнотою OpenWebUI",
+	"Sharing Permissions": "",
 	"Show": "Показати",
 	"Show": "Показати",
 	"Show \"What's New\" modal on login": "Показати модальне вікно \"Що нового\" під час входу",
 	"Show \"What's New\" modal on login": "Показати модальне вікно \"Що нового\" під час входу",
 	"Show Admin Details in Account Pending Overlay": "Відобразити дані адміна у вікні очікування облікового запису",
 	"Show Admin Details in Account Pending Overlay": "Відобразити дані адміна у вікні очікування облікового запису",
+	"Show Model": "",
 	"Show shortcuts": "Показати клавіатурні скорочення",
 	"Show shortcuts": "Показати клавіатурні скорочення",
 	"Show your support!": "Підтримайте нас!",
 	"Show your support!": "Підтримайте нас!",
 	"Showcased creativity": "Продемонстрований креатив",
 	"Showcased creativity": "Продемонстрований креатив",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "Підказка для виклику функцій інструментів",
 	"Tools Function Calling Prompt": "Підказка для виклику функцій інструментів",
 	"Tools have a function calling system that allows arbitrary code execution": "Інструменти мають систему виклику функцій, яка дозволяє виконання довільного коду",
 	"Tools have a function calling system that allows arbitrary code execution": "Інструменти мають систему виклику функцій, яка дозволяє виконання довільного коду",
 	"Tools have a function calling system that allows arbitrary code execution.": "Інструменти мають систему виклику функцій, яка дозволяє виконання довільного коду.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Інструменти мають систему виклику функцій, яка дозволяє виконання довільного коду.",
+	"Tools Public Sharing": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "Top P",
 	"Top P": "Top P",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "نئے سائن اپس کو فعال کریں",
 	"Enable New Sign Ups": "نئے سائن اپس کو فعال کریں",
 	"Enabled": "فعال کردیا گیا ہے",
 	"Enabled": "فعال کردیا گیا ہے",
+	"Enforce Temporary Chat": "",
 	"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 اسے یاد رکھ سکیں",
@@ -569,6 +570,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "چھپائیں",
 	"Hide": "چھپائیں",
+	"Hide Model": "",
 	"Home": "",
 	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "میں آج آپ کی کس طرح مدد کر سکتا ہوں؟",
 	"How can I help you today?": "میں آج آپ کی کس طرح مدد کر سکتا ہوں؟",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "",
 	"Knowledge Access": "",
 	"Knowledge created successfully.": "علم کامیابی سے تخلیق کیا گیا",
 	"Knowledge created successfully.": "علم کامیابی سے تخلیق کیا گیا",
 	"Knowledge deleted successfully.": "معلومات کامیابی سے حذف ہو گئیں",
 	"Knowledge deleted successfully.": "معلومات کامیابی سے حذف ہو گئیں",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "علم کو کامیابی کے ساتھ دوبارہ ترتیب دیا گیا",
 	"Knowledge reset successfully.": "علم کو کامیابی کے ساتھ دوبارہ ترتیب دیا گیا",
 	"Knowledge updated successfully": "علم کامیابی سے تازہ کر دیا گیا ہے",
 	"Knowledge updated successfully": "علم کامیابی سے تازہ کر دیا گیا ہے",
 	"Kokoro.js (Browser)": "",
 	"Kokoro.js (Browser)": "",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "ماڈل {{modelId}} نہیں ملا",
 	"Model {{modelId}} not found": "ماڈل {{modelId}} نہیں ملا",
 	"Model {{modelName}} is not vision capable": "ماڈل {{modelName}} بصری صلاحیت نہیں رکھتا",
 	"Model {{modelName}} is not vision capable": "ماڈل {{modelName}} بصری صلاحیت نہیں رکھتا",
 	"Model {{name}} is now {{status}}": "ماڈل {{name}} اب {{status}} ہے",
 	"Model {{name}} is now {{status}}": "ماڈل {{name}} اب {{status}} ہے",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "ماڈل تصویری ان پٹس قبول کرتا ہے",
 	"Model accepts image inputs": "ماڈل تصویری ان پٹس قبول کرتا ہے",
 	"Model created successfully!": "ماڈل کامیابی سے تیار کر دیا گیا!",
 	"Model created successfully!": "ماڈل کامیابی سے تیار کر دیا گیا!",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "ماڈل فائل سسٹم کا راستہ مل گیا ماڈل کا مختصر نام اپڈیٹ کے لیے ضروری ہے، جاری نہیں رہ سکتا",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "ماڈل فائل سسٹم کا راستہ مل گیا ماڈل کا مختصر نام اپڈیٹ کے لیے ضروری ہے، جاری نہیں رہ سکتا",
@@ -712,6 +717,7 @@
 	"Models": "ماڈلز",
 	"Models": "ماڈلز",
 	"Models Access": "",
 	"Models Access": "",
 	"Models configuration saved successfully": "",
 	"Models configuration saved successfully": "",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "",
 	"Mojeek Search API Key": "",
 	"more": "مزید",
 	"more": "مزید",
 	"More": "مزید",
 	"More": "مزید",
@@ -836,6 +842,7 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "پرومپٹس",
 	"Prompts": "پرومپٹس",
 	"Prompts Access": "",
 	"Prompts Access": "",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"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 سے ماڈل حاصل کریں",
@@ -968,9 +975,11 @@
 	"Share": "اشتراک کریں",
 	"Share": "اشتراک کریں",
 	"Share Chat": "چیٹ شیئر کریں",
 	"Share Chat": "چیٹ شیئر کریں",
 	"Share to Open WebUI Community": "اوپن ویب یوآئی کمیونٹی کے ساتھ شیئر کریں\n",
 	"Share to Open WebUI Community": "اوپن ویب یوآئی کمیونٹی کے ساتھ شیئر کریں\n",
+	"Sharing Permissions": "",
 	"Show": "دکھائیں",
 	"Show": "دکھائیں",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "اکاؤنٹ پینڈنگ اوورلے میں ایڈمن کی تفصیلات دکھائیں",
 	"Show Admin Details in Account Pending Overlay": "اکاؤنٹ پینڈنگ اوورلے میں ایڈمن کی تفصیلات دکھائیں",
+	"Show Model": "",
 	"Show shortcuts": "شارٹ کٹ دکھائیں",
 	"Show shortcuts": "شارٹ کٹ دکھائیں",
 	"Show your support!": "اپنی حمایت دکھائیں!",
 	"Show your support!": "اپنی حمایت دکھائیں!",
 	"Showcased creativity": "نمائش شدہ تخلیقی صلاحیتیں",
 	"Showcased creativity": "نمائش شدہ تخلیقی صلاحیتیں",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "",
 	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "ٹولز کے پاس ایک فنکشن کالنگ سسٹم ہے جو اختیاری کوڈ کے نفاذ کی اجازت دیتا ہے",
 	"Tools have a function calling system that allows arbitrary code execution": "ٹولز کے پاس ایک فنکشن کالنگ سسٹم ہے جو اختیاری کوڈ کے نفاذ کی اجازت دیتا ہے",
 	"Tools have a function calling system that allows arbitrary code execution.": "ٹولز کے پاس ایک فنکشن کالنگ سسٹم ہے جو اختیاری کوڈ کی عمل درآمد کی اجازت دیتا ہے",
 	"Tools have a function calling system that allows arbitrary code execution.": "ٹولز کے پاس ایک فنکشن کالنگ سسٹم ہے جو اختیاری کوڈ کی عمل درآمد کی اجازت دیتا ہے",
+	"Tools Public Sharing": "",
 	"Top K": "اوپر کے K",
 	"Top K": "اوپر کے K",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "ٹاپ پی",
 	"Top P": "ٹاپ پی",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable Mirostat sampling for controlling perplexity.": "",
 	"Enable New Sign Ups": "Cho phép đăng ký mới",
 	"Enable New Sign Ups": "Cho phép đăng ký mới",
 	"Enabled": "Đã bật",
 	"Enabled": "Đã bật",
+	"Enforce Temporary Chat": "",
 	"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ớ",
@@ -569,6 +570,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "Ẩn",
 	"Hide": "Ẩn",
+	"Hide Model": "",
 	"Home": "",
 	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "Tôi có thể giúp gì cho bạn hôm nay?",
 	"How can I help you today?": "Tôi có thể giúp gì cho bạn hôm nay?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "",
 	"Knowledge Access": "",
 	"Knowledge created successfully.": "",
 	"Knowledge created successfully.": "",
 	"Knowledge deleted successfully.": "",
 	"Knowledge deleted successfully.": "",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
 	"Knowledge updated successfully": "",
 	"Kokoro.js (Browser)": "",
 	"Kokoro.js (Browser)": "",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "Không tìm thấy Mô hình {{modelId}}",
 	"Model {{modelId}} not found": "Không tìm thấy Mô hình {{modelId}}",
 	"Model {{modelName}} is not vision capable": "Model {{modelName}} không có khả năng nhìn",
 	"Model {{modelName}} is not vision capable": "Model {{modelName}} không có khả năng nhìn",
 	"Model {{name}} is now {{status}}": "Model {{name}} bây giờ là {{status}}",
 	"Model {{name}} is now {{status}}": "Model {{name}} bây giờ là {{status}}",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "",
 	"Model accepts image inputs": "",
 	"Model created successfully!": "Model đã được tạo thành công",
 	"Model created successfully!": "Model đã được tạo thành công",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Đường dẫn hệ thống tệp mô hình được phát hiện. Tên viết tắt mô hình là bắt buộc để cập nhật, không thể tiếp tục.",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Đường dẫn hệ thống tệp mô hình được phát hiện. Tên viết tắt mô hình là bắt buộc để cập nhật, không thể tiếp tục.",
@@ -712,6 +717,7 @@
 	"Models": "Mô hình",
 	"Models": "Mô hình",
 	"Models Access": "",
 	"Models Access": "",
 	"Models configuration saved successfully": "",
 	"Models configuration saved successfully": "",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "",
 	"Mojeek Search API Key": "",
 	"more": "",
 	"more": "",
 	"More": "Thêm",
 	"More": "Thêm",
@@ -836,6 +842,7 @@
 	"Prompt updated successfully": "",
 	"Prompt updated successfully": "",
 	"Prompts": "Prompt",
 	"Prompts": "Prompt",
 	"Prompts Access": "",
 	"Prompts Access": "",
+	"Prompts Public Sharing": "",
 	"Public": "",
 	"Public": "",
 	"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",
@@ -968,9 +975,11 @@
 	"Share": "Chia sẻ",
 	"Share": "Chia sẻ",
 	"Share Chat": "Chia sẻ Chat",
 	"Share Chat": "Chia sẻ Chat",
 	"Share to Open WebUI Community": "Chia sẻ đến Cộng đồng OpenWebUI",
 	"Share to Open WebUI Community": "Chia sẻ đến Cộng đồng OpenWebUI",
+	"Sharing Permissions": "",
 	"Show": "Hiển thị",
 	"Show": "Hiển thị",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "Hiển thị thông tin của Quản trị viên trên màn hình hiển thị Tài khoản đang chờ xử lý",
 	"Show Admin Details in Account Pending Overlay": "Hiển thị thông tin của Quản trị viên trên màn hình hiển thị Tài khoản đang chờ xử lý",
+	"Show Model": "",
 	"Show shortcuts": "Hiển thị phím tắt",
 	"Show shortcuts": "Hiển thị phím tắt",
 	"Show your support!": "Thể hiện sự ủng hộ của bạn!",
 	"Show your support!": "Thể hiện sự ủng hộ của bạn!",
 	"Showcased creativity": "Thể hiện sự sáng tạo",
 	"Showcased creativity": "Thể hiện sự sáng tạo",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "",
 	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "Các Tools có hệ thống gọi function cho phép thực thi mã tùy ý",
 	"Tools have a function calling system that allows arbitrary code execution": "Các Tools có hệ thống gọi function cho phép thực thi mã tùy ý",
 	"Tools have a function calling system that allows arbitrary code execution.": "Các Tools có hệ thống gọi function cho phép thực thi mã tùy ý.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Các Tools có hệ thống gọi function cho phép thực thi mã tùy ý.",
+	"Tools Public Sharing": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top K Reranker": "",
 	"Top K Reranker": "",
 	"Top P": "Top P",
 	"Top P": "Top P",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "启用Mirostat采样以控制困惑度",
 	"Enable Mirostat sampling for controlling perplexity.": "启用Mirostat采样以控制困惑度",
 	"Enable New Sign Ups": "允许新用户注册",
 	"Enable New Sign Ups": "允许新用户注册",
 	"Enabled": "启用",
 	"Enabled": "启用",
+	"Enforce Temporary Chat": "",
 	"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": "输入一个关于你自己的详细信息,方便你的大语言模型记住这些内容",
@@ -569,6 +570,7 @@
 	"Hex Color": "十六进制颜色代码",
 	"Hex Color": "十六进制颜色代码",
 	"Hex Color - Leave empty for default color": "十六进制颜色代码 - 留空使用默认颜色",
 	"Hex Color - Leave empty for default color": "十六进制颜色代码 - 留空使用默认颜色",
 	"Hide": "隐藏",
 	"Hide": "隐藏",
+	"Hide Model": "",
 	"Home": "主页",
 	"Home": "主页",
 	"Host": "主机",
 	"Host": "主机",
 	"How can I help you today?": "有什么我能帮您的吗?",
 	"How can I help you today?": "有什么我能帮您的吗?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "访问知识库",
 	"Knowledge Access": "访问知识库",
 	"Knowledge created successfully.": "知识成功创建",
 	"Knowledge created successfully.": "知识成功创建",
 	"Knowledge deleted successfully.": "知识成功删除",
 	"Knowledge deleted successfully.": "知识成功删除",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "知识成功重置",
 	"Knowledge reset successfully.": "知识成功重置",
 	"Knowledge updated successfully": "知识成功更新",
 	"Knowledge updated successfully": "知识成功更新",
 	"Kokoro.js (Browser)": "Kokoro.js (Browser)",
 	"Kokoro.js (Browser)": "Kokoro.js (Browser)",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "未找到模型 {{modelId}}",
 	"Model {{modelId}} not found": "未找到模型 {{modelId}}",
 	"Model {{modelName}} is not vision capable": "模型 {{modelName}} 不支持视觉能力",
 	"Model {{modelName}} is not vision capable": "模型 {{modelName}} 不支持视觉能力",
 	"Model {{name}} is now {{status}}": "模型 {{name}} 现在是 {{status}}",
 	"Model {{name}} is now {{status}}": "模型 {{name}} 现在是 {{status}}",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "模型接受图像输入",
 	"Model accepts image inputs": "模型接受图像输入",
 	"Model created successfully!": "模型创建成功!",
 	"Model created successfully!": "模型创建成功!",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "检测到模型文件系统路径,无法继续进行。更新操作需要提供模型简称。",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "检测到模型文件系统路径,无法继续进行。更新操作需要提供模型简称。",
@@ -712,6 +717,7 @@
 	"Models": "模型",
 	"Models": "模型",
 	"Models Access": "访问模型列表",
 	"Models Access": "访问模型列表",
 	"Models configuration saved successfully": "模型配置保存成功",
 	"Models configuration saved successfully": "模型配置保存成功",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "Mojeek Search API 密钥",
 	"Mojeek Search API Key": "Mojeek Search API 密钥",
 	"more": "更多",
 	"more": "更多",
 	"More": "更多",
 	"More": "更多",
@@ -836,6 +842,7 @@
 	"Prompt updated successfully": "提示词更新成功",
 	"Prompt updated successfully": "提示词更新成功",
 	"Prompts": "提示词",
 	"Prompts": "提示词",
 	"Prompts Access": "访问提示词",
 	"Prompts Access": "访问提示词",
+	"Prompts Public Sharing": "",
 	"Public": "公共",
 	"Public": "公共",
 	"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 拉取一个模型",
@@ -968,9 +975,11 @@
 	"Share": "分享",
 	"Share": "分享",
 	"Share Chat": "分享对话",
 	"Share Chat": "分享对话",
 	"Share to Open WebUI Community": "分享到 OpenWebUI 社区",
 	"Share to Open WebUI Community": "分享到 OpenWebUI 社区",
+	"Sharing Permissions": "",
 	"Show": "显示",
 	"Show": "显示",
 	"Show \"What's New\" modal on login": "在登录时显示“更新内容”弹窗",
 	"Show \"What's New\" modal on login": "在登录时显示“更新内容”弹窗",
 	"Show Admin Details in Account Pending Overlay": "在用户待激活界面中显示管理员邮箱等详细信息",
 	"Show Admin Details in Account Pending Overlay": "在用户待激活界面中显示管理员邮箱等详细信息",
+	"Show Model": "",
 	"Show shortcuts": "显示快捷方式",
 	"Show shortcuts": "显示快捷方式",
 	"Show your support!": "表达你的支持!",
 	"Show your support!": "表达你的支持!",
 	"Showcased creativity": "很有创意",
 	"Showcased creativity": "很有创意",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "工具函数调用提示词",
 	"Tools Function Calling Prompt": "工具函数调用提示词",
 	"Tools have a function calling system that allows arbitrary code execution": "注意:工具有权执行任意代码",
 	"Tools have a function calling system that allows arbitrary code execution": "注意:工具有权执行任意代码",
 	"Tools have a function calling system that allows arbitrary code execution.": "注意:工具有权执行任意代码。",
 	"Tools have a function calling system that allows arbitrary code execution.": "注意:工具有权执行任意代码。",
+	"Tools Public Sharing": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top K Reranker": "Top K Reranker",
 	"Top K Reranker": "Top K Reranker",
 	"Top P": "Top P",
 	"Top P": "Top P",

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

@@ -379,6 +379,7 @@
 	"Enable Mirostat sampling for controlling perplexity.": "啟用 Mirostat 取樣以控制 perplexity。",
 	"Enable Mirostat sampling for controlling perplexity.": "啟用 Mirostat 取樣以控制 perplexity。",
 	"Enable New Sign Ups": "允許新使用者註冊",
 	"Enable New Sign Ups": "允許新使用者註冊",
 	"Enabled": "已啟用",
 	"Enabled": "已啟用",
+	"Enforce Temporary Chat": "",
 	"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": "輸入有關您的詳細資訊,讓您的大型語言模型可以回想起來",
@@ -569,6 +570,7 @@
 	"Hex Color": "Hex 顔色",
 	"Hex Color": "Hex 顔色",
 	"Hex Color - Leave empty for default color": "Hex 顔色 —— 留空以使用預設顔色",
 	"Hex Color - Leave empty for default color": "Hex 顔色 —— 留空以使用預設顔色",
 	"Hide": "隱藏",
 	"Hide": "隱藏",
+	"Hide Model": "",
 	"Home": "首頁",
 	"Home": "首頁",
 	"Host": "主機",
 	"Host": "主機",
 	"How can I help you today?": "今天我能為您做些什麼?",
 	"How can I help you today?": "今天我能為您做些什麼?",
@@ -628,6 +630,7 @@
 	"Knowledge Access": "知識存取",
 	"Knowledge Access": "知識存取",
 	"Knowledge created successfully.": "知識建立成功。",
 	"Knowledge created successfully.": "知識建立成功。",
 	"Knowledge deleted successfully.": "知識刪除成功。",
 	"Knowledge deleted successfully.": "知識刪除成功。",
+	"Knowledge Public Sharing": "",
 	"Knowledge reset successfully.": "知識重設成功。",
 	"Knowledge reset successfully.": "知識重設成功。",
 	"Knowledge updated successfully": "知識更新成功",
 	"Knowledge updated successfully": "知識更新成功",
 	"Kokoro.js (Browser)": "Kokoro.js (Browser)",
 	"Kokoro.js (Browser)": "Kokoro.js (Browser)",
@@ -697,6 +700,8 @@
 	"Model {{modelId}} not found": "找不到模型 {{modelId}}",
 	"Model {{modelId}} not found": "找不到模型 {{modelId}}",
 	"Model {{modelName}} is not vision capable": "模型 {{modelName}} 不具備視覺能力",
 	"Model {{modelName}} is not vision capable": "模型 {{modelName}} 不具備視覺能力",
 	"Model {{name}} is now {{status}}": "模型 {{name}} 現在狀態為 {{status}}",
 	"Model {{name}} is now {{status}}": "模型 {{name}} 現在狀態為 {{status}}",
+	"Model {{name}} is now hidden": "",
+	"Model {{name}} is now visible": "",
 	"Model accepts image inputs": "模型接受影像輸入",
 	"Model accepts image inputs": "模型接受影像輸入",
 	"Model created successfully!": "成功建立模型!",
 	"Model created successfully!": "成功建立模型!",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "偵測到模型檔案系統路徑。更新需要模型簡稱,因此無法繼續。",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "偵測到模型檔案系統路徑。更新需要模型簡稱,因此無法繼續。",
@@ -712,6 +717,7 @@
 	"Models": "模型",
 	"Models": "模型",
 	"Models Access": "模型存取",
 	"Models Access": "模型存取",
 	"Models configuration saved successfully": "模型設定儲存成功",
 	"Models configuration saved successfully": "模型設定儲存成功",
+	"Models Public Sharing": "",
 	"Mojeek Search API Key": "Mojeek 搜尋 API 金鑰",
 	"Mojeek Search API Key": "Mojeek 搜尋 API 金鑰",
 	"more": "更多",
 	"more": "更多",
 	"More": "更多",
 	"More": "更多",
@@ -836,6 +842,7 @@
 	"Prompt updated successfully": "提示詞更新成功",
 	"Prompt updated successfully": "提示詞更新成功",
 	"Prompts": "提示詞",
 	"Prompts": "提示詞",
 	"Prompts Access": "提示詞存取",
 	"Prompts Access": "提示詞存取",
+	"Prompts Public Sharing": "",
 	"Public": "公開",
 	"Public": "公開",
 	"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 下載模型",
@@ -968,9 +975,11 @@
 	"Share": "分享",
 	"Share": "分享",
 	"Share Chat": "分享對話",
 	"Share Chat": "分享對話",
 	"Share to Open WebUI Community": "分享到 OpenWebUI 社群",
 	"Share to Open WebUI Community": "分享到 OpenWebUI 社群",
+	"Sharing Permissions": "",
 	"Show": "顯示",
 	"Show": "顯示",
 	"Show \"What's New\" modal on login": "登入時顯示「新功能」對話框",
 	"Show \"What's New\" modal on login": "登入時顯示「新功能」對話框",
 	"Show Admin Details in Account Pending Overlay": "在帳號待審覆蓋層中顯示管理員詳細資訊",
 	"Show Admin Details in Account Pending Overlay": "在帳號待審覆蓋層中顯示管理員詳細資訊",
+	"Show Model": "",
 	"Show shortcuts": "顯示快捷鍵",
 	"Show shortcuts": "顯示快捷鍵",
 	"Show your support!": "表達您的支持!",
 	"Show your support!": "表達您的支持!",
 	"Showcased creativity": "展現創意",
 	"Showcased creativity": "展現創意",
@@ -1087,6 +1096,7 @@
 	"Tools Function Calling Prompt": "工具函式呼叫提示詞",
 	"Tools Function Calling Prompt": "工具函式呼叫提示詞",
 	"Tools have a function calling system that allows arbitrary code execution": "工具具有允許執行任意程式碼的函式呼叫系統",
 	"Tools have a function calling system that allows arbitrary code execution": "工具具有允許執行任意程式碼的函式呼叫系統",
 	"Tools have a function calling system that allows arbitrary code execution.": "工具具有允許執行任意程式碼的函式呼叫系統。",
 	"Tools have a function calling system that allows arbitrary code execution.": "工具具有允許執行任意程式碼的函式呼叫系統。",
+	"Tools Public Sharing": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top K Reranker": "Top K Reranker",
 	"Top K Reranker": "Top K Reranker",
 	"Top P": "Top P",
 	"Top P": "Top P",